A general purpose IOTA client library for interaction with the IOTA network (Tangle).
The goal of this library is to have one source code of truth
, which means there is one implementation in Rust and bindings to other programming languages.
For value transfers we recommend to use wallet.rs.
This library allows you to do the following:
To use the library, we recommend you update Rust to latest stable version $ rustup update stable
. Nightly should be fine but some changes might not be compatible.
Using the library is easy, just add it as dependency in Cargo.toml
:
bash
[dependencies]
iota-client = "1.0"
or for the latest changes
bash
[dependencies]
iota-client = { git = "https://github.com/iotaledger/iota.rs", branch = "dev" }
And then you can use the library in your code with use iota_client;
.
When using the "MQTT" feature, connecting to a MQTT broker using raw ip doesn't work with TCP. This is a limitation of rustls.
You can read the API reference here, or generate it yourself.
If you'd like to explore the implementation in more depth, the following command generates docs for the whole crate, including private modules:
bash
cargo doc --document-private-items --no-deps --open
You can see the examples in the examples directory and try them like:
bash
cargo run --example 01_get_info
For the examples where a seed is required you have to rename .env.example
to .env
.