/* This file is part of GNU Taler (C) 2022 Taler Systems S.A. GNU Taler is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Taler; see the file COPYING. If not, see */ import { AmountJson, Amounts, parsePaytoUri, segwitMinAmount, stringifyPaytoUri, TranslatedString, WithdrawalExchangeAccountDetails, } from "@gnu-taler/taler-util"; import { useTranslationContext } from "@gnu-taler/web-util/browser"; import { ComponentChildren, Fragment, h, VNode } from "preact"; import { useEffect, useRef, useState } from "preact/hooks"; import { CopiedIcon, CopyIcon } from "../svg/index.js"; import { Amount } from "./Amount.js"; import { ButtonBox, TooltipLeft, WarningBox } from "./styled/index.js"; import { Button } from "../mui/Button.js"; export interface BankDetailsProps { subject: string; amount: AmountJson; accounts: WithdrawalExchangeAccountDetails[]; } export function BankDetailsByPaytoType({ subject, amount, accounts: unsortedAccounts, }: BankDetailsProps): VNode { const { i18n } = useTranslationContext(); const [index, setIndex] = useState(0); if (!unsortedAccounts.length) { return
the exchange account list is empty
; } const accounts = unsortedAccounts.sort((a, b) => { return (b.priority ?? 0) - (a.priority ?? 0); }); const selectedAccount = accounts[index]; const altCurrency = selectedAccount.currencySpecification?.name; const payto = parsePaytoUri(selectedAccount.paytoUri); if (!payto) return ; payto.params["amount"] = altCurrency ? selectedAccount.transferAmount! : Amounts.stringify(amount); payto.params["message"] = subject; function Frame({ title, children, }: { title: TranslatedString; children: ComponentChildren; }): VNode { return (

{title}

{children} {accounts.length > 1 ? ( {accounts.map((ac, acIdx) => { const accountLabel = ac.bankLabel ?? `Account #${acIdx + 1}`; return ( ); })} {/* */} ) : undefined}
); } if (payto.isKnown && payto.targetType === "bitcoin") { const min = segwitMinAmount(amount.currency); const addrs = payto.segwitAddrs.map( (a) => `${a} ${Amounts.stringifyValue(min)}`, ); addrs.unshift(`${payto.targetPath} ${Amounts.stringifyValue(amount)}`); const copyContent = addrs.join("\n"); return (

The 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.

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

{payto.targetPath} BTC
{payto.segwitAddrs.map((addr, i) => (
{addr} BTC
))}
copyContent} />

Make sure the amount show{" "} {Amounts.stringifyValue(Amounts.sum([amount, min, min]).amount)}{" "} BTC, else you have to change the base unit to BTC

); } const accountPart = !payto.isKnown ? ( ) : payto.targetType === "x-taler-bank" ? ( ) : payto.targetType === "iban" ? ( {payto.bic !== undefined ? ( ) : undefined} ) : undefined; const receiver = payto.params["receiver-name"] || payto.params["receiver"] || undefined; return ( {accountPart} {receiver ? ( ) : undefined} } />
Step 1:   Copy this code and paste it into the subject/purpose field in your banking app or bank website
Step 2:   If you don't already have it in your banking favourites list, then copy and paste this IBAN and the name into the receiver fields in your banking app or website
Step 3:   Finish the wire transfer setting the amount in your banking app or website, then this withdrawal will proceed automatically.
Make sure ALL data is correct, including the subject; otherwise, the money will not arrive in this wallet. You can use the copy buttons () to prevent typing errors or the "payto://" URI below to copy just one value.
Alternative if your bank already supports PayTo URI, you can use this{" "} PayTo URI {" "} link instead stringifyPaytoUri(payto)} />
); } function CopyButton({ getContent }: { getContent: () => string }): VNode { const [copied, setCopied] = useState(false); function copyText(): void { navigator.clipboard.writeText(getContent() || ""); setCopied(true); } useEffect(() => { if (copied) { setTimeout(() => { setCopied(false); }, 1000); } }, [copied]); if (!copied) { return ( ); } return ( ); } function Row({ name, value, literal, }: { name: TranslatedString; value: string | VNode; literal?: boolean; }): VNode { const preRef = useRef(null); const tdRef = useRef(null); function getContent(): string { return preRef.current?.textContent || tdRef.current?.textContent || ""; } return ( {name} {literal ? (
            {value}
          
) : ( {value} )} ); }