Beatoz Faucet
Get free BTZ tokens for development on Testnet.
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 ID
0xbea701RPC URL
https://rpc-testnet0.beatoz.ioCheck 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.
