Documentation

Technical guides and integration information

Quick Reference

Contract Address
0xC1f85EBfC85d09EBEDbd55b2865092944F362cB5
Chain
Base Mainnet
Chain ID
8453
Decimals
18
Total Supply
1,000,000,000,000 (1T)

Add Token to Wallet

MetaMask / Rabby

  1. Ensure you have Base network added to your wallet
  2. Click "Import tokens" or "Add custom token"
  3. Paste contract address: 0xC1f85EBfC85d09EBEDbd55b2865092944F362cB5
  4. Token symbol and decimals should auto-populate
  5. Confirm and add

Using Cast (CLI)

# Get token name

cast call 0xC1f85EBfC85d09EBEDbd55b2865092944F362cB5 "name()(string)" --rpc-url https://mainnet.base.org

# Get token symbol

cast call 0xC1f85EBfC85d09EBEDbd55b2865092944F362cB5 "symbol()(string)" --rpc-url https://mainnet.base.org

# Get total supply

cast call 0xC1f85EBfC85d09EBEDbd55b2865092944F362cB5 "totalSupply()(uint256)" --rpc-url https://mainnet.base.org

Minimal ERC20 ABI

Basic read functions for integrating with the token contract:

[
  {
    "inputs": [],
    "name": "name",
    "outputs": [{"type": "string"}],
    "stateMutability": "view",
    "type": "function"
  },
  {
    "inputs": [],
    "name": "symbol",
    "outputs": [{"type": "string"}],
    "stateMutability": "view",
    "type": "function"
  },
  {
    "inputs": [],
    "name": "decimals",
    "outputs": [{"type": "uint8"}],
    "stateMutability": "view",
    "type": "function"
  },
  {
    "inputs": [],
    "name": "totalSupply",
    "outputs": [{"type": "uint256"}],
    "stateMutability": "view",
    "type": "function"
  }
]

Security Notes

  • Always verify the contract address before interacting
  • Use official links from this website or verified social channels
  • Never share your private keys or seed phrases
  • Be cautious of phishing attempts and fake tokens
  • Source code verification pending - review code before large transactions

Frequently Asked Questions

Official Links