bnbchain-mcp

Official
by bnb-chain
MIT License
353
2

get_erc20_token_info

Retrieve detailed ERC20 token information by providing the token contract address and network. Works across popular networks like BSC, Ethereum, and others for comprehensive token insights.

Instructions

Get ERC20 token information

Input Schema

NameRequiredDescriptionDefault
networkNoNetwork name (e.g. 'bsc', 'opbnb', 'ethereum', 'base', etc.) or chain ID. Supports others main popular networks. Defaults to BSC mainnet.bsc
tokenAddressYesThe ERC20 token contract address

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "network": { "default": "bsc", "description": "Network name (e.g. 'bsc', 'opbnb', 'ethereum', 'base', etc.) or chain ID. Supports others main popular networks. Defaults to BSC mainnet.", "type": "string" }, "tokenAddress": { "description": "The ERC20 token contract address", "type": "string" } }, "required": [ "tokenAddress" ], "type": "object" }
ID: t6zbvd82tr