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.tsx | 94 +++++++++++++++++++---
1 file changed, 81 insertions(+), 13 deletions(-)
(limited to 'packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx')
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