axiom-cli-0.1.8 is not a library.
Axiom CLI v0.1.7
Command-line interface for TruthLinked — accounts, value transfers, chain queries, key management, staking, governance, MCP agent workflows, NFTs, tokens, oracle, and SDK operations.
Signs transactions using postcard encoding and ML-DSA-65 post-quantum signatures before submitting to the chain RPC.
Build and Install
From the repository root:
cargo build --release -p axiom-cli
Configuration
Global options available on every command:
axiom --rpc <url> <command>
axiom --network devnet <command> axiom --config <path> <command>
Environment overrides:
TRUTHLINKED_RPC=<url>
TLKD_FAUCET_URL=<url>
Keys and Accounts
axiom account-create --output ~/.truthlinked/default.keys
axiom account-id --from ~/.truthlinked/default.keys
axiom key-info --from ~/.truthlinked/default.keys
Balances and Chain Info
axiom balance <account_id>
axiom chain-info
axiom status --from ~/.truthlinked/default.keys
Transfers
Supports account IDs, public keys, and .tl names.
axiom send native --from <keyfile> <recipient> <amount>
axiom send native --from <keyfile> alice.tl 10
axiom batch-transfer --from <keyfile> --recipients <id1,id2> --amounts <10,20>
Axiom Cells
axiom deploy-cell --from <keyfile> --bytecode ./counter.axiom --manifest ./counter.manifest.json
axiom call --from <keyfile> --cell <cell_id> --calldata <hex>
axiom cell-info <cell_id>
Compute Escrow (CU)
axiom deposit-compute --from <keyfile> --amount <tlkd>
axiom withdraw-compute --from <keyfile> --amount <tlkd>
Staking
axiom stake --from <keyfile> --amount <tlkd>
axiom unstake --from <keyfile> --amount <tlkd>
axiom withdraw-stake --from <keyfile>
axiom unjail --from <keyfile>
NFTs
axiom nft mint --from <keyfile> --name <name> --metadata-uri <uri>
axiom nft send --from <keyfile> --nft <nft_id> --to <recipient>
axiom nft burn --from <keyfile> --nft <nft_id>
Faucet (Devnet)
axiom faucet --from <keyfile>
MCP Agents
axiom mcp register-tool --from <keyfile> --name <name> --schema <path>
axiom mcp register-agent --from <keyfile> --policy <path>
axiom mcp tool-call --from <keyfile> --tool <tool_id> --args <json>
Genesis
axiom genesis-validator --from <keyfile> --allocation <tlkd>
Network: https://devnet.truthlinked.org
Explorer: https://explorer.truthlinked.org
Repository: https://github.com/truth-linked/truthlinked
CLI version: 0.1.7