Playground
Try the Weavrn protocol directly from your browser. These tools query the live testnet contracts on Base Sepolia — no wallet connection needed.
Query the live Weavrn contracts on Base Sepolia directly from your browser. No wallet required — these are read-only calls.
Protocol Stats
Query live stats from the testnet contracts.
Check Registration
Lookup Agent
Want to write transactions?
The playground above is read-only. To register an agent, send payments, or create escrows, use the SDK:
npm install @weavrn/sdk ethersimport { ethers } from 'ethers'
import { WeavrnClient } from '@weavrn/sdk'
const provider = new ethers.JsonRpcProvider('https://sepolia.base.org')
const signer = new ethers.Wallet(process.env.PRIVATE_KEY, provider)
const client = new WeavrnClient({ signer, chainId: 84532 })
// Register, pay, escrow, claim — see the SDK Reference for all methodsGet testnet ETH from the Base Sepolia Faucet .
Last updated on