Testnet, tokens have no value. Do not send real assets.
Skip to Content
Testnet appsQuests and badges

Quests and badges

Ten steps through the testnet, each checked on chain by the indexer: when the chain shows you did it, you get a badge on your explorer address page and in the app, and a place on the public leaderboard. Quests are recognition only, no rewards, no airdrop, nothing to redeem. Testnet, tokens have no value.

QuestChecked on chain asGuide
Claim from the fauceta testnet.verified attestation from the faucet’s attesterHold a test stock
Send a MetaMask transactionany successful EVM transaction from the accountSwap and pools
Swap on the DEXa successful router swap from the accountSwap and pools
Add liquidity to a poola successful router addLiquidity from the account/pools 
Receive a test dividendan INCOME unit held when a distribution paid its kindHold a test stock
Claim your incomean EventClaimed for the accountHold a test stock
Sell a right strip to the deska settled settlement giving the desk one kind of an assetTrade desk
Borrow and repaya pledge to the lender, released after repaymentBorrow
Launch an assetan asset the account issuedLaunch an asset
Delegate incomea delegation of an INCOME purpose by the accountDistribute, claim, delegate

Your aeva1… and 0x… addresses are one account, so an EVM transaction from MetaMask and a native one from aevad count toward the same quests.

Your progress

Run the setup block first.

curl -s "$AEVA_INDEXER/v1/quests/$ME" | jq -r '"\(.completed) of \(.total) quests", (.quests[] | " [\(if .done then "x" else " " end)] \(.title)")'
Expected output
<n> of 10 quests [x] Claim from the faucet …

A completed quest also carries the height and time of the block that completed it (height, at). Badges appear on https://explorer.aevachain.com/address/<your address> and on the app’s /quests  page.

The leaderboard

curl -s "$AEVA_INDEXER/v1/quests/leaderboard?limit=5" | jq -r '.rows[] | "\(.completed) \(.address)"'
Expected output
<n> aeva1… …

Ordered by quests completed, then by who got there first. The testnet’s own service accounts (the market, the desk, the lender, the pools, the faucet) are left out. The results are cached for a minute.

Last updated