bnbchain-mcp

Official
by bnb-chain
MIT License
353
2

resolve_ens

Convert an ENS name to its corresponding EVM address on supported networks like Ethereum, BSC, and others. Specify the ENS name and network for accurate resolution.

Instructions

Resolve an ENS name to an EVM address (not supported on BSC)

Input Schema

NameRequiredDescriptionDefault
ensNameYesENS name to resolve (e.g., 'vitalik.eth')
networkNoNetwork name (e.g. 'bsc', 'opbnb', 'ethereum', 'base', etc.) or chain ID. Supports others main popular networks. Defaults to BSC mainnet.eth

Input Schema (JSON Schema)

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