The official command-line interface for the Aethelred blockchain
Submit AI jobs · Verify Digital Seals · Manage validators · Query on-chain state
macOS / Linux (Homebrew):
brew install AethelredFoundation/tap/aethelCargo:
cargo install aethelDownload binary from Releases:
curl -sSL https://install.aethelred.io | bash# Configure network
aethel config set --network testnet
aethel config set --rpc https://rpc.testnet.aethelred.io
# Create / import a wallet
aethel wallet create --name mykey
aethel wallet import --mnemonic "your twelve word mnemonic..."
# Check balance
aethel bank balance --address aethel1abc...
# Submit an AI compute job
aethel pouw submit-job \
--model-hash abc123... \
--input ./my_prompt.json \
--verification-type hybrid \
--from mykey
# Query a Digital Seal
aethel seal get --job-id <job-id>
# Verify a seal
aethel seal verify --seal-id <seal-id>| Command | Description |
|---|---|
aethel config |
Manage CLI configuration (network, RPC, keyring) |
aethel wallet |
Create, import, list, and export wallets |
aethel bank |
Token transfers and balance queries |
aethel pouw submit-job |
Submit an AI compute job |
aethel pouw list-jobs |
List your submitted jobs |
aethel pouw rewards |
Query your validator rewards |
aethel seal get |
Get a Digital Seal by job ID or seal ID |
aethel seal verify |
Verify a Digital Seal's authenticity |
aethel seal list |
List recent Digital Seals |
aethel model register |
Register an AI model on-chain |
aethel model list |
List registered models |
aethel validator list |
List active validators |
aethel gov propose |
Submit a governance proposal |
aethel gov vote |
Vote on a governance proposal |
aethel status |
Node health and chain status |
aethel version |
Print CLI version |
This repo also contains:
| Tool | Description |
|---|---|
seal-verifier |
Standalone seal verification binary |
model-registry |
Model registration CLI tool |
# Build
cargo build --workspace
# Test
cargo test --workspace
# Lint
cargo clippy -- -D warnings
# Run locally
cargo run --bin aethel -- --help- AethelredFoundation/aethelred — Core node
- AethelredFoundation/aethelred-sdk-rs — Rust SDK (used internally)
- Docs