OperationIdentifier
The operation_identifier uniquely identifies an operation within a transaction.
Properties
Name | Type | Description | Required |
---|---|---|---|
index | Int64 (>= 0) | The operation index is used to ensure each operation has a unique identifier within a transaction. To clarify, there may not be any notion of an operation index in the blockchain being described. | True |
network_index | Int64 (>= 0) | Some blockchains specify an operation index that is essential for client use. For example, Bitcoin uses a network_index to identify which UTXO was used in a transaction. network_index should not be populated if there is no notion of an operation index in a blockchain (typically most account-based blockchains). | False |
Example
{
"index": 1,
"network_index": 0
}