interface TransactionReceipt {
    blobGasPrice?: `0x${string}`;
    blobGasUsed?: `0x${string}`;
    blockHash: `0x${string}`;
    blockNumber: `0x${string}`;
    contractAddress?: `0x${string}`;
    cumulativeGasUsed: `0x${string}`;
    effectiveGasPrice: `0x${string}`;
    from: `0x${string}`;
    gasUsed: `0x${string}`;
    logs: Log[];
    logsBloom: `0x${string}`;
    status?: `0x${string}`;
    to?: `0x${string}`;
    transactionHash: `0x${string}`;
    transactionIndex: `0x${string}`;
    type?: `0x${string}`;
}

Properties

blobGasPrice?: `0x${string}`
blobGasUsed?: `0x${string}`
blockHash: `0x${string}`
blockNumber: `0x${string}`
contractAddress?: `0x${string}`
cumulativeGasUsed: `0x${string}`
effectiveGasPrice: `0x${string}`
from: `0x${string}`
gasUsed: `0x${string}`
logs: Log[]
logsBloom: `0x${string}`
status?: `0x${string}`
to?: `0x${string}`
transactionHash: `0x${string}`
transactionIndex: `0x${string}`
type?: `0x${string}`