bnbchain-mcp

Official
by bnb-chain
MIT License
353
2

get_transaction_receipt

Retrieve transaction details using the transaction hash from supported networks like BSC, Ethereum, and more with default BSC mainnet.

Instructions

Get a transaction receipt by its hash

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
txHashYesThe transaction hash to look up

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" }, "txHash": { "description": "The transaction hash to look up", "type": "string" } }, "required": [ "txHash" ], "type": "object" }
ID: t6zbvd82tr