{{ __('GCU Composition Voting') }}

GCU Composition Voting

Vote on monthly proposals to optimize the Global Currency Unit basket

@auth

Your Voting Power

1 GCU = 1 Vote

{{ number_format($gcuBalance, 2) }} Ǥ

Available votes

@else

Login to participate in GCU governance voting.

@endauth @if($activeProposals->count() > 0)

Active Proposals

@foreach($activeProposals as $proposal)

{{ $proposal->title }}

{{ Str::limit($proposal->description, 200) }}

Participation {{ number_format($proposal->participation_rate, 1) }}% (Min: {{ $proposal->minimum_participation }}%)
Approval {{ number_format($proposal->approval_rate, 1) }}% (Min: {{ $proposal->minimum_approval }}%)
Ends {{ $proposal->time_remaining }}
View & Vote
@endforeach
@endif @if($upcomingProposals->count() > 0)

Upcoming Proposals

@foreach($upcomingProposals as $proposal)

{{ $proposal->title }}

{{ Str::limit($proposal->description, 100) }}

Starts {{ $proposal->voting_starts_at->diffForHumans() }} Preview →
@endforeach
@endif @if($pastProposals->count() > 0)

Past Proposals

@foreach($pastProposals as $proposal) @endforeach
Proposal Result Participation Approval Date View
{{ $proposal->title }}
@if($proposal->status === 'implemented') Implemented @elseif($proposal->status === 'rejected') Rejected @else Closed @endif {{ number_format($proposal->participation_rate, 1) }}% {{ number_format($proposal->approval_rate, 1) }}% {{ $proposal->voting_ends_at->format('M d, Y') }} View
@endif