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

# Deposit statuses

export const Cancelled = () => <Badge stroke shape="rounded" color="red">Cancelled</Badge>;

export const Failed = () => <Badge stroke shape="rounded" color="red">Failed</Badge>;

export const Rejected = () => <Badge stroke shape="rounded" color="red">Rejected</Badge>;

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

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

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

This section describes the statuses displayed in the merchant dashboard for deposits.

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

  <tbody>
    { 'true' === 'true' && <tr><td>
        <Verifying/>
        </td><td>

        The transaction is being automatically checked for compliance.<br/>

        Based on the automated check results, the status will change to <Processing/> or <Rejected/>.


        </td></tr> }

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

      <td>
        The transaction is waiting for the required [number of confirmations](/confirmations-and-limits).<br />

        Once it gets the confirmations, the transaction will become <Confirmed />.
      </td>
    </tr>

    <tr>
      <td>
        <Confirmed />
      </td>

      <td>
        The transaction got the required [number of confirmations](/confirmations-and-limits). The funds are credited to the merchant's balance.
      </td>
    </tr>

    { 'true' === 'true' && <tr><td>
        <Rejected/>
        </td><td>

        The transaction is rejected after the compliance check.


        </td></tr> }

    <tr>
      <td>
        <Failed />
      </td>

      <td>
        The transaction cannot be completed. The specific error is shown in the transaction's details panel on the **Transactions** tab.<br />

        One possible error is *"Deposited funds less than the lower limit"*, which refers to the minimum withdrawal limit from [Confirmations and limits](/confirmations-and-limits).
      </td>
    </tr>

    <tr>
      <td>
        <Cancelled />
      </td>

      <td>
        The transaction was cancelled by CryptoProcessing due to some other error. The specific error is shown in the transaction's details panel on the **Transactions** tab.
      </td>
    </tr>
  </tbody>
</table>
