3 releases
0.5.2 | May 16, 2024 |
---|---|
0.5.1 | May 14, 2024 |
0.5.0 | May 13, 2024 |
#29 in #balance
110 downloads per month
Used in race-arweave
185KB
4.5K
SLoC
Bundlr Rust SDK
SDK for interacting with Bundlr network, using Rust.
Examples
Code examples can be found in examples
directory
Client
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
Examples
./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>
Roadmap
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] |
Testing
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
Dependencies
~21–38MB
~667K SLoC