Namada is a Proof-of-Stake L1 for interchain asset-agnostic privacy. Namada uses CometBFT consensus and enables multi-asset shielded transfers for any native or non-native asset. Namada features full IBC protocol support, a natively integrated Ethereum bridge, a modern proof-of-stake system with automatic reward compounding and cubic slashing, and a stake-weighted governance signalling mechanism. Users of shielded transfers are rewarded for their contributions to the privacy set in the form of native protocol tokens. A multi-asset shielded transfer wallet is provided in order to facilitate safe and private user interaction with the protocol.
- dev docs: built from dev mdBook
Here lay dragons: this codebase is still experimental, try at your own risk!
There is a single command to build and install Namada executables from source (the node, the client and the wallet). This command will also verify that a compatible version of CometBFT is available and if not, attempt to install it. Note that currently at least 16GB RAM is needed to build from source.
make install
After installation, the main namada
executable will be available on path.
To find how to use it, check out the User Guide section of the docs.
For more detailed instructions and more install options, see the Install section of the User Guide.
# Build the provided validity predicate and transaction wasm modules
make build-wasm-scripts-docker
# Format the code
make fmt
# Lint the code
make clippy
To change the log level, set NAMADA_LOG
environment variable to one of:
error
warn
info
debug
trace
The default is set to info
for all the modules, expect for CombetBFT ABCI, which has a lot of debug
logging.
For more fine-grained logging levels settings, please refer to the tracing subscriber docs for more information.
To switch on logging in tests that use #[test]
macro from test_log::test
, use RUST_LOG
with e.g. RUST_LOG=info cargo test -- --nocapture
.
Please see the contributing page.
The ledger currently requires CometBFT v0.37.2 is installed and available on path. This can be achieved through following these instructions