Skip to main content

Testnet setup

Use testnet (safro-testnet-1) for shared examples, or local devnet (safro-devnet-1) on your machine.

Checklist

  1. Install a wallet or generate a dev key (see Wallets)
  2. Copy network constants
  3. Fund the address from the faucet
  4. Verify RPC and REST respond
  5. Send a first transaction

Network

FieldValue
Chain IDsafro-testnet-1
Denomusaf
Prefixaddr_safro
Min gas price0.05 usaf per gas unit

Full endpoint table: Testnet endpoints.

Verify connectivity

RPC="https://rpc.testnet.safrochain.com"
REST="https://rest.testnet.safrochain.com"

curl -s "$RPC/status" | jq '.result.sync_info.latest_block_height'
curl -s "$REST/cosmos/bank/v1beta1/supply" | jq '.supply[0]'

Fund your address

  1. Create or import a wallet with prefix addr_safro
  2. Open faucet.safrochain.com
  3. Paste your address (must start with addr_safro)

Discord faucet: see Testnet endpoints.

Wallet registration (Keplr / Leap)

If using a browser wallet, register the chain using the JSON block in Testnet endpoints: Wallet connection.

Or use Cosmos Kit to register Safrochain in your React app.

Next