Smart Contracts

Explore deployed contracts, preview ABIs, and interact with read/write functions.

ERC20Token

0xA0b8a309b3f2e482…eB48
Ethereum
ABI Preview
[
  {
    "name": "name",
    "type": "view",
    "inputs": [],
    "outputs": ["string"]
  },
  {
    "name": "symbol",
    "type": "view",
    "inputs": [],
    "outputs": ["string"]
  },
  {
    "name": "decimals",
    "type": "view",
    "inputs": [],
    "outputs": ["uint8"]
  },
  {
    "name": "balanceOf",
    "type": "view",
    "inputs": ["address account"],
    "outputs": ["uint256"]
  },
  {
    "name": "transfer",
    "type": "write",
    "inputs": ["address to", "uint256 amount"],
    "outputs": ["bool"]
  },
  {
    "name": "approve",
    "type": "write",
    "inputs": ["address spender", "uint256 amount"],
    "outputs": ["bool"]
  }
]

Read Functions

View-only calls

viewname
string
viewsymbol
string
viewdecimals
uint8
viewbalanceOf
address
uint256

Write Functions

State-changing calls

writetransfer
address
uint256
bool
writeapprove
address
uint256
bool