# TxResult

## Overview

TxResult describes a transaction that was successfully sent to a client/node. Since blockchain transactions are not processed synchronously, It includes the hash of the transaction necessary for tracking the status of the transaction.&#x20;

## Structure

| Field | Type   | Description                         |
| ----- | ------ | ----------------------------------- |
| id    | String | The unique  hash of the transaction |

#### Example:

```javascript
{
   "id": "0x3d37b22e6885ac9b25ed35946bb4f06d0e524ab7a3c700d7625efbeda363fafd"
}
```
