> ## 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.

# MFA_PROTECTED_ACTIONS

```ts theme={null}
const MFA_PROTECTED_ACTIONS: (
  | "signEvmHash"
  | "signEvmTransaction"
  | "signSolanaTransaction"
  | "sendEvmTransaction"
  | "sendSolanaTransaction"
  | "signEvmMessage"
  | "signSolanaMessage"
  | "signEvmTypedData"
  | "sendUserOperation"
  | "exportEvmAccount"
  | "exportSolanaAccount"
  | "createEvmKeyExportIframe"
  | "createSolanaKeyExportIframe")[];
```

List of action names that require MFA verification when the user is enrolled.

These actions involve sensitive operations like signing transactions,
sending funds, or exporting private keys.

## Example

```typescript theme={null}
import { MFA_PROTECTED_ACTIONS } from '@coinbase/cdp-core';

console.log(MFA_PROTECTED_ACTIONS);
// ['signEvmHash', 'signEvmTransaction', 'signSolanaTransaction', ...]
```
