TxStatus
Type Alias: TxStatus
type TxStatus = {
blockHeight: number;
blockStatus: string;
stateHash: string;
timestamp: number;
txHash: string;
txStatus: string;
};
Defined in: packages/api/src/client/types.gen.ts:928
Type declaration
blockHeight?
optional blockHeight: number;
The height of the block containing the transaction.
blockStatus?
optional blockStatus: string;
The status of the block.
stateHash?
optional stateHash: string;
The state hash of the block.
timestamp?
optional timestamp: number;
The timestamp of the block.
txHash?
optional txHash: string;
The transaction hash.
txStatus?
optional txStatus: string;
The status of the transaction in the block.
Updated 10 days ago