Network Details
Umbraline Testnet is an Avalanche Subnet with GHOST as the native gas token.
Network Configuration
| Property | Value |
|---|---|
| Chain ID | 47474 |
| Chain ID (hex) | 0xB99A |
| RPC URL | https://testnet-rpc.umbraline.com |
| Block Explorer | https://umbrascan.com |
| Native Token | GHOST |
| Block Time | ~2 seconds |
Adding to MetaMask
Manual Configuration:
- Open MetaMask → Networks → Add Network
- Enter the following:
- Network Name:
Umbraline Testnet - RPC URL:
https://testnet-rpc.umbraline.com - Chain ID:
47474 - Currency Symbol:
GHOST - Block Explorer URL:
https://umbrascan.com
- Network Name:
Programmatic:
await window.ethereum.request({
method: 'wallet_addEthereumChain',
params: [{
chainId: '0xB99A',
chainName: 'Umbraline Testnet',
nativeCurrency: {
name: 'GHOST',
symbol: 'GHOST',
decimals: 18,
},
rpcUrls: ['https://testnet-rpc.umbraline.com'],
blockExplorerUrls: ['https://umbrascan.com'],
}],
});
Gas Costs
| Operation | Estimated Gas |
|---|---|
commit() | ~75K-100K |
commitWithCallback() | ~100K-150K |
verifyAndNullify() | ~150K-200K |
revealWithCallback() | ~200K-300K |
info
Gas costs are estimates. Actual costs may vary based on proof complexity and callback logic. Verify with actual transactions on testnet.
Getting Testnet GHOST
Use the faucet at portal.ghostcoin.com/faucet:
- Rate limit: 1 request per address per 24 hours
- Amount: 100 GHOST per request
Checking Connection
# Check current block
cast block-number --rpc-url https://testnet-rpc.umbraline.com
# Check chain ID
cast chain-id --rpc-url https://testnet-rpc.umbraline.com