Skip to content

Get testnet KNYX

The faucet dispenses free testnet KNYX for gas and experimentation.

URLfaucet.kriptonyx.com
Amount0.01 KNYX per request
NetworkKriptoNyx testnet, chain ID 3009

How to use it

  1. Open faucet.kriptonyx.com.
  2. Paste the address you want funded — any 0x… address.
  3. Submit. The transaction is sent immediately and appears in the explorer within a block or two.

Is 0.01 KNYX enough?

For gas, yes — comfortably. The network's minimum gas price is 0aknyx, so transactions cost very little. A simple transfer uses 21,000 gas, and contract calls on this chain typically settle for a fraction of the faucet amount.

If you need a larger balance for testing liquidity, trading or bridge operations, request repeatedly or ask the team for a funded account.

Checking your balance

bash
curl -s -X POST https://rpc.testnet.kriptonyx.com \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_getBalance",
       "params":["0xYourAddress","latest"]}'

The result is hex-encoded aknyx. Divide by 1018 for KNYX, or let your library do it:

js
const balance = await provider.getBalance(address);
console.log(ethers.formatEther(balance), 'KNYX');

See KNYX and denominations for why amounts are integers.

KriptoNyx testnet — chain ID 3009 (kriptonyx_3009-1)