NON CUSTODIAL atomic swap service

Providing trustless and account-free swap services since 2018. Move IN and OUT of the lightning network and remain in control of your bitcoin, at all time.

Link: https://boltz.exchange
README: read more

Extension created by, dni

Fee Information

{% raw %} Every swap consists of 2 onchain transactions, lockup and claim / refund, routing fees and a Boltz fee of {{ boltzConfig.fee_percentage }}%. {% endraw %}
{% raw %} You want to swap out {{ boltzExample.amount }} sats, Lightning to Onchain:
  • Onchain lockup tx fee: ~{{ boltzExample.onchain_boltz }} sats
  • Onchain claim tx fee: {{ boltzExample.onchain_lnbits }} sats (hardcoded)
  • Routing fees (paid by you): unknown
  • Boltz fees: {{ boltzExample.boltz_fee }} sats ({{ boltzConfig.fee_percentage }}%)
  • Fees total: {{ boltzExample.reverse_fee_total }} sats + routing fees
  • You receive: {{ boltzExample.reverse_receive }} sats

onchain_amount_received = amount - (amount * boltz_fee / 100) - lockup_fee - claim_fee

{% endraw %}
{% raw %} You want to swap in {{ boltzExample.amount }} sats, Onchain to Lightning:
  • Onchain lockup tx fee: whatever you choose when paying
  • Onchain claim tx fee: ~{{ boltzExample.onchain_boltz }} sats
  • Routing fees (paid by boltz): unknown
  • Boltz fees: {{ boltzExample.boltz_fee }} sats ({{ boltzConfig.fee_percentage }}%)
  • Fees total: {{ boltzExample.normal_fee_total }} sats + lockup_fee
  • You pay onchain: {{ boltzExample.normal_expected_amount }} sats + lockup_fee
  • You receive lightning: {{ boltzExample.amount }} sats

onchain_payment = amount + (amount * boltz_fee / 100) + claim_fee

{% endraw %}