Deprecated Note:
The Cardano command line interface provides the following features:
- powerful blockchain manager: with download, explore, verify, and analyze functions
- ability to manage multiple wallets: Daedalus', Icarus' or custom wallets
- flexible transaction build engine
This command line interface is built upon the Rust Cardano SDK.
- The software is currently still in alpha phase, please do not use for any other purpose than debugging and testing, until stable releases are available.
- While most of the operations in the CLI is in a reading state, and are thus
relatively safe even in the presence of bugs, do take special note that
transaction send
will permanently change your state. - It ia advisable to trial testnet operations (depending on testnet availability), prior to completing mainnet operations.
- If you think something is suspicious, it may very well be the case. Check the documentation, or ask for help.
- Do not share your wallet mnemonics, passwords, cryptographic material, or pending signatures.
While it is recommended to wait for official releases, it is also possible to build the executable yourself by following these steps:
- install rust toolchain;
- clone the project repository (with the dependencies)
git clone https://github.com/input-output-hk/cardano-cli.git --recursive
- build and install the binary:
cd cardano-cli cargo install
- enjoy
$ cardano-cli blockchain new mainnet
$ cardano-cli blockchain pull mainnet
$ cardano-cli wallet create "My Wallet"
$ cardano-cli wallet attach "My Wallet" mainnet
$ cardano-cli wallet sync "My Wallet"
$ cardano-cli wallet status "My Wallet"
Target | test |
---|---|
aarch64-unknown-linux-gnu |
✓ |
arm-unknown-linux-gnueabi |
✓ |
armv7-unknown-linux-gnueabihf |
✓ |
i686-unknown-linux-gnu |
✓ |
i686-unknown-linux-musl |
✓ |
x86_64-unknown-linux-gnu |
✓ |
x86_64-unknown-linux-musl |
✓ |
i686-apple-darwin |
✓ |
x86_64-apple-darwin |
✓ |
x86_64-apple-darwin |
✓ |
i686-unknown-freebsd |
✓ |
x86_64-unknown-freebsd |
✓ |
Rust | test |
---|---|
stable | ✓ |
beta | ✓ |
nightly | ✓ |
We aim to support compiler versions as far as version 1.30. However, this is not a contract. Support of older compiler versions may be dropped in the future as we see fit.
This project is licensed under either of the following licenses:
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
Please choose your appropriate license.