Quickstart

This guide gets you oriented with Tokelio in a few minutes. Everything here is a product preview — balances are illustrative and $TOKE launches on Robinhood with no contract address yet.

1. Open the dApp

Visit the Tokelio dApp and click Connect Wallet in the top bar. Any EIP-6963 browser wallet (MetaMask, Rabby), Coinbase Wallet, or WalletConnect works.

2. Fund a demo agent

Head to Agents → Deploy, give your agent a name, and assign it a TOKE budget. The agent can now spend from that budget autonomously — no per-transaction approval needed.

const agent = await tokelio.agents.deploy({
  name: "research-scout",
  budget: 250, // TOKE
  policy: { maxPerTask: 25, dailyCap: 100 },
});

3. Settle a task

Have the agent pay for a unit of work. Settlement is a single call:

await tokelio.settle({
  task: "inference:image-gen",
  amount: 12.5, // TOKE
  to: "agent:vega",
});

4. Ask the Copilot

Open the Copilot and ask anything about $TOKE, the utility surface, or how a workflow settles. It answers in rich Markdown and keeps your conversation history.

Next steps

  • Understand the moving parts in Architecture.
  • Follow a full flow in Guides.
  • Integrate in your own code with the SDK.