{% extends "base.html" %} {% block title %} - Payout Proof for output #{{ payout.index }} on Monero block {{ block.main.height }}{% endblock %} {% block content %}

Payout Proof for output #{{ payout.index }} on Monero block {{ block.main.height }}

{% if payout.alias != "" %}

Payout Address: {{ payout.alias }} ({{ payout.address }})

{% else %}

Payout Address: {{ payout.address }}

{% endif %}

Received {{ monero_to_xmr(payout.amount) }} XMR on transaction id {{ block.coinbase.id }} (output index #{{ payout.index }}).

{{ add_uint(sub_int(pool.mainchain.height, block.main.height), 1) }} confirmation(s). Coinbase outputs will unlock after 60 confirmations.

Stealth Address: {{ get_ephemeral_pubkey(payout.address, block.coinbase.private_key, payout.index) }}


Payment Proofs

Transaction Private Key: {{ block.coinbase.private_key }}

Verify on Monero CLI: check_tx_proof {{ block.coinbase.id }} {{ payout.address }} {{ block.coinbase.private_key }}

Verify on LocalMonero
Verify on Explore Monero
Verify on Monero.com

OutProofV2: {{ get_tx_proof(payout.address, block.coinbase.id, block.coinbase.private_key) }}

OutProofV1: {{ get_tx_proof_v1(payout.address, block.coinbase.id, block.coinbase.private_key) }}

Verify on Monero GUI (Advanced -> Prove/check -> Check Transaction)

{% endblock %}