Type alias SmartRollupFilterOptionsExperimental

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

Options for matching the smart rollup to index. Used by smartRollupFilter decorator.

Property

name Matches smart rollup by its name which comes from smartRollups.

Property

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

Generated using TypeDoc