{{ __('Transaction Details') }}

Transaction Status

@if($transaction->status === 'confirmed') Confirmed @elseif($transaction->status === 'pending') Pending @else Failed @endif
@if($transaction->status === 'pending' && isset($blockchainData['confirmations'])) @php $requiredConfirmations = $transaction->chain === 'bitcoin' ? 6 : 12; $currentConfirmations = $blockchainData['confirmations'] ?? 0; $progress = min(100, ($currentConfirmations / $requiredConfirmations) * 100); @endphp
Confirmations {{ $currentConfirmations }} / {{ $requiredConfirmations }}
@endif

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

@if($transaction->metadata && isset($transaction->metadata['memo']))

Memo

{{ $transaction->metadata['memo'] }}

@endif

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'] }}

@if(isset($blockchainData['block_height']))

Block Height

{{ number_format($blockchainData['block_height']) }}

@endif @if(isset($blockchainData['gas_used']) && $transaction->chain === 'ethereum')

Gas Used

{{ number_format($blockchainData['gas_used']) }}

@endif

Transaction Flow

From

{{ $transaction->from_address }}

@if($transaction->address->address === $transaction->from_address)

Your Address ({{ $transaction->address->label }})

@endif

To

{{ $transaction->to_address }}

@if($transaction->address->address === $transaction->to_address)

Your Address ({{ $transaction->address->label }})

@endif
@push('scripts') @endpush