Documentation Index
Fetch the complete documentation index at: https://cobo.com/products/agentic-wallet/manual/llms.txt
Use this file to discover all available pages before exploring further.
Wallets are created and owned by a principal. Owners have unrestricted access; runtimes only see wallets they can access through active delegations or pacts.
Create a wallet
CLI
Python SDK
TypeScript SDK
wallet = await owner_client.create_wallet(name="Treasury")
print(wallet["uuid"])
const wallet = (await walletsApi.createWallet({ name: 'Treasury' })).data.result;
console.log(wallet.uuid);
Get a wallet
CLI
Python SDK
TypeScript SDK
wallet = await owner_client.get_wallet(wallet_uuid)
print(wallet["name"], wallet["status"])
const wallet = (await walletsApi.getWallet(walletUuid)).data.result;
console.log(wallet.name, wallet.status);
List wallets
CLI
Python SDK
TypeScript SDK
wallets = await owner_client.list_wallets(limit=50, offset=0)
const wallets = (await walletsApi.listWallets(undefined, undefined, 0, 50)).data.result;
Python SDK
TypeScript SDK
from cobo_agentic_wallet_api.models.wallet_update import WalletUpdate
await owner_client.update_wallet(
wallet_uuid,
WalletUpdate(name="Main Treasury", metadata={"region": "us-east"}),
)
await walletsApi.updateWallet(walletUuid, {
name: 'Main Treasury',
metadata: { region: 'us-east' },
});