Skip to main content

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.

For runtime reliability, treat request_id as the primary correlation key. list_user_transactions is useful for quick inspection, but get_user_transaction_by_request_id is the stronger primitive for durable tracking.

Track by request ID

record = await client.get_user_transaction_by_request_id(
    wallet_uuid=WALLET_UUID,
    request_id="swap-2026-001",
)
print(record["status"], record["record_type"])

List transaction records

caw tx list --limit 20 --status submitted

Get a single transaction record

caw tx get --tx-id <TX_ID>

Status values

StatusMeaning
pendingAccepted but not yet executed
broadcastingBroadcast to the network
confirmingWaiting for confirmations
completedConfirmed on-chain
failedFailed before or after chain execution
Combine transaction records with Audit and Activity Logs when you need both execution status and policy/approval history.