Skip to content
Open
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
b6ef2c1
Implement NEAR CLI using aurora-sdk-rs
Qjawko Jun 26, 2025
52d1375
feat: add output formatting
Qjawko Jul 1, 2025
ffdd366
feat: add missing commands
Qjawko Jul 4, 2025
07dfafc
feat: add missing methods, fix ci
Qjawko Jul 6, 2025
2affc36
fix: review fixes, remove 'expect' calls, fix typos
Qjawko Jul 7, 2025
2127357
simplify and split command and handle logic
Qjawko Jul 7, 2025
05eb850
fix: code rabbit issues
Qjawko Jul 7, 2025
2a52c46
fix: simplify output formatting for latest hashchain
Qjawko Jul 7, 2025
f5c80f0
fix get nonce method and readme
Qjawko Jul 8, 2025
debc44d
chore: add clone for aurora client
aleksuss Jul 12, 2025
0e431ae
chore: non-contract-usage for near-sdk
aleksuss Jul 12, 2025
ef83098
Merge branch 'main' into new-cli
aleksuss Jul 13, 2025
2981c12
feat: view method with block number
aleksuss Jul 13, 2025
6465bd0
Merge branch 'main' into new-cli
aleksuss Jul 14, 2025
1fc3c7d
chore: update dependencies and features in Cargo.toml files
Qjawko Jul 21, 2025
edbc259
fix: update tokio features and aurora-engine-types dependency configu…
Qjawko Jul 21, 2025
35b550a
fix: update CLI paths in workflow configuration
Qjawko Jul 22, 2025
806efc8
fix: add missing binary configuration for aurora-cli in Cargo.toml
Qjawko Jul 22, 2025
33523fa
fix: enhance CLI configuration and error handling for NEAR signer
Qjawko Jul 22, 2025
c60a322
fix: clean up unused imports and enhance NearGas default configuration
Qjawko Jul 22, 2025
c639010
fix: change default network from Mainnet to Localnet in CLI configura…
Qjawko Jul 22, 2025
7c4f629
fix: add debug output for command execution in CLI
Qjawko Jul 22, 2025
0f934cc
fix: add debug output for command execution in run function
Qjawko Jul 22, 2025
e08cd2a
fix: improve error handling for signer file reading and update output…
Qjawko Jul 22, 2025
ad7317d
fix: update create_account function to return SecretKey and adjust ou…
Qjawko Jul 23, 2025
a2854d0
feat: split cli and handlers
Qjawko Jul 23, 2025
94e21d2
chore: get neard version from rpc
aleksuss Jul 23, 2025
a35e7a9
chore: cargo fmt
aleksuss Jul 23, 2025
5823922
chore: use macros for code clarity and less bloatness
Qjawko Jul 23, 2025
ed67d00
refactor: simplify handle_near_call macro by removing outdated syntax
Qjawko Jul 23, 2025
60b45f2
fix: enhance error handling in deploy_aurora function and update outp…
Qjawko Jul 24, 2025
0b21a2a
refactor: introduce read_wasm_file function and ability to parse sig…
Qjawko Jul 24, 2025
3b6f495
chore: remove println!
aleksuss Jul 28, 2025
8aec8db
fix: trim "0x" prefix from address input in parse_address function
Qjawko Jul 29, 2025
d15196a
fix: change bridge_prover_id to optional in init and update handling …
Qjawko Jul 29, 2025
7b6ac06
fix: specify gas for contract calls
Qjawko Jul 29, 2025
45a885d
fix: adjust create_account function to convert balance to near
Qjawko Jul 29, 2025
8c3a366
fix: change default output format to plain and update CLI command usage
Qjawko Jul 29, 2025
9d29667
fix: update init function to return FinalExecutionOutcomeView and han…
Qjawko Jul 30, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
interface: [ Advanced, Simple, Silo ]
include:
- interface: Advanced
args: --path ./cli --no-default-features -F advanced
args: --path ./newcli
script: scripts/advanced.sh
- interface: Simple
args: --path ./cli
args: --path ./newcli
script: scripts/simple.sh
- interface: Silo
args: --path ./cli
args: --path ./newcli
script: scripts/simple-silo.sh
steps:
- name: Checkout sources
Expand Down
Loading
Loading