Skip to Content
Faucet

Faucet

faucet.aevachain.com  hands out test tokens.

One claim gives, in a single transaction:

  • 10 AEVA — gas for your transactions;
  • 1 000 aeUSD — the settlement coin, to pay in trades;
  • a testnet.verified credential valid for 90 days, attested by the faucet’s attester account. Assets whose policy requires this credential accept you as a holder while it is valid.

Limits

  • One claim per address and per network every 24 hours. A second claim within 24 hours answers HTTP 429 with a Retry-After header.
  • Addresses in the aeva1… form only. If you have a 0x… address (MetaMask), convert it on the Wallets page or with aevad debug addr 0x….
  • The faucet refuses claims when its balance would cover fewer than seven days of demand; it recovers when it is topped up.

From a script

curl -s -X POST -H 'content-type: application/json' \ -d '{"address":"aeva1…"}' https://faucet.aevachain.com/claim

The answer names the transaction hash and the attester address. A successful claim is visible on the explorer a block later (about 1 second).

Privacy

The faucet stores the address, a salted hash of the requesting IP address, the time of the last claim and a counter. It does not store or log IP addresses, request bodies or user agents.

Addresses

AccountAddress
Faucet (funding)aeva1yh7dgmqca50g655j3869lkhy67yyy7ahpsrnre
Faucet attester (signs testnet.verified)aeva1df62ja6a3ycywhnadjqnlgjazlx25vudtg55ly

To require the credential in an asset policy:

{ "credential": { "type": "testnet.verified", "attesters": ["aeva1df62ja6a3ycywhnadjqnlgjazlx25vudtg55ly"] } }
Last updated