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

# Mass payout statuses

export const Confirmed = () => <Badge stroke shape="rounded" color="green">Confirmed</Badge>;

export const Pending = () => <Badge stroke shape="rounded" color="yellow">Pending</Badge>;

export const CompletedWithErrors = () => <Badge stroke shape="rounded" color="red">Completed with errors</Badge>;

export const Completed = () => <Badge stroke shape="rounded" color="green">Completed</Badge>;

export const Processing = () => <Badge stroke shape="rounded" color="yellow">Processing</Badge>;

export const TransactionOnModeration = () => <Badge stroke shape="rounded" color="yellow">Transaction on moderation</Badge>;

This section describes the statuses displayed in the merchant dashboard for mass payouts.

<table class="m-0 [&_th]:text-left prose">
  <thead>
    <tr>
      <th>Status</th>
      <th>Description</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        <TransactionOnModeration />
      </td>

      <td>
        Some or all transactions are <Pending /> and require manual moderation by the merchant team.
      </td>
    </tr>

    <tr>
      <td>
        <Processing />
      </td>

      <td>
        Some or all transactions are still <Processing />.
      </td>
    </tr>

    <tr>
      <td>
        <Completed />
      </td>

      <td>
        All transactions are <Confirmed />.
      </td>
    </tr>

    <tr>
      <td>
        <CompletedWithErrors />
      </td>

      <td>
        Some or all transactions failed. See [Retrying failed mass payouts](/mass-payouts/retrying).
      </td>
    </tr>
  </tbody>
</table>
