interface LogSelection {
    address?: string[];
    topics?: string[][];
}

Properties

Properties

address?: string[]

Address of the contract, any logs that has any of these addresses will be returned. Empty means match all.

topics?: string[][]

Topics to match, each member of the top level array is another array, if the nth topic matches any topic specified in topics[n] the log will be returned. Empty means match all.