← BSV MCPInstall
Tokens

mnee_parseTx

Parse an MNEE transaction to get detailed information about its operations and amounts

Read as Markdown

Result

Parsed MNEE transaction data as JSON text.

Permissions

No wallet required.

Inputs and availability

full catalog · Legacy local wallet; Legacy local identity; Local Vault · broadcasting disabled; Local Vault · all roles; Local Vault · payment role only; Local Vault + sponsor

Full tool description

Parse an MNEE transaction to get detailed information about its operations and amounts. All amounts are in atomic units with 5 decimal precision (e.g. 1000 atomic units = 0.01 MNEE).

FieldType / requiredDescription
txidstring
Required
Transaction ID to parse

Nested fields are required only when their parent object or array item is supplied.

Full input schema
{
  "type": "object",
  "properties": {
    "txid": {
      "type": "string",
      "description": "Transaction ID to parse"
    }
  },
  "required": [
    "txid"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}