Compare commits
2 Commits
60cc226d55
...
77880f9bf8
Author | SHA1 | Date | |
---|---|---|---|
77880f9bf8 | |||
e554161864 |
@ -32,6 +32,7 @@
|
|||||||
let realAmount;
|
let realAmount;
|
||||||
let extAccount;
|
let extAccount;
|
||||||
let briefAccount;
|
let briefAccount;
|
||||||
|
let notifyTelegramId;
|
||||||
let encrypt = false;
|
let encrypt = false;
|
||||||
|
|
||||||
$: inputId = payway.iid||payway.id;
|
$: inputId = payway.iid||payway.id;
|
||||||
@ -46,7 +47,9 @@
|
|||||||
$: realAmount = amounts[payway.id] && (
|
$: realAmount = amounts[payway.id] && (
|
||||||
Math.max(Math.min(amounts[payway.id], payway.max),payway.min))
|
Math.max(Math.min(amounts[payway.id], payway.max),payway.min))
|
||||||
|
|
||||||
$: extAccount = accountReady ? (encrypt? "0g" + ecEncrypt(accounts[inputId].padEnd(8)): accounts[inputId]):"";
|
$: extAccount = accountReady ? (encrypt? "0g" +
|
||||||
|
ecEncrypt(((notifyTelegramId ? "-t"+notifyTelegramId+" ":"") +
|
||||||
|
accounts[inputId]).padEnd(8)): accounts[inputId]):"";
|
||||||
|
|
||||||
$: briefAccount = extAccount ? (encrypt ? extAccount.slice(0,28)+"…" : extAccount):""
|
$: briefAccount = extAccount ? (encrypt ? extAccount.slice(0,28)+"…" : extAccount):""
|
||||||
|
|
||||||
@ -173,6 +176,15 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</label>
|
</label>
|
||||||
|
{#if encrypt}
|
||||||
|
<label class="form-label mb-3">Notify Telegram ID (optional):
|
||||||
|
<InputMask placeholder="Get yours with /whoami in @LnToRubBot"
|
||||||
|
class="form-control" inputmode="numeric"
|
||||||
|
bind:value={notifyTelegramId}
|
||||||
|
imask={{mask:/^[0-9]*$/}} />
|
||||||
|
</label>
|
||||||
|
{/if}
|
||||||
|
|
||||||
<label class="form-label mb-3">
|
<label class="form-label mb-3">
|
||||||
Amount: {payway.currency} {payway.min} – {payway.max}
|
Amount: {payway.currency} {payway.min} – {payway.max}
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
@ -197,6 +209,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</label>
|
</label>
|
||||||
{/key}
|
{/key}
|
||||||
|
|
||||||
<label class="form-label mb-3">Lnurl MEMO
|
<label class="form-label mb-3">Lnurl MEMO
|
||||||
<input bind:value={memo} placeholder="{autoMemo}"
|
<input bind:value={memo} placeholder="{autoMemo}"
|
||||||
class="form-control"/>
|
class="form-control"/>
|
||||||
|
@ -66,7 +66,7 @@ export default [
|
|||||||
{"name":"💳 🇷🇺 RUB ₽ Visa/MC/Mir",
|
{"name":"💳 🇷🇺 RUB ₽ Visa/MC/Mir",
|
||||||
"currency":"RUB",
|
"currency":"RUB",
|
||||||
"min":500,
|
"min":500,
|
||||||
"max":10000,
|
"max":15000,
|
||||||
"acc":"Card number",
|
"acc":"Card number",
|
||||||
"imask":masks.cc,
|
"imask":masks.cc,
|
||||||
"iid":"cc",
|
"iid":"cc",
|
||||||
|
Loading…
Reference in New Issue
Block a user