Interface TransactionReceipt

interface TransactionReceipt {
    blockHash: string;
    blockNumber: number;
    confirmations?: number;
    contractAddress: string;
    createdContracts?: any[];
    cumulativeGasUsed: number;
    destructedContracts?: any[];
    excepted: string;
    exceptedMessage: string;
    from: string;
    gasUsed: number;
    log?: any[];
    logs?: any[];
    outputIndex: number;
    stateRoot?: string;
    to: string;
    transactionHash: string;
    transactionIndex: number;
    utxoRoot?: string;
}

Properties

blockHash: string
blockNumber: number
confirmations?: number
contractAddress: string
createdContracts?: any[]
cumulativeGasUsed: number
destructedContracts?: any[]
excepted: string
exceptedMessage: string
from: string
gasUsed: number
log?: any[]
logs?: any[]
outputIndex: number
stateRoot?: string
to: string
transactionHash: string
transactionIndex: number
utxoRoot?: string