Create a wallet
- CLI
- Python SDK
- TypeScript SDK
Get a wallet
- CLI
- Python SDK
- TypeScript SDK
List wallets
- CLI
- Python SDK
- TypeScript SDK
Update wallet metadata
- Python SDK
- TypeScript SDK
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create wallets, inspect wallet state, list wallets, and update metadata.
caw onboard
wallet = await owner_client.create_wallet(name="Treasury")
print(wallet["uuid"])
const wallet = (await walletsApi.createWallet({ name: 'Treasury' })).data.result;
console.log(wallet.uuid);
caw wallet get
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);
caw wallet list
wallets = await owner_client.list_wallets(limit=50, offset=0)
const wallets = (await walletsApi.listWallets(undefined, undefined, 0, 50)).data.result;
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' },
});