Installation
From release
1. Download
Go to https://github.com/iotaledger/iota-sdk/releases and download the latest CLI release binary for your platform.
cli-wallet
is available on linux
, macos
and windows
.
2. Verify checksum
Compare the checksum from the release with a checksum locally produced.
You can use the following command to produce the checksum.
shasum -a 256 [PATH TO BINARY]
3. Rename
For convenience, rename the binary to simply wallet
.
mv [PATH TO BINARY] wallet
From source
1. Install Rust
https://www.rust-lang.org/tools/install
2. Compile
git clone https://github.com/iotaledger/iota-sdk -b develop
cd iota-sdk/cli
cargo build --profile production
Resulting binary will be located at ./target/production/wallet
.