Rust algonaut
A Rust SDK for the Algorand blockchain. Pre-1.0 — the API is stabilising but still moves between minor versions.
Highlights
- Async clients for
algodv2,kmdv1, andindexerv2 - One-call transaction builders for payments, asset config / transfer / freeze / clawback, application calls, key registration, and state proofs
- A typestate
AtomicGroupBuilder— bundle transactions and compile-time-checked ARC-4 ABI calls (abi_call!), thensimulate,sign, andexecute - An open, async
Signertrait:Accountout of the box, or plug in an HSM, remote KMS, or WalletConnect - TEAL compile / disassemble + V3 source-map decoder
- Cucumber acceptance suite that exercises the algorand-sdk-testing harness end-to-end
Quickstart: an atomic group
Bundle two payments and an ARC-4 method call into one all-or-nothing group,
dry-run it with simulate, then sign and execute the very same group —
the headline algonaut flow as it stands today. See
examples/atomic.rs for the fully annotated version.
use abi_call;
use Algod;
use ;
use ;
use Account;
use ;
use Arc;
use ;
async
What's new since 0.4.2
algonaut rested at 0.4.2 for years; the 0.5–0.7 line is a ground-up
modernization, and the example above is the API as it stands today:
- 0.5 — Rust 2024 edition (MSRV 1.85);
ringswapped fored25519-dalek, sowasm32builds need no C toolchain; workspace-wide dependency refresh;lefthook+make ci. - 0.6 —
simulateand dry-run request builders, a TEAL V3 source-map decoder, and domain types that serialize to both JSON and msgpack. - 0.7 — identifier newtypes (
AppId,AssetId,TxId) at the client boundary, block / account-resource / ledger-delta endpoints, and msgpack response decoding. - unreleased — an open, async
Signertrait (HSM / remote KMS / WalletConnect friendly), the typestateAtomicGroupBuildershown above, and compile-time-checked ARC-4 calls viaabi_call!.
Each decision is recorded as an ADR under docs/adr/; CHANGELOG.md has the full entry-by-entry history.
Workspace layout
| Crate | Purpose |
|---|---|
algonaut |
Top-level crate: the atomic group builder, simulate/dryrun helpers, and re-exports |
algonaut_algod |
Generated client for the algod v2 REST API |
algonaut_kmd |
Client for the key-management daemon |
algonaut_indexer |
Client for the indexer v2 REST API |
algonaut_core |
Core types: Address, MicroAlgos, Round, AppId/AssetId/TransactionId, keys, multisig |
algonaut_crypto |
Ed25519 sign/verify (via ed25519-dalek) and BIP-39 mnemonics |
algonaut_transaction |
Transaction builders and the open Signer trait |
algonaut_abi |
ARC-4 ABI types, method encoding, TEAL source-map decoder |
algonaut_abi_sig |
ARC-4 signature/type grammar shared by the macros and the runtime |
algonaut_abi_macros |
abi_call! / abi_method! compile-time-checked ABI proc-macros |
algonaut_encoding |
Shared serde visitors and base32/base64 helpers |
algonaut_model |
Hand-written response models shared between the clients |
Running the examples
/examples has a wide set of runnable programs.
If you see Error: NotPresent, your environment variables aren't set — cp examples.env .env and edit as needed.
Changelog
See CHANGELOG.md.
Contributing
Read the contribution guidelines before opening a PR. The pre-commit hook runs make ci; commit messages follow Conventional Commits.
Acknowledgements
This crate is based on the work of @mraof.
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Asset attribution
Ferris Algonaut is licensed under a Creative Commons Attribution 4.0 International License.
Rust algonaut's logo is based on Font Awesome's icon and licensed under a Creative Commons Attribution 4.0 International License.