Interface TransactionResult

An interface for transaction result.

interface TransactionResult {
    address: string;
    block_hash?: string;
    block_number?: number;
    hash: string;
    index?: number;
    parent_tx_hash?: string;
    status: boolean;
}

Properties

address: string
block_hash?: string
block_number?: number
hash: string
index?: number
parent_tx_hash?: string
status: boolean