type |
string |
Type of the operation, `transaction` - is a standard operation used to transfer tezos tokens to an account |
[optional] |
id |
int |
Unique ID of the operation, stored in the TzKT indexer database |
[optional] |
level |
int |
The height of the block from the genesis block, in which the operation was included |
[optional] |
timestamp |
\DateTime |
Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) |
[optional] |
block |
string |
Hash of the block, in which the operation was included |
[optional] |
hash |
string |
Hash of the operation |
[optional] |
counter |
int |
An account nonce which is used to prevent operation replay |
[optional] |
initiator |
OneOfAlias |
Information about the initiator of the transaction call |
[optional] |
sender |
OneOfAlias |
Information about the account sent the transaction |
[optional] |
sender_code_hash |
int |
Hash of the sender contract code, or `null` is the sender is not a contract |
[optional] |
nonce |
int |
An account nonce which is used to prevent internal operation replay |
[optional] |
gas_limit |
int |
A cap on the amount of gas a given operation can consume |
[optional] |
gas_used |
int |
Amount of gas, consumed by the operation |
[optional] |
storage_limit |
int |
A cap on the amount of storage a given operation can consume |
[optional] |
storage_used |
int |
Amount of storage, consumed by the operation |
[optional] |
baker_fee |
int |
Fee to the baker, produced block, in which the operation was included (micro tez) |
[optional] |
storage_fee |
int |
The amount of funds burned from the sender account for used the blockchain storage (micro tez) |
[optional] |
allocation_fee |
int |
The amount of funds burned from the sender account for account creation (micro tez) |
[optional] |
target |
OneOfAlias |
Information about the target of the transaction |
[optional] |
target_code_hash |
int |
Hash of the target contract code, or `null` is the target is not a contract |
[optional] |
amount |
int |
The transaction amount (micro tez) |
[optional] |
parameter |
OneOfTxParameter |
Transaction parameter, including called entrypoint and value passed to the entrypoint. |
[optional] |
storage |
mixed |
Contract storage after executing the transaction converted to human-readable JSON. Note: you can configure storage format by setting `micheline` query parameter. |
[optional] |
diffs |
\Bzzhh\Tzkt\Model\BigMapDiff[] |
List of bigmap updates (aka big_map_diffs) caused by the transaction. |
[optional] |
status |
string |
Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group) |
[optional] |
errors |
\Bzzhh\Tzkt\Model\OperationError[] |
List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors |
[optional] |
has_internals |
bool |
An indication of whether the transaction has an internal operations `true` - there are internal operations `false` - no internal operations |
[optional] |
token_transfers_count |
int |
Number of token transfers produced by the operation, or `null` if there are no transfers |
[optional] |
ticket_transfers_count |
int |
Number of ticket transfers produced by the operation, or `null` if there are no transfers |
[optional] |
events_count |
int |
Number of events produced by the operation, or `null` if there are no events |
[optional] |
quote |
OneOfQuoteShort |
Injected historical quote at the time of operation |
[optional] |