Appearance
Get testnet KNYX
The faucet dispenses free testnet KNYX for gas and experimentation.
| URL | faucet.kriptonyx.com |
| Amount | 0.01 KNYX per request |
| Network | KriptoNyx testnet, chain ID 3009 |
How to use it
- Open faucet.kriptonyx.com.
- Paste the address you want funded — any
0x…address. - 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.