Skip to main content

Get Testnet PRIM

Use the Mersennet faucet to receive testnet PRIM for development and testing.

Web Interfaceโ€‹

  1. Open the faucet: http://46.225.30.187:4003
  2. Enter your wallet address (the one you'll use on Mersennet).
  3. Click the request button to receive testnet PRIM.
tip

Ensure your wallet is connected to Mersennet (Chain ID 7919) before requesting. The faucet sends PRIM to the address you provide.

Programmatic Accessโ€‹

You can request tokens via HTTP for scripts or CI/CD:

curl -X POST http://46.225.30.187:4003/faucet \
-H "Content-Type: application/json" \
-d '{"address": "0xYourWalletAddress"}'

Replace 0xYourWalletAddress with your Ethereum-style address (e.g., 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb).

Example Responseโ€‹

{
"success": true,
"tx_hash": "0x..."
}

Rate Limitsโ€‹

The faucet enforces rate limits to prevent abuse:

  • Per address โ€” Limited requests per address per time window.
  • Per IP โ€” Additional limits may apply for high-volume requests.

If your request is rate-limited, wait a few minutes before trying again. For automated testing, consider using multiple test addresses or caching faucet responses.


Troubleshootingโ€‹

IssueSolution
Request failsCheck that your address is a valid 0x-prefixed Ethereum address (40 hex chars).
No PRIM receivedVerify the transaction on the block explorer. Confirm you're on Chain ID 7919.
Rate limitedWait before retrying. Use a different address if needed for testing.