AI Blockchain Key Manager
Autonomous key lifecycle management for wallets, smart contracts, and validators. Generate, rotate, retire — without losing access to chain state.
Overview
What it does
Manages the full lifecycle of cryptographic keys used on blockchain networks — generation, secure storage (HSM-backed), rotation, retirement, and recovery — across multiple chains and signing schemes (ECDSA-secp256k1, Ed25519, BLS12-381).
Detects keys that are due for rotation based on usage volume, time elapsed, or threat intelligence (e.g., a leaked signing scheme). Coordinates the rotation atomically so on-chain assets remain accessible throughout.
Exposes a unified API across EVM chains, Bitcoin, Solana, Cosmos, and Polkadot. No more chain-specific glue code.
How it works
A 4-step key lifecycle
Register keys
Register your wallets / smart contract signers with the agent (one-time, with audit trail).
Monitor
Agent monitors key age, signing volume, and external threat intel.
Propose plan
When a rotation policy triggers, agent proposes a rotation plan (new key, transition window, on-chain migration steps).
Execute rotation
POST /v1/agents/blockchain-key-manager/rotate executes the plan with HSM-backed signing; old key is securely retired.
Sandbox
Try it live
Simulate key evaluation, rotation planning, and retirement across chains.
Inputs
Response
{
"key_id": "akrum_key_00000000",
"chain": "ethereum",
"rotation_recommended": false,
"reason": "Key age (180d) and signing volume (5000 ops) within policy limits",
"proposed_plan": {
"new_public_key": "0x000000000000000000000000000000000000000000000000000000004b2b855e",
"new_key_algorithm": "ECDSA-secp256k1",
"hsm_backed": true,
"transition_window_hours": 24,
"on_chain_steps": [
"Deploy new signer to wallet registry",
"Wait 24h for governance confirmation window",
"Activate new signer, deactivate old signer in atomic tx",
"Mark old key as RETIRED in HSM"
]
},
"evaluated_at": "2026-01-15T12:00:00.000Z"
}Simulated response — no real inference is performed.
Data sources
Built on open chain specifications
- Ethereum Yellow Paper and EIP standards (EIP-712 typed data, EIP-1271 contract signatures, etc.)
- Bitcoin BIP specifications (BIP-32 HD wallets, BIP-39 mnemonics, BIP-340 Schnorr)
- Solana account model and Ed25519 specification
- Cosmos SDK key management documentation
- Polkadot SS58 address format spec
- NIST FIPS 140-3 (HSM standards, publicly published)
- CryptoCurrency Security Standard (CCSS) — open standard
- Public chain analytics (Etherscan, blockchain.info, Solscan) for signing volume baselines
All chain specs are open standards. AKRUM tracks every relevant EIP/BIP/SLIP as it ships.
Supported chains
Chain coverage
Ethereum
Bitcoin
Solana
Polygon
Cosmos
Polkadot
API reference
Schema
| Field | Type | Required | Description |
|---|---|---|---|
| chain | string | yes | Target chain (ethereum, bitcoin, solana, polygon, cosmos). |
| key_type | string | yes | Key classification (hot_wallet, cold_wallet, multisig_signer, validator_key). |
| days_since_generation | integer | yes | Days since the key was originally generated. |
| signing_ops | integer | yes | Cumulative signing operations performed by this key. |
| action | enum(evaluate|propose_rotation|retire) | yes | Operation to perform. |
Ready to integrate?
Get an API key and start calling AI Blockchain Key Manager in minutes.
