getTransactionDetails
Retrieve detailed information about a blockchain transaction by providing the chain ID and transactionID. Part of the Adamik MCP Server for multi-chain data queries and management.
Instructions
Gets info about a transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
transactionId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "string"
},
"transactionId": {
"type": "string"
}
},
"required": [
"chainId",
"transactionId"
],
"type": "object"
}