Address Information

Blockchain

{{ $supportedChains[$address->chain]['name'] }}

Address

{{ $address->address }}

Status

{{ $address->is_active ? 'Active' : 'Inactive' }}

Created

{{ $address->created_at->format('M d, Y H:i') }}

Balance

@if(isset($balance['error']))

Error loading balance

@else

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

@if($balance['pending'] > 0)

Pending

+{{ number_format($balance['pending'], 8) }} {{ $supportedChains[$address->chain]['symbol'] }}

@endif
@endif

Receive {{ $supportedChains[$address->chain]['symbol'] }}

Share this address to receive {{ $supportedChains[$address->chain]['symbol'] }}

{{ $address->address }}

Transaction Statistics

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) }}

Recent Transactions

@if($transactions->isEmpty())

No transactions yet

@else
@foreach($transactions as $transaction) @endforeach
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
{{ $transactions->links() }}
@endif
@push('scripts') @endpush