Skip to content

Connect to the public devnet

Hylé provides a public devnet where you can test your applications.

Note

We currently make no guarantees on the public devnet stability. It can be reset at any time. We will keep this page updated with the latest information.

Create your wallet on our public devnet

Configure your environment

# This script automatically sets up the devnet configuration
./scripts/configure.sh
# Create yourprivate key, you can name it however you want
./hyled keys add my-key
export ADDRESS=$(./hyled keys show my-key -a) # for convenience

Claim HYLE tokens on the faucet with your newly created address

curl --header "Content-Type: application/json" \
  --request POST \
  --data "{\"denom\":\"hyle\",\"address\":\"$ADDRESS\"}" \
  https://faucet.devnet.hyle.eu/credit

Check your balance

./hyled query bank balance $ADDRESS hyle
You can also visit https://explorer.hyle.eu/hyle/account/$ADDRESS

URLs