-
Ethers Version5.7.2 Search TermsTransactionReceipt, events Describe the ProblemThe Code Snippetexport interface TransactionReceipt {
to: string;
from: string;
contractAddress: string,
transactionIndex: number,
root?: string,
gasUsed: BigNumber,
logsBloom: string,
blockHash: string,
transactionHash: string,
logs: Array<Log>,
blockNumber: number,
confirmations: number,
cumulativeGasUsed: BigNumber,
effectiveGasPrice: BigNumber,
byzantium: boolean,
type: number;
status?: number
};
|
Beta Was this translation helpful? Give feedback.
Answered by
ricmoo
Nov 19, 2022
Replies: 1 comment
-
That’s because |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Astlaan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That’s because
events
is part of the ContractReceipt type. :)