FilterOptions.events constructor
FilterOptions.events({
- required DeployedContract contract,
- required ContractEvent event,
- BlockNum? fromBlock,
- BlockNum? toBlock,
Implementation
FilterOptions.events({
required DeployedContract contract,
required ContractEvent event,
this.fromBlock,
this.toBlock,
}) : address = contract.address,
topics = [
[bytesToHex(event.signature, padToEvenLength: true, include0x: true)]
];