Project Setup

Imports

To begin working with the Namada SDK, add the following to your Cargo.toml:

namada_core = { git = "https://github.com/anoma/namada", tag = "v0.43.0" }
namada_sdk = { git = "https://github.com/anoma/namada", tag = "v0.43.0", default-features = false, features = ["std", "async-send", "download-params"] }
namada_tx = { git = "https://github.com/anoma/namada", tag = "v0.43.0" }
namada_governance = { git = "https://github.com/anoma/namada", tag = "v0.43.0" }
namada_ibc = { git = "https://github.com/anoma/namada", tag = "v0.43.0" }
namada_token = { git = "https://github.com/anoma/namada", tag = "v0.43.0" }
namada_parameters = { git = "https://github.com/anoma/namada", tag = "v0.43.0" }
namada_proof_of_stake = { git = "https://github.com/anoma/namada", tag = "v0.43.0" }
tendermint = "0.37.0"
tendermint-config = "0.37.0"
tendermint-rpc = { version = "0.37.0", features = ["http-client"] }
tendermint-proto = "0.37.0"
tokio = { version = "1.0", features = ["full"] }