{{ __('Stablecoin Operation History') }}

← Back to Operations
@if($summary)

Total Operations

{{ number_format($summary['total_operations']) }}

Mint Operations

{{ number_format($summary['mint_operations']) }}

Burn Operations

{{ number_format($summary['burn_operations']) }}

Total Minted

${{ number_format($summary['total_minted'] / 100, 2) }}

Total Burned

${{ number_format($summary['total_burned'] / 100, 2) }}

Net Supply Change

{{ $summary['net_supply_change'] >= 0 ? '+' : '' }}${{ number_format(abs($summary['net_supply_change']) / 100, 2) }}

@endif
@if($operations->isEmpty())

No operations found matching the selected filters.

@else
@foreach($operations as $operation) @endforeach
Date/Time Type Stablecoin Amount Collateral Operator Reason Status Actions
{{ \Carbon\Carbon::parse($operation['created_at'])->format('Y-m-d H:i:s') }} {{ ucfirst($operation['type']) }} {{ $operation['stablecoin'] }} ${{ number_format($operation['amount'] / 100, 2) }} @if($operation['type'] === 'mint') {{ number_format($operation['collateral_amount'] / 100, 2) }} {{ $operation['collateral_asset'] }} @elseif($operation['return_collateral'] ?? false) {{ number_format($operation['collateral_return'], 2) }} {{ $operation['collateral_asset'] }} @else - @endif {{ $operation['operator'] }} {{ $operation['reason'] }} {{ ucfirst($operation['status']) }}
@endif