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

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

## Definition 1 (full)

Registered in: Legacy local wallet; Legacy local identity.

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)