SDK for interacting with Bundlr network, using Rust.
Code examples can be found in examples
directory
For using the client binary, you have to build it using:
cargo build --release --features="build-binary"
The client bin will be generated at target/release/cli
. Then you can execute the binary with ./cli --help
USAGE:
cli <SUBCOMMAND>
OPTIONS:
-h, --help Print help information
SUBCOMMANDS:
balance Gets the specified user's balance for the current Bundlr node
fund Funds your account with the specified amount of atomic units
help Print this message or the help of the given subcommand(s)
price Check how much of a specific currency is required for an upload of <amount>
bytes
upload Uploads a specified file
upload-dir Uploads a folder (with a manifest)
withdraw Sends a fund withdrawal request
./cli balance <address> --host <host> --currency <currency>
./cli price <bytes> --host <host> --currency <currency>
./cli fund <amount> --host <host> --currency <currency> --wallet <path | private_key>
./cli withdraw <amount> --host <host> --currency <currency> --wallet <path | private_key>
./cli upload <file> --host <host> --currency <currency> --wallet <path | private_key>
Some functionalities are still work in progress. If you need to use one of them, you may want to have a look in the js-sdk, or open an issue in this repository.
Item | Arweave | Solana | Ethereum | ERC20 | Cosmos | Aptos |
---|---|---|---|---|---|---|
Balance | [x] | [x] | [x] | [ ] | [ ] | [ ] |
Price | [x] | [x] | [x] | [ ] | [ ] | [ ] |
Fund | [x] | [ ] | [ ] | [ ] | [ ] | [ ] |
Withdraw | [x] | [ ] | [ ] | [ ] | [ ] | [ ] |
Upload | [x] | [x] | [x] | [ ] | [ ] | [ ] |
Upload Directory | [ ] | [ ] | [ ] | [ ] | [ ] | [ ] |
Verify bundle | [x] | [x] | [x] | [x] | [x] | [x] |
In order to run tests properly, you need to generate random bundles. Run:
npm install
npm run generate-bundles
To generate random bundles in res/gen_bundles
, and then run:
cargo test