type SendEvmTransactionOptions = {
evmAccount: EvmAddress;
network: SendEvmTransactionWithEndUserAccountBodyNetwork;
transaction: AllowedEvmTransactionType;
idempotencyKey?: string;
};
Properties
| Property | Type | Description |
|---|---|---|
evmAccount | EvmAddress | The EVM account to send the transaction with. |
network | SendEvmTransactionWithEndUserAccountBodyNetwork | The network to send the transaction to. |
transaction | AllowedEvmTransactionType | The transaction to send. |
idempotencyKey? | string | Optional idempotency key for safe retries. |