Skip to main content
type SendEvmTransactionOptions = {
  evmAccount: EvmAddress;
  network: SendEvmTransactionWithEndUserAccountBodyNetwork;
  transaction: AllowedEvmTransactionType;
  idempotencyKey?: string;
};
Request parameters for sending an EVM transaction.

Properties

PropertyTypeDescription
evmAccountEvmAddressThe EVM account to send the transaction with.
networkSendEvmTransactionWithEndUserAccountBodyNetworkThe network to send the transaction to.
transactionAllowedEvmTransactionTypeThe transaction to send.
idempotencyKey?stringOptional idempotency key for safe retries.