From 932e0c891dc247bd37db7a38c9e432335eceb863 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 3 Mar 2022 10:58:15 -0300 Subject: bitcoin manual withdraw when exchange has btc currency --- .../src/wallet/ReserveCreated.stories.tsx | 12 +++ .../src/wallet/ReserveCreated.tsx | 94 +++++++++++++++++++--- 2 files changed, 93 insertions(+), 13 deletions(-) (limited to 'packages/taler-wallet-webextension/src') diff --git a/packages/taler-wallet-webextension/src/wallet/ReserveCreated.stories.tsx b/packages/taler-wallet-webextension/src/wallet/ReserveCreated.stories.tsx index 8d7b65b3c..16ce6120a 100644 --- a/packages/taler-wallet-webextension/src/wallet/ReserveCreated.stories.tsx +++ b/packages/taler-wallet-webextension/src/wallet/ReserveCreated.stories.tsx @@ -51,3 +51,15 @@ export const IBAN = createExample(TestedComponent, { }, exchangeBaseUrl: "https://exchange.demo.taler.net", }); + +export const Bitcoin = createExample(TestedComponent, { + reservePub: "0ZSX8SH0M30KHX8K3Y1DAMVGDQV82XEF9DG1HC4QMQ3QWYT4AF00", + payto: + "payto://bitcoin/bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4?amount=BTC:0.1&subject=0ZSX8SH0M30KHX8K3Y1DAMVGDQV82XEF9DG1HC4QMQ3QWYT4AF00", + amount: { + currency: "BTC", + value: 0, + fraction: 14000000, + }, + exchangeBaseUrl: "https://exchange.demo.taler.net", +}); diff --git a/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx b/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx index 2c0e2fd31..08326f828 100644 --- a/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx +++ b/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx @@ -1,4 +1,11 @@ -import { AmountJson, parsePaytoUri, i18n } from "@gnu-taler/taler-util"; +import { + AmountJson, + parsePaytoUri, + i18n, + generateSegwitAddress, + Amounts, + segwitMinAmount, +} from "@gnu-taler/taler-util"; import { Fragment, h, VNode } from "preact"; import { BankDetailsByPaytoType } from "../components/BankDetailsByPaytoType"; import { QR } from "../components/QR"; @@ -30,18 +37,62 @@ export function ReserveCreated({ ); } - return ( - + function TransferDetails(): VNode { + if (!paytoURI) return ; + if (paytoURI.targetType === "bitcoin") { + const { segwitAddr1, segwitAddr2 } = generateSegwitAddress(reservePub); + const min = segwitMinAmount(); + return ( +
+

+ + Bitcoin exchange need a transaction with 3 output, one output is + the exchange account and the other two are segwit fake address for + metadata with an minimum amount. Reserve pub : {reservePub} + +

+

+ + In bitcoincore wallet use 'Add Recipient' button to add two + additional recipient and copy adresses and amounts + +

    +
  • + {paytoURI.targetPath} {Amounts.stringifyValue(amount)} BTC +
  • +
  • + {segwitAddr1} {Amounts.stringifyValue(min)} BTC +
  • +
  • + {segwitAddr2} {Amounts.stringifyValue(min)} BTC +
  • +
+ + In Electrum wallet paste the following three lines in 'Pay to' + field : + +
    +
  • + {paytoURI.targetPath},{Amounts.stringifyValue(amount)} +
  • +
  • + {segwitAddr1},{Amounts.stringifyValue(min)} +
  • +
  • + {segwitAddr2},{Amounts.stringifyValue(min)} +
  • +
+ + Make sure the amount show{" "} + {Amounts.stringifyValue(Amounts.sum([amount, min, min]).amount)}{" "} + BTC, else you have to change the base unit to BTC + +

+
+ ); + } + return (
-

- Exchange is ready for withdrawal -

-

- - To complete the process you need to wire - {amountToString(amount)} to the exchange bank account - -

+ ); + } + + return ( + +
+

+ Exchange is ready for withdrawal +

+

+ + To complete the process you need to wire{` `} + {amountToString(amount)} to the exchange bank account + +

+
+

- Alternative, you can also scan this QR code or open + Alternative, you can also scan this QR code or open{" "} this link if you have a banking app installed that supports RFC 8905 -- cgit v1.2.3