Transaction Hash
{{ $transaction->tx_hash }}
Type
{{ ucfirst($transaction->type) }}
Blockchain
{{ $supportedChains[$transaction->chain]['name'] }}
Date & Time
{{ $transaction->created_at->format('M d, Y H:i:s') }}
Memo
{{ $transaction->metadata['memo'] }}
Amount
{{ $transaction->type === 'send' ? '-' : '+' }}{{ number_format($transaction->amount, 8) }} {{ $supportedChains[$transaction->chain]['symbol'] }}
@php $usdRate = $supportedChains[$transaction->chain]['symbol'] === 'BTC' ? 30000 : ($supportedChains[$transaction->chain]['symbol'] === 'ETH' ? 2000 : 1); $usdValue = $transaction->amount * $usdRate; @endphp≈ ${{ number_format($usdValue, 2) }} USD at time of transaction
Network Fee
{{ number_format($transaction->fee, 8) }} {{ $supportedChains[$transaction->chain]['symbol'] }}
Block Height
{{ number_format($blockchainData['block_height']) }}
Gas Used
{{ number_format($blockchainData['gas_used']) }}
From
{{ $transaction->from_address }}
Your Address ({{ $transaction->address->label }})
@endifTo
{{ $transaction->to_address }}
Your Address ({{ $transaction->address->label }})
@endif