Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ef7b43d
feat: implement transaction broadcasting and add near-crypto dependency
Qjawko Mar 11, 2025
6c0cbee
feat: enhance client with signer and account ID configuration
Qjawko Mar 12, 2025
dc99c22
feat: add async and sync build methods to ClientBuilder and update cl…
Qjawko Mar 12, 2025
265174c
refactor: rename conversion methods to more idiomatic
Qjawko Mar 13, 2025
4ed69e6
feat: refactor SDK structure to integrate near module and enhance cli…
Qjawko Mar 18, 2025
cd8bd3e
feat: add Aurora client and Request parameters
Qjawko Apr 15, 2025
f0f46a3
feat: low level near client
Qjawko Apr 15, 2025
20d3b35
feat: update dependencies and refactor error handling in near module
Qjawko Apr 21, 2025
a7b990d
feat: implement workspace module and enhance client functionality wit…
Qjawko Apr 24, 2025
f7ca455
tests: integration test for workspace struct
Qjawko Apr 28, 2025
e2f0284
refactor: remove unused near_broadcast_tx function from NearClient
Qjawko Apr 28, 2025
3420b33
refactor: remove TODO comment regarding NEP-141 WASM file path in set…
Qjawko Apr 28, 2025
eca59e7
lint: fixes
Qjawko Apr 28, 2025
4b48e91
fix: format errors
Qjawko Apr 28, 2025
7ef143d
refactor: return near_broadcast_tx method
Qjawko Apr 28, 2025
a285a3a
fix: AuroraClient imports
Qjawko Apr 28, 2025
917a83a
refactor: change shell test path
Qjawko Apr 28, 2025
f92ff28
feat: add comments-docs
Qjawko Apr 28, 2025
9a82a79
refactor: replace RwLock with Mutex for access_key_nonces
Qjawko Apr 28, 2025
327c2c7
refactor: change access_key_nonces from AtomicU64 to u64 for simpler …
Qjawko Apr 29, 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 @@ -16,13 +16,13 @@ jobs:
interface: [ Advanced, Simple, Silo ]
include:
- interface: Advanced
args: --path . --no-default-features -F advanced
args: --path ./cli --no-default-features -F advanced
script: scripts/advanced.sh
- interface: Simple
args: --path .
args: --path ./cli
script: scripts/simple.sh
- interface: Silo
args: --path .
args: --path ./cli
script: scripts/simple-silo.sh
steps:
- name: Checkout sources
Expand Down
Loading
Loading