Transaction Failed

Transaction Failed

{{ $error }}

@if($error_code)
Error Code {{ $error_code }}
@endif @if($amount)
Attempted Amount {{ rtrim(sprintf('%.8f', $amount), '0') }} {{ strtoupper($symbol) }}
@endif @if(isset($available_balance))
Available Balance {{ rtrim(sprintf('%.8f', $available_balance), '0') }} {{ strtoupper($symbol) }}
@endif @if($network !== 'native')
Network {{ strtoupper($network) }}
@endif

@switch($error_code) @case('SELF_TRANSFER') You cannot send funds to your own PayID. Please use a different recipient's PayID. @break @case('INSUFFICIENT_FUNDS') The transaction could not be completed due to insufficient funds in your wallet. Please ensure you have enough balance to cover the transaction amount. @break @case('RECIPIENT_NOT_FOUND') The recipient PayID could not be found. Please check the PayID and try again. @break @case('TRANSACTION_FAILED') Your transaction could not be processed at this time. Please try again later. @break @default An unexpected error occurred while processing your transaction. Please try again or contact support if the problem persists. @endswitch