A schema for specifying a criterion for the to field of an EVM transaction.

interface EvmAddressCriterion {
    addresses: string[];
    operator: EvmAddressCriterionOperator;
    type: "evmAddress";
}

Properties

addresses: string[]

A list of 0x-prefixed EVM addresses that the transaction's to field should be compared to. There is a limit of 100 addresses per criterion.

The operator to use for the comparison. The transaction's to field will be on the left-hand side of the operator, and the addresses field will be on the right-hand side.

type: "evmAddress"

The type of criterion to use. This should be evmAddress.