Skip to content
Open
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
4 changes: 2 additions & 2 deletions description.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Convert between Lightning and onchain Bitcoin while keeping full control of your
**What you can do:**

- **Receive from onchain** (Swap IN): Convert your onchain Bitcoin to Lightning for instant payments
- **Send to Bitcoin address** (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 cash out**: Automatically convert Lightning to onchain when your balance reaches a set amount
- **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

**Supported networks:** Liquid, Lightning and Bitcoin onchain (mainnet)
Expand Down
5 changes: 4 additions & 1 deletion templates/boltz/_autoReverseSwapDialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,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 @@ -104,7 +107,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 @@ -20,8 +20,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 @@ -91,7 +94,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 @@ -20,8 +20,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