Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TransactionReceipt

interface TransactionReceipt {
blockHash: string;
blockNumber: number;
byzantium: boolean;
confirmations: number;
contractAddress: string;
cumulativeGasUsed: BigNumber;
effectiveGasPrice: BigNumber;
from: string;
gasUsed: BigNumber;
logs: Array<Log>;
logsBloom: string;
root?: string;
status?: number;
to: string;
transactionHash: string;
transactionIndex: number;
type: number;
}

§Properties

§
blockHash: string
[src]
§
blockNumber: number
[src]
§
byzantium: boolean
[src]
§
confirmations: number
[src]
§
contractAddress: string
[src]
§
cumulativeGasUsed: BigNumber
[src]
§
effectiveGasPrice: BigNumber
[src]
§
from: string
[src]
§
gasUsed: BigNumber
[src]
§
logs: Array<Log>
[src]
§
logsBloom: string
[src]
§
root?: string
[src]
§
status?: number
[src]
§
to: string
[src]
§
transactionHash: string
[src]
§
transactionIndex: number
[src]
§
type: number
[src]