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.
| Quest | Checked on chain as | Guide |
|---|---|---|
| Claim from the faucet | a testnet.verified attestation from the faucet’s attester | Hold a test stock |
| Send a MetaMask transaction | any successful EVM transaction from the account | Swap and pools |
| Swap on the DEX | a successful router swap from the account | Swap and pools |
| Add liquidity to a pool | a successful router addLiquidity from the account | /pools |
| Receive a test dividend | an INCOME unit held when a distribution paid its kind | Hold a test stock |
| Claim your income | an EventClaimed for the account | Hold a test stock |
| Sell a right strip to the desk | a settled settlement giving the desk one kind of an asset | Trade desk |
| Borrow and repay | a pledge to the lender, released after repayment | Borrow |
| Launch an asset | an asset the account issued | Launch an asset |
| Delegate income | a delegation of an INCOME purpose by the account | Distribute, 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)")'<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)"'<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.