Install
openclaw skills install kite-agent-smart-wallet-permissionless-protocolCreate and manage modular, permissioned smart wallets for AI agents with session keys and spending limits on the Kite AI network.
openclaw skills install kite-agent-smart-wallet-permissionless-protocolVersion: 1.0.0 Build on Kite AI Testnet Smart wallet protocol for AI agents with modular architecture
Kite AI Agent Wallet Protocol enables AI agents to create and manage smart wallets on Kite AI network. Inspired by Biconomy Nexus design, this protocol provides extensible, secure wallet infrastructure for autonomous AI agents.
┌─────────────────────────────────────────────────────────────┐
│ AgentSmartWalletFactory │
│ (Wallet Factory - Batch Creation) │
└─────────────────────┬───────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ AgentSmartWallet │
│ - owner: Human user (root authority) │
│ - agent: AI agent (delegated authority) │
│ - sessionKeys: Temporary keys (automation) │
└─────────────────────┬───────────────────────────────────────┘
│
┌───────────┴───────────┐
▼ ▼
┌─────────────────┐ ┌─────────────────┐
│SpendingLimit │ │SessionKey │
│Module │ │Module │
└─────────────────┘ └─────────────────┘
| Contract | Address |
|---|---|
| ModuleRegistry | 0xfdf654b7dDbdFf0C7ec9017Aece166a75a5197B5 |
| SpendingLimitModule | 0x00E593eA476DfC0b22d9DF0A8fe436e5323Ae05F |
| SessionKeyModule | 0x5b6C45EC7C9d7C688413d6bB2CC3B0A35f5B79B8 |
| AgentSmartWalletFactory | 0x0fa9F878B038DE435b1EFaDA3eed1859a6Dc098a |
const factory = await ethers.getContractFactory("AgentSmartWalletFactory");
const wallet = await factory.createWallet(agentAddress, ethers.utils.parseEther("1"));
const wallet = await ethers.getContractAt("AgentSmartWallet", walletAddress);
await wallet.addSessionKey(
sessionKeyAddress, // Agent's session key
ethers.utils.parseEther("0.1"), // Limit
[bytes4("0x...")] // Allowed function selectors
);
// Agent uses session key to execute
await wallet.executeWithSessionKey(
encodedData, // (target, value, callData)
signature // Owner signature
);
Protocol supports:
Version History