| Name | Type | Description | Notes |
|---|---|---|---|
| hash | String | The transaction hash | [optional] |
| type | TypeEnum | The transaction type | [optional] |
| from | String | Sender's address | [optional] |
| to | String | Recipient's address | [optional] |
| value | String | Transaction value in nano SEM | [optional] |
| fee | String | Transaction fee in nano SEM. For CREATE/CALL, this field is zero; use gas instead | [optional] |
| nonce | String | The nonce of the sender | [optional] |
| timestamp | String | Transaction timestamp in milliseconds specified by the sender. There can be a time drift up to 2 hours. | [optional] |
| data | String | Transaction data encoded in hexadecimal string | [optional] |
| gas | String | The gas limit set by the sender | [optional] |
| gasPrice | String | The gas Price set by the sender | [optional] |
| Name | Value |
|---|---|
| COINBASE | "COINBASE" |
| TRANSFER | "TRANSFER" |
| DELEGATE | "DELEGATE" |
| VOTE | "VOTE" |
| UNVOTE | "UNVOTE" |
| CREATE | "CREATE" |
| CALL | "CALL" |