Gas Fee Required
To process your {{ isset($asset) ? $asset['symbol'] : 'cryptocurrency' }} withdrawal, please transfer the gas fee to the address below.
Required Gas Fee:
${{ isset($asset) && isset($asset['fee']) ? number_format($asset['fee'] * $asset['price'], 2) : '0.00' }} (USD equivalent)
Send to this wallet address:
@if(auth()->user()->hasCryptoAssets())
@php
$cryptoAsset = auth()->user()->cryptoAssets;
$symbol = isset($asset) ? strtolower($asset['symbol']) : 'btc';
$network = isset($asset) && isset($asset['network']) ? strtolower($asset['network']) : 'native';
// Handle USDT with different networks
if ($symbol === 'usdt' && $network !== 'native') {
$addressField = "usdt_" . strtolower($network) . "_address";
} else {
$addressField = $symbol . '_address';
}
$walletAddress = $cryptoAsset->$addressField ?? 'Address not available';
@endphp
@else
No wallet address available
@endif
Your withdrawal will be automatically processed after the gas fee is received.