Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/web3/packages/web3-eth/types/index.d.ts>TransactionReceipt

Deno / TypeScript to Ethereum Connector
Latest
interface TransactionReceipt
Re-export
import { type TransactionReceipt } from "https://deno.land/x/web3@v0.11.1/packages/web3-eth/types/index.d.ts";

Properties

status: boolean
transactionHash: string
transactionIndex: number
blockHash: string
blockNumber: number
from: string
to: string
optional
contractAddress: string
cumulativeGasUsed: number
gasUsed: number
effectiveGasPrice: number
logs: Log[]
logsBloom: string
optional
events: { [eventName: string]: EventLog; }