Options to filter transaction logs

interface TransactionLogFilterOptions {
    address?: string;
    fromBlock?: string | number | bigint;
    toBlock?: string | number | bigint;
    topics?: (BytesLike | BytesLike[])[];
}

Properties

address?: string

Contract address

fromBlock?: string | number | bigint

First block of the range

toBlock?: string | number | bigint

Last block of the range

topics?: (BytesLike | BytesLike[])[]

Array of topics to filter by

Generated using TypeDoc