Skip to main content

Get LYTH

This guide explains how to obtain LYTH tokens on different networks.

Testnet Faucet

For Testnet, use the official faucet to receive free test tokens.

Using the Web Faucet

  1. Visit the Testnet Faucet
  2. Connect your wallet or enter your address
  3. Complete the verification
  4. Request tokens
  5. Tokens arrive within seconds

Using the Telegram Bot

For higher limits, use the official Telegram faucet bot: @monolythium_faucet_bot

  1. Open the bot on Telegram
  2. Send /faucet <your-address> <amount>
  3. Receive up to 100 LYTH per day (choose any amount between 1-100)

Using the Discord Bot

The faucet is also available in the Monolythium Discord server:

  1. Join the Monolythium Discord
  2. Go to the #faucet channel
  3. Use the /faucet slash command with your address and amount
  4. Receive up to 100 LYTH per day

Faucet Limits

MethodDaily LimitCooldown
Web (Monoscan)1 LYTH per request24 hours
Telegram BotUp to 100 LYTH24 hours (cumulative)
Discord BotUp to 100 LYTH24 hours (cumulative)

The Telegram and Discord bots allow custom amounts and a higher daily limit, making them the recommended option for developers and active testers.

Using CLI Faucet

If available, request via command line:

curl -X POST https://testnet.monoscan.xyz/faucet/request \
-H "Content-Type: application/json" \
-d '{"address": "mono1your_address_here"}'

Mainnet LYTH

Exchanges

LYTH will be available on exchanges after mainnet launch. Check official announcements for listings.

OTC

For large amounts, contact official channels for over-the-counter options.

Checking Your Balance

MetaMask

  1. Connect to Monolythium network
  2. Balance shows in wallet interface

Monolythium Browser Wallet / Keplr

  1. Connect to Monolythium network
  2. Balance shows in wallet interface

CLI

monod query bank balances <your-address>

RPC

# Cosmos REST
curl https://api.testnet.mononodes.xyz/cosmos/bank/v1beta1/balances/<address>

# EVM RPC
curl -X POST -H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"eth_getBalance","params":["0x...","latest"],"id":1}' \
https://evm.testnet.mononodes.xyz

Address Format

The faucet accepts both address formats:

FormatExample
Cosmos (Bech32)mono1abc123...
EVM (Hex)0x1234...

Both represent the same account and receive the same tokens.

Troubleshooting

Tokens Not Appearing

  1. Verify address - Ensure you entered correctly
  2. Check network - Confirm wallet is on correct network
  3. Wait - Transactions may take a few seconds
  4. Refresh - Update wallet or query balance again

Faucet Says Already Requested

Wait for the cooldown period (typically 24 hours) before requesting again.

Faucet Not Working

  1. Check official channels for status updates
  2. Try again later
  3. Ensure you're using the correct faucet URL

Next Steps