Blockchain
{{ $supportedChains[$address->chain]['name'] }}
Address
{{ $address->address }}
Status
{{ $address->is_active ? 'Active' : 'Inactive' }}Created
{{ $address->created_at->format('M d, Y H:i') }}
Error loading balance
Available Balance
{{ number_format($balance['available'], 8) }} {{ $supportedChains[$address->chain]['symbol'] }}
@php $symbol = $supportedChains[$address->chain]['symbol']; $usdRate = $usdRates[$symbol] ?? null; $usdValue = $usdRate !== null ? $balance['available'] * $usdRate : null; @endphp@if($usdValue !== null) ≈ ${{ number_format($usdValue, 2) }} USD @else Rate unavailable @endif
Pending
+{{ number_format($balance['pending'], 8) }} {{ $supportedChains[$address->chain]['symbol'] }}
Share this address to receive {{ $supportedChains[$address->chain]['symbol'] }}
{{ $address->address }}
Total Transactions
{{ $statistics['total_transactions'] }}
Total Received
{{ number_format($statistics['total_received'], 8) }}
Total Sent
{{ number_format($statistics['total_sent'], 8) }}
Total Fees
{{ number_format($statistics['total_fees'], 8) }}
No transactions yet
| Date | Type | Amount | Status | Hash | Action |
|---|---|---|---|---|---|
| {{ $transaction->created_at->format('M d, H:i') }} | {{ ucfirst($transaction->type) }} | {{ $transaction->type === 'send' ? '-' : '+' }}{{ number_format($transaction->amount, 8) }} | @if($transaction->status === 'confirmed') Confirmed @elseif($transaction->status === 'pending') Pending @else Failed @endif | {{ substr($transaction->tx_hash, 0, 10) }}... | View |