ContractFilterOptions: {
    anyOfAddresses?: undefined;
    name: string;
} | {
    anyOfAddresses: Readonly<NonEmptyArray<string>>;
    name?: undefined;
}

Options for matching the contract to index. Used by contractFilter decorator.

Property

name Matches contract by its name which comes from contracts.

Property

anyOfAddresses Matches contract if its address is one of these addresses. It must be a non-empty array.

Generated using TypeDoc