Minted (24h)
${{ number_format($statistics['total_minted_24h'] / 100, 0) }}
Burned (24h)
${{ number_format($statistics['total_burned_24h'] / 100, 0) }}
Net Change
@php $netChange = $statistics['total_minted_24h'] - $statistics['total_burned_24h']; @endphp{{ $netChange >= 0 ? '+' : '' }}${{ number_format(abs($netChange) / 100, 0) }}
Collateral Locked
${{ number_format($statistics['collateral_locked'] / 100, 0) }}
Operations Today
{{ $statistics['operations_today'] }}
Pending
{{ $statistics['pending_requests'] }}
| Stablecoin | Total Supply | Collateral Ratio | Status | Actions |
|---|---|---|---|---|
|
{{ $stablecoin['symbol'] }} {{ $stablecoin['name'] }} |
${{ number_format($stablecoin['total_supply'] / 100, 0) }} | {{ $stablecoin['collateral_ratio'] }}% | {{ $stablecoin['active'] ? 'Active' : 'Inactive' }} | @if($stablecoin['active']) Mint Burn @endif |
| Time | Type | Stablecoin | Amount | Operator | Status |
|---|---|---|---|---|---|
| {{ $operation['created_at']->diffForHumans() }} | {{ ucfirst($operation['type']) }} | {{ $operation['stablecoin'] }} | ${{ number_format($operation['amount'], 0) }} | {{ $operation['operator'] }} | {{ ucfirst($operation['status']) }} |
No recent operations
@endif