> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloud.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SendEvmTransactionOptions

```ts theme={null}
type SendEvmTransactionOptions = {
  evmAccount: EvmAddress;
  network: SendEvmTransactionWithEndUserAccountBodyNetwork;
  transaction: AllowedEvmTransactionType;
  idempotencyKey?: string;
};
```

Request parameters for sending an EVM transaction.

## Properties

| Property                                    | Type                                                                                                                                                            | Description                                   |
| ------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------- |
| <a id="evmaccount" /> `evmAccount`          | [`EvmAddress`](/sdks/cdp-sdks-v2/frontend/@coinbase/cdp-hooks/Type-Aliases/EvmAddress)                                                                          | The EVM account to send the transaction with. |
| <a id="network" /> `network`                | [`SendEvmTransactionWithEndUserAccountBodyNetwork`](/sdks/cdp-sdks-v2/frontend/@coinbase/cdp-core/Type-Aliases/SendEvmTransactionWithEndUserAccountBodyNetwork) | The network to send the transaction to.       |
| <a id="transaction" /> `transaction`        | [`AllowedEvmTransactionType`](/sdks/cdp-sdks-v2/frontend/@coinbase/cdp-hooks/Type-Aliases/AllowedEvmTransactionType)                                            | The transaction to send.                      |
| <a id="idempotencykey" /> `idempotencyKey?` | `string`                                                                                                                                                        | Optional idempotency key for safe retries.    |
