← BSV MCPInstall
Tokens

mnee_parseTx

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).

Read as Markdown

Result

Parsed MNEE transaction data as JSON text.

Permissions

No spending approval is requested by this handler. Public network lookups can still fail or require a compatible service.

Inputs and availability

Full catalog · Legacy local wallet; Legacy local identity

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"
}