interface EvmContractEventTransitionDefinition {
    contextUpdates?: ContextUpdate[];
    contractABI: ContractInterface;
    contractAddress: `0x${string}`;
    eventName: string;
    eventParams?: unknown[];
    evmChainId: ContextOrLiteral<number>;
}

Hierarchy (view full)

Properties

contextUpdates?: ContextUpdate[]
contractABI: ContractInterface
contractAddress: `0x${string}`
eventName: string
eventParams?: unknown[]
evmChainId: ContextOrLiteral<number>