Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions description.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ Swap in and out of the Lightning Network while maintaining full control of your

Its functions include:

- Swapping on-chain Bitcoin to Lightning (swap in)
- Swapping Lightning to on-chain Bitcoin (swap out)
- Supporting Liquid Network swaps
- Handling refunds in case of failed swaps
- **Receive from onchain** (Swap IN): Convert your onchain Bitcoin to Lightning for instant payments
- **Send to Onchain** (Swap OUT): Convert Lightning funds to onchain Bitcoin you can send to cold storage, exchanges, or service providers that don't use Lightning yet (e.g., Revolut)
- **Auto Sweep to Onchain**: Automatically convert Lightning to onchain when your balance reaches a set amount
- **Get refunds**: If anything goes wrong, your funds are automatically returned to you

An essential liquidity tool for anyone who needs to move funds between Lightning, on-chain, and Liquid without relying on custodial exchanges.
5 changes: 4 additions & 1 deletion templates/boltz/_autoReverseSwapDialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
filled
dense
emit-value
map-options
v-model="autoReverseSubmarineSwapDialog.data.asset"
:options="assetOptions"
option-value="value"
option-label="label"
label="Asset"
>
</q-select>
Expand Down Expand Up @@ -105,7 +108,7 @@
color="primary"
:disable="disableAutoReverseSubmarineSwapDialog()"
type="submit"
label="Enable Auto Cash Out"
label="Enable Auto Sweep"
></q-btn>
<q-btn
v-close-popup
Expand Down
4 changes: 2 additions & 2 deletions templates/boltz/_buttons.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</q-tooltip>
</q-btn>
<q-btn
label="Send to Bitcoin address"
label="Send to Onchain"
unelevated
color="primary"
@click="openReverseSubmarineSwapDialog()"
Expand All @@ -22,7 +22,7 @@
</q-tooltip>
</q-btn>
<q-btn
label="Auto Cash Out to Bitcoin"
label="Auto Sweep to Onchain"
unelevated
color="primary"
@click="openAutoReverseSubmarineSwapDialog()"
Expand Down
8 changes: 5 additions & 3 deletions templates/boltz/_info_sections.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,13 @@ <h6 class="q-my-sm"><b>Lightning to Onchain (Swap OUT)</b></h6>
yet.
</p>

<h6 class="q-my-sm"><b>Auto Cash Out (Automatic Swap OUT)</b></h6>
<h6 class="q-my-sm">
<b>Auto Sweep to Onchain (Automatic Swap OUT)</b>
</h6>
<p>
Set up automatic conversions from Lightning to onchain when your
balance reaches a certain amount. Great for regular cash-outs
without manual intervention.
balance reaches a certain amount. Great for regular sweeps to
onchain without manual intervention.
</p>
</q-card-section>
</q-card>
Expand Down
5 changes: 4 additions & 1 deletion templates/boltz/_reverseSubmarineSwapDialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
filled
dense
emit-value
map-options
v-model="reverseSubmarineSwapDialog.data.asset"
:options="assetOptions"
option-value="value"
option-label="label"
label="Asset"
>
</q-select>
Expand Down Expand Up @@ -92,7 +95,7 @@
color="primary"
:disable="disableReverseSubmarineSwapDialog()"
type="submit"
label="Send to Bitcoin address"
label="Send to Onchain"
></q-btn>
<q-btn
v-close-popup
Expand Down
3 changes: 3 additions & 0 deletions templates/boltz/_submarineSwapDialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
filled
dense
emit-value
map-options
v-model="submarineSwapDialog.data.asset"
:options="assetOptions"
option-value="value"
option-label="label"
label="Asset"
>
</q-select>
Expand Down
5 changes: 4 additions & 1 deletion templates/boltz/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@
{value: 'send', label: 'Send specified Amount'},
{value: 'receive', label: 'Receive specified Amount'}
],
assetOptions: ['BTC/BTC', 'L-BTC/BTC'],
assetOptions: [
{value: 'BTC/BTC', label: 'Onchain Bitcoin'},
{value: 'L-BTC/BTC', label: 'Liquid Bitcoin'}
],
submarineSwapDialog: {
show: false,
data: {
Expand Down
Loading