Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/use ledger #35

Draft
wants to merge 31 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
b8fe49b
adding silo methods
lempire123 May 8, 2023
dfa8e9a
Cleanup
lempire123 May 8, 2023
11b3c4b
WIP
lempire123 May 9, 2023
a10526e
WIP
lempire123 May 9, 2023
3864afb
Merge branch 'main' into lempire123/silo-methods
aleksuss May 11, 2023
6eb1bed
Add silo methods to simple.sh script
lempire123 May 11, 2023
a5288b2
change command to kebab-case
lempire123 May 13, 2023
5e44eb7
read JSON input
lempire123 May 15, 2023
8985d81
fixes
lempire123 May 15, 2023
712601e
feat: add support xcc operations
aleksuss May 16, 2023
7267f4d
feat: fix advanced part
aleksuss May 16, 2023
036e4ed
feat: use version 2 of new arguments struct
aleksuss May 16, 2023
d66c4e2
Merge branch 'main' into lempire123/silo-methods
aleksuss May 16, 2023
95f580b
feat: add shell script for test silo's methods
aleksuss May 17, 2023
15378d1
chore: improve CI script
aleksuss May 17, 2023
d3630ec
feat: increase timeout
aleksuss May 17, 2023
51d8cd5
chore: add description to the silo subcommands
aleksuss May 24, 2023
6b48971
feat: allow NEAR transfer with Ledger
Jun 23, 2023
6d80bf6
fix: `creat_account()` using ledger ONLY for testnet and mainnet
Jun 26, 2023
df30dab
minor fixes in the scripts
Jul 4, 2023
d560f74
merge main to the current branch and fix conflicts
Jul 4, 2023
e185fcb
fix minor conflict in `simple-silo.sh`
Jul 4, 2023
2857810
Update Cargo.toml
Jul 4, 2023
c129bbe
fix some clippy errors
Jul 4, 2023
865c6d7
fix: minor conflict in `simple-silo.sh`
Jul 4, 2023
191712e
fix: clippy errors
Jul 4, 2023
100081f
fix: setup linux dependencies
Jul 4, 2023
88a41de
fix: advanced tests
Jul 4, 2023
941cc3f
fix: minor lint error
Jul 4, 2023
59b0424
fix: more issues with linux dep accros all linting and testing
Jul 4, 2023
f196ac2
fix: simple and advanced conflicts
Jul 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
name: Formatting
runs-on: ubuntu-latest
steps:
- name: Setup Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt install libudev-dev pkg-config
- name: Checkout sources
uses: actions/checkout@v2
- name: Run rustfmt
Expand All @@ -24,6 +29,11 @@ jobs:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Setup Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt install libudev-dev pkg-config
- name: Checkout sources
uses: actions/checkout@v2
- name: Run clippy simple
Expand Down Expand Up @@ -51,6 +61,11 @@ jobs:
- build: Windows
os: windows-latest
steps:
- name: Setup Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt install libudev-dev pkg-config
- name: Checkout sources
uses: actions/checkout@v2
- name: Run tests simple
Expand Down Expand Up @@ -81,6 +96,11 @@ jobs:
args: --path .
script: scripts/simple-silo.sh
steps:
- name: Setup Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt install libudev-dev pkg-config
- name: Checkout sources
uses: actions/checkout@v2
- name: Install aurora-cli (Advanced CLI)
Expand Down
Loading
Loading