Beatoz Faucet

Get free BTZ tokens for development on Testnet.

Use the Faucet

Click the button below to go to the Beatoz Faucet site.

Go to Faucet

How to Use

1

Select Network

Choose between Testnet or Devnet.

2

Enter Wallet Address

Enter your Beatoz wallet address to receive tokens.

3

Request Tokens

Click "Claim BEATOZ" button to request tokens.

4

Check Balance

Use the SDK to check your balance or view it on Explorer.

Network Information

Testnet

Chain ID0xbea701
RPC URLhttps://rpc-testnet0.beatoz.io

Check Balance Code

balance.js
import { Web3 } from '@beatoz/web3';

const web3 = new Web3('https://rpc-testnet0.beatoz.io');

// 잔액 조회
const address = '0x...your_address';
const account = await web3.beatoz.getAccount(address);

console.log('Balance:', web3.utils.fromFons(account.value.balance, 'beatoz'), 'BTZ');

Tips

  • You can request from the faucet once every 24 hours.
  • Testnet tokens have no real value.
  • Use only for development and testing purposes.