lumerad is the Lumera blockchain node binary and the primary command-line tool for interacting with the Lumera Protocol. You use it to run a full node, query any on-chain state, submit transactions, manage cryptographic keys, and work with Lumera-specific modules such as actions (Cascade/Sense), claims, and the SuperNode registry. It is built on the Cosmos SDK and follows the same command conventions as other Cosmos chains. Existing Cosmos familiarity transfers directly.
The current release is v1.20.1-hotfix (July 14, 2026). Version v1.20.0 was the Aurora Convergence EVM upgrade.
Installation
Build from source
1
Clone the repository
2
Build the binary
build/lumerad. You can also run make build-debug to include debug symbols.3
Install system-wide
4
Verify the installation
go.mod for the exact version) and make. The libwasmvm shared library is built automatically during make build. You can also source it from the CosmWasm releases page.
Key management
Before you can sign transactions, you need at least one key in your local keyring.Query commands
Query commands read on-chain state without submitting any transactions. They are safe to run at any time and do not require a signing key.- Staking
- Actions
- Claims
- Node status
Transaction commands
Transaction commands broadcast signed messages to the chain. Every transaction command requires--from (the signing key) and --chain-id. Fees are charged in ulume (1 LUME = 1,000,000 ulume).
- Staking
- Governance
- Claims
Global flags
These flags apply to everylumerad command. You can set frequently-used flags as environment variables (e.g., LUMERA_CHAIN_ID) or in ~/.lumera/config/client.toml.
Common workflows
Check your balance and delegate
Check your balance and delegate
Query an action and verify it is finalized
Query an action and verify it is finalized
state: "ACTION_STATE_DONE" and a populated finalize_tx_hash.Connect to a remote node
Connect to a remote node
--node once in your client config to avoid repeating it.Additional build targets
The Makefile exposes several targets useful during development.Further reading
Cosmos SDK docs
The upstream documentation for the SDK that powers
lumerad.CometBFT docs
Consensus engine and RPC reference.
IBC Protocol
Cross-chain messaging used by Lumera.
Lumera Networks
Genesis files, seeds, and peer lists for mainnet and testnet.