Skip to main content
type EvmCall = {
  to: EvmAddress;
  value?: bigint;
  data?: Hex;
};
Represents a call in an EVM user operation.

Properties

PropertyTypeDescription
toEvmAddressThe target address for the call.
value?bigintThe value to send with the call (in wei).
data?HexThe data to send with the call.