A schema for specifying a criterion for the intended network of an EVM transaction.

interface EvmNetworkCriterion {
    networks: EvmNetworkCriterionNetworksItem[];
    operator: EvmNetworkCriterionOperator;
    type: "evmNetwork";
}

Properties

A list of EVM network identifiers that the transaction's intended network should be compared to.

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

type: "evmNetwork"

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