# mnee_parseTx

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

## Result

Parsed MNEE transaction data as JSON text.

## Permissions

No wallet required.

## Definition 1 (full)

Registered in: Legacy local wallet; Legacy local identity; Local Vault · broadcasting disabled; Local Vault · all roles; Local Vault · payment role only; Local Vault + sponsor.

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

| Field | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- |
| txid | string | Yes | Transaction ID to parse |  |

Nested requirements apply when their parent is supplied.

### Input schema

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

[All tools](https://bsvmcp.com/docs/tools)