- Added Ethereum Mainnet token list (1 token: USDT) - Updated ChainID 138 token list (6 tokens: added cUSDT and cUSDC) - Added ALL Mainnet token list (9 tokens including AUSDT) - Discovered ALL Mainnet tokens via Transfer event scanning - Updated validation scripts for multi-chain support - Created comprehensive documentation and guides - Updated master documentation indexes - All token lists validated and ready for submission
2.6 KiB
2.6 KiB
ALL Mainnet Token Submission Notes
Date: 2026-01-26
Network: ALL Mainnet (ChainID 651940)
Explorer: https://alltra.global/tokens
Current Status
⚠️ Token data extraction pending - Need to extract token information from ALL Mainnet explorer.
Action Required
Step 1: Visit ALL Mainnet Explorer
Go to: https://alltra.global/tokens
Step 2: Identify Tokens
Look for tokens listed, especially:
- AUSDT (if this is the token name/symbol on ALL Mainnet)
- USDT (Tether USD)
- USDC (USD Coin)
- Any other ERC-20 tokens
Step 3: Extract Token Information
For each token found, collect:
| Field | Example | Source |
|---|---|---|
| Address | 0x... |
Token page on explorer |
| Name | "Tether USD" | Token page |
| Symbol | "AUSDT" or "USDT" | Token page |
| Decimals | 6 or 18 | Token page or contract |
| Chain ID | 651940 | Fixed for ALL Mainnet |
Step 4: Update Token List
Once you have the token data:
- Open:
token-lists/lists/all-mainnet.tokenlist.json - Replace placeholder entries with actual token data
- Remove placeholder comments
- Validate using:
node token-lists/scripts/validate-token-list.js token-lists/lists/all-mainnet.tokenlist.json --chain-id=651940
Template for AUSDT (if found)
If you find AUSDT on ALL Mainnet, use this template:
{
"chainId": 651940,
"address": "0x...", // Actual address from explorer
"name": "Tether USD", // Or actual name
"symbol": "AUSDT", // Or "USDT"
"decimals": 6, // Verify from explorer
"logoURI": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png",
"tags": ["stablecoin", "defi"]
}
Verification Commands
Once you have token addresses:
# Set RPC
RPC_URL="https://mainnet-rpc.alltra.global"
# Verify token (replace ADDRESS with actual token address)
cast call <ADDRESS> "symbol()(string)" --rpc-url $RPC_URL
cast call <ADDRESS> "name()(string)" --rpc-url $RPC_URL
cast call <ADDRESS> "decimals()(uint8)" --rpc-url $RPC_URL
Files Ready
- ✅
token-lists/lists/all-mainnet.tokenlist.json- Template created (needs token data) - ✅
token-lists/ALL_MAINNET_TOKEN_EXTRACTION_GUIDE.md- Extraction guide - ✅ Validation script supports chain ID 651940
Next Steps
- Extract token data from https://alltra.global/tokens
- Update
all-mainnet.tokenlist.jsonwith actual token data - Validate the token list
- Submit to token list registries
Last Updated: 2026-01-26