{% extends 'base.html' %} {% block title %}{{ _('Verify Round') }} #{{ game_round.id }}{% endblock %} {% block content %}

{{ _('Verify Round') }} #{{ game_round.id }}

{{ _('Round Details') }}

{{ "%.2f"|format(game_round.crash_point) }}x
{{ game_round.round_hash }}
{{ game_round.server_seed }}
{{ game_round.total_bets }}
{{ "{:,.0f}".format(game_round.total_wagered) }} XAF
{{ "{:,.0f}".format(game_round.total_won) }} XAF
{{ game_round.crashed_at.strftime('%d/%m/%Y %H:%M:%S') if game_round.crashed_at else '-' }}

{{ _('How to Verify') }}

  1. {{ _('Copy the Server Seed above') }}
  2. {{ _('Hash it using SHA-256 (use any online tool)') }}
  3. {{ _('The result should match the Round Hash') }}
  4. {{ _('Use our verification tool to calculate the crash point') }}
{% endblock %}