AbsoluteTxPosition is a unique transaction position that allows for global ordering of transactions.

interface AbsoluteTxPosition {
    blockHeight: bigint;
    txIndex: bigint;
}

Properties

Properties

blockHeight: bigint

BlockHeight is the block the contract was created at

txIndex: bigint

TxIndex is a monotonic counter within the block (actual transaction index, or gas consumed)