# parseDeferredAction

> Overview of the parseDeferredAction function

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
function parseDeferredAction(deferredAction): object;
```

Defined in: [packages/smart-accounts/src/ma-v2/utils/deferredActions.ts:17](https://github.com/alchemyplatform/aa-sdk/blob/v5.x.x/packages/smart-accounts/src/ma-v2/utils/deferredActions.ts#L17)

Parses out the 3 components from a deferred action.

## Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
      <th align="left">Description</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `deferredAction`
      </td>

      <td>
        `` `0x${string}` ``
      </td>

      <td>
        The deferred action to parse.
      </td>
    </tr>

  </tbody>
</table>

## Returns

`object`

The parsed deferred action.

<table>
  <thead>
    <tr>
      <th align="left">Name</th>
      <th align="left">Type</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `deferredActionData`
      </td>

      <td>
        `` `0x${string}` ``
      </td>
    </tr>

    <tr>
      <td>
        `entityId`
      </td>

      <td>
        `number`
      </td>
    </tr>

    <tr>
      <td>
        `hasAssociatedExecHooks`
      </td>

      <td>
        `boolean`
      </td>
    </tr>

    <tr>
      <td>
        `isGlobalValidation`
      </td>

      <td>
        `boolean`
      </td>
    </tr>

    <tr>
      <td>
        `nonce`
      </td>

      <td>
        `bigint`
      </td>
    </tr>

  </tbody>
</table>