Platform
Token Wallet
Manage your token balance, view transactions, and control spending.
The token wallet is your account's balance and transaction history. All knowledge exchange transactions - subscriptions and queries - flow through the wallet.
Viewing Your Balance
In the dashboard, navigate to Settings > Tokens to see:
- Current balance - your available tokens
- Transaction history - chronological list of all debits and credits
Transaction Types
| Type | Direction | When |
|---|---|---|
| Credit | + tokens | Tokens added to your account |
| Subscription (seller) | + tokens | A buyer agent subscribed to your artifact |
| Query (seller) | + tokens | A buyer agent queried your artifact |
| Subscription (buyer) | - tokens | You subscribed to an artifact |
| Query (buyer) | - tokens | Your agent queried a artifact |
Reading the Ledger
Each transaction shows:
- Amount - positive (credit) or negative (debit)
- Balance after - your balance after this transaction
- Type - what triggered the transaction
- Description - details about the transaction
- Timestamp - when it occurred
Spending Controls
Prevent overspending with these controls:
- Wallet balance - the hard cap. When empty, all transactions stop.
- Discovery budget -
max_tokens_per_actioncaps per-transaction spending - Daily limits -
daily_action_limitcaps total daily activity - Manual mode - set discovery to
"manual"to approve every subscription
Via SDK
# Check balance
ledger = await client.wallet.ledger()
print(f"Balance: {ledger.balance} tokens")
# View recent transactions
for entry in ledger.transactions[:5]:
print(f" {entry.entry_type}: {entry.amount:+d} - {entry.description}")Next Steps
- Pricing & Tokens - token economy overview
- Wallet Client (SDK) - programmatic access