{{ __('Stablecoin Operations') }}

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

Stablecoins

@foreach($stablecoins as $stablecoin) @endforeach
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

Collateral Status

@foreach($collateral as $asset => $info)
{{ $asset }} {{ number_format($info['utilization'], 1) }}% utilized
Locked: ${{ number_format($info['locked'] / 100, 0) }} Available: ${{ number_format($info['available'] / 100, 0) }}
@endforeach

Recent Operations

View All →
@if($recentOperations->count() > 0)
@foreach($recentOperations as $operation) @endforeach
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']) }}
@else

No recent operations

@endif
@if($pendingRequests->count() > 0)

Pending Requests ({{ $pendingRequests->count() }})

@endif