TransactionReceipt constructor
TransactionReceipt({
- required Uint8List transactionHash,
- required int transactionIndex,
- required Uint8List blockHash,
- required BigInt cumulativeGasUsed,
- BlockNum blockNumber = const BlockNum.pending(),
- EthereumAddress? contractAddress,
- bool? status,
- EthereumAddress? from,
- EthereumAddress? to,
- BigInt? gasUsed,
- EtherAmount? effectiveGasPrice,
- List<
FilterEvent> logs = const [],
Implementation
TransactionReceipt({
required this.transactionHash,
required this.transactionIndex,
required this.blockHash,
required this.cumulativeGasUsed,
this.blockNumber = const BlockNum.pending(),
this.contractAddress,
this.status,
this.from,
this.to,
this.gasUsed,
this.effectiveGasPrice,
this.logs = const [],
});