{% if swap.wow_to_xmr %} {% set receive_coin = 'WOW' %} {% set send_coin = 'XMR' %} {% set receive_amount = swap.receive_amount_atomic | from_atomic_wow %} {% set send_amount = swap.send_amount_atomic | from_atomic_xmr %} {% set fee_amount = swap.fee_amount_atomic | from_atomic_xmr %} {% set fee_value = ((fee_amount) * (swap.xmr_price_ausd | from_atomic_usd)) | round(4) %} {% set swap_value = ((receive_amount) * (swap.wow_price_ausd | from_atomic_usd)) | round(4) %} {% else %} {% set receive_coin = 'XMR' %} {% set send_coin = 'WOW' %} {% set receive_amount = swap.receive_amount_atomic | from_atomic_xmr %} {% set send_amount = swap.send_amount_atomic | from_atomic_wow %} {% set fee_amount = swap.fee_amount_atomic | from_atomic_wow %} {% set fee_value = (fee_amount) * (swap.wow_price_ausd | from_atomic_usd) | round(4) %} {% set swap_value = (receive_amount) * (swap.xmr_price_ausd | from_atomic_usd) | round(4) %} {% endif %} {% include 'includes/head.html' %}
{% include 'includes/header.html' %}

Swap Details

Your swap ID is {{ swap.id }}. Use this ID to check back in on the status of the swap.

{% if not swap.funds_received and not swap.completed %}

You will be receiving {{ send_amount }} {{ send_coin }} (${{ swap_value }}) to the {{ send_coin }} address below when funds are received. I will be withholding {{ fee_amount }} {{ send_coin }} (${{ fee_value }}) as a service fee.

Double-check the details below are correct and send {{ receive_amount }} {{ receive_coin }} to {{ swap.swap_address }} to initiate the swap.

{% if txes.in %}

Found Transactions!

    {% for tx in txes.in %}
  • {% if swap.wow_to_xmr %} {{ tx.txid }} - {{ tx.amount | from_atomic_wow }} {% else %} {{ tx.txid }} - {{ tx.amount | from_atomic_xmr }} {% endif %} - {{ tx.confirmations }} confirmations
  • {% endfor %}
{% endif %}

Your WOW Address:
{{ swap.return_wow_address }}

Your XMR Address:
{{ swap.return_xmr_address }}

{% elif swap.funds_received and not swap.completed %}

Incoming {{ receive_coin }} funds have been confirmed! Your {{ send_coin }} funds should be sent soon.

{% endif %} {% if swap.send_tx_id %}

Outgoing {{ send_coin }} funds have been sent! Tx ID: {% if swap.wow_to_xmr %} {{ swap.send_tx_id }} {% else %} {{ swap.send_tx_id }} {% endif %}

No further action is required; you can close this tab. Thanks for using the service!

{% endif %}

Need Help?

You can contact me for support at the links in the footer below. Please provide your swap ID.

If you'd like to cancel the swap and have not sent funds, simply do nothing and the swap will be deleted after several days of inactivity.

{% include 'includes/footer.html' %}
{% include 'includes/scripts.html' %} {% if config.DEBUG %} {% endif %}