refactor payto and test
This commit is contained in:
parent
b90a4a66dc
commit
37ce3972f9
53
packages/taler-util/src/bitcoin.test.ts
Normal file
53
packages/taler-util/src/bitcoin.test.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
This file is part of GNU Taler
|
||||||
|
(C) 2018-2019 GNUnet e.V.
|
||||||
|
|
||||||
|
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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type-safe codecs for converting from/to JSON.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import test from "ava";
|
||||||
|
import {
|
||||||
|
generateFakeSegwitAddress,
|
||||||
|
} from "./bitcoin.js";
|
||||||
|
|
||||||
|
test("generate testnet", (t) => {
|
||||||
|
const { addr1, addr2 } = generateFakeSegwitAddress("B9E0EXNDKGJX7WFAEVZCZXM0R661T66YWD71N7NRFDEWQEV10XSG", "tb1qhxrhccqexg0dv4nltgkuw4fg2ce7muplmjsn0v")
|
||||||
|
|
||||||
|
t.assert(addr1 === "tb1qtfwqwaj6tsrhdtvuyhflr6nklm8ldqxpf0lfjw");
|
||||||
|
t.assert(addr2 === "tb1qmfwqwa5vr5vdac6wr20ts76aewakzpmns40yuf");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("generate mainnet", (t) => {
|
||||||
|
const { addr1, addr2 } = generateFakeSegwitAddress("B9E0EXNDKGJX7WFAEVZCZXM0R661T66YWD71N7NRFDEWQEV10XSG", "bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq")
|
||||||
|
//bc
|
||||||
|
t.assert(addr1 === "bc1qtfwqwaj6tsrhdtvuyhflr6nklm8ldqxprfy6fa");
|
||||||
|
t.assert(addr2 === "bc1qmfwqwa5vr5vdac6wr20ts76aewakzpmn6n5h86");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("generate Regtest", (t) => {
|
||||||
|
const { addr1, addr2 } = generateFakeSegwitAddress("B9E0EXNDKGJX7WFAEVZCZXM0R661T66YWD71N7NRFDEWQEV10XSG", "bcrtqhxrhccqexg0dv4nltgkuw4fg2ce7muplmjsn0v")
|
||||||
|
|
||||||
|
t.assert(addr1 === "bcrt1qtfwqwaj6tsrhdtvuyhflr6nklm8ldqxptxxy98");
|
||||||
|
t.assert(addr2 === "bcrt1qmfwqwa5vr5vdac6wr20ts76aewakzpmnjukftq");
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
test("unknown net", (t) => {
|
||||||
|
t.throws(() => {
|
||||||
|
generateFakeSegwitAddress("B9E0EXNDKGJX7WFAEVZCZXM0R661T66YWD71N7NRFDEWQEV10XSG", "abqhxrhccqexg0dv4nltgkuw4fg2ce7muplmjsn0v")
|
||||||
|
})
|
||||||
|
|
||||||
|
});
|
@ -23,7 +23,7 @@
|
|||||||
* Imports.
|
* Imports.
|
||||||
*/
|
*/
|
||||||
import { AmountJson, Amounts } from "./amounts.js";
|
import { AmountJson, Amounts } from "./amounts.js";
|
||||||
import { getRandomBytes, decodeCrock } from "./talerCrypto.js";
|
import { decodeCrock } from "./talerCrypto.js";
|
||||||
import * as segwit from "./segwit_addr.js";
|
import * as segwit from "./segwit_addr.js";
|
||||||
|
|
||||||
export interface SegwitAddrs {
|
export interface SegwitAddrs {
|
||||||
@ -44,13 +44,14 @@ const hext2buf = (hexString: string) =>
|
|||||||
|
|
||||||
export function generateFakeSegwitAddress(
|
export function generateFakeSegwitAddress(
|
||||||
reservePub: string,
|
reservePub: string,
|
||||||
addr: string,
|
addr: string
|
||||||
): SegwitAddrs {
|
): SegwitAddrs {
|
||||||
const pub = decodeCrock(reservePub);
|
const pub = decodeCrock(reservePub);
|
||||||
|
|
||||||
const first_rnd = getRandomBytes(4);
|
const first_rnd = new Uint8Array(4);
|
||||||
const second_rnd = new Uint8Array(first_rnd.length);
|
first_rnd.set(pub.subarray(0, 4))
|
||||||
second_rnd.set(first_rnd);
|
const second_rnd = new Uint8Array(4);
|
||||||
|
second_rnd.set(pub.subarray(0, 4));
|
||||||
|
|
||||||
first_rnd[0] = first_rnd[0] & 0b0111_1111;
|
first_rnd[0] = first_rnd[0] & 0b0111_1111;
|
||||||
second_rnd[0] = second_rnd[0] | 0b1000_0000;
|
second_rnd[0] = second_rnd[0] | 0b1000_0000;
|
||||||
@ -58,6 +59,7 @@ export function generateFakeSegwitAddress(
|
|||||||
const first_part = new Uint8Array(first_rnd.length + pub.length / 2);
|
const first_part = new Uint8Array(first_rnd.length + pub.length / 2);
|
||||||
first_part.set(first_rnd, 0);
|
first_part.set(first_rnd, 0);
|
||||||
first_part.set(pub.subarray(0, 16), 4);
|
first_part.set(pub.subarray(0, 16), 4);
|
||||||
|
|
||||||
const second_part = new Uint8Array(first_rnd.length + pub.length / 2);
|
const second_part = new Uint8Array(first_rnd.length + pub.length / 2);
|
||||||
second_part.set(second_rnd, 0);
|
second_part.set(second_rnd, 0);
|
||||||
second_part.set(pub.subarray(16), 4);
|
second_part.set(pub.subarray(16), 4);
|
||||||
|
@ -49,9 +49,8 @@ export interface PaytoUriTalerBank extends PaytoUriGeneric {
|
|||||||
export interface PaytoUriBitcoin extends PaytoUriGeneric {
|
export interface PaytoUriBitcoin extends PaytoUriGeneric {
|
||||||
isKnown: true;
|
isKnown: true;
|
||||||
targetType: "bitcoin";
|
targetType: "bitcoin";
|
||||||
generateSegwitAddress: (r: string) => { addr1: string; addr2: string };
|
addr1: string;
|
||||||
addr1?: string;
|
addr2: string;
|
||||||
addr2?: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const paytoPfx = "payto://";
|
const paytoPfx = "payto://";
|
||||||
@ -131,7 +130,7 @@ export function parsePaytoUri(s: string): PaytoUri | undefined {
|
|||||||
const searchParams = new URLSearchParams(search || "");
|
const searchParams = new URLSearchParams(search || "");
|
||||||
|
|
||||||
searchParams.forEach((v, k) => {
|
searchParams.forEach((v, k) => {
|
||||||
params[v] = k;
|
params[k] = v;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (targetType === "x-taler-bank") {
|
if (targetType === "x-taler-bank") {
|
||||||
@ -157,15 +156,18 @@ export function parsePaytoUri(s: string): PaytoUri | undefined {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
if (targetType === "bitcoin") {
|
if (targetType === "bitcoin") {
|
||||||
|
const msg = /\b([A-Z0-9]{52})\b/.exec(params["message"])
|
||||||
|
const reserve = !msg ? params["subject"] : msg[0];
|
||||||
|
const { addr1, addr2 } = generateFakeSegwitAddress(reserve, targetPath);
|
||||||
|
|
||||||
const result: PaytoUriBitcoin = {
|
const result: PaytoUriBitcoin = {
|
||||||
isKnown: true,
|
isKnown: true,
|
||||||
targetPath,
|
targetPath,
|
||||||
targetType,
|
targetType,
|
||||||
params,
|
params,
|
||||||
generateSegwitAddress: (): any => null,
|
addr1, addr2
|
||||||
};
|
};
|
||||||
|
|
||||||
result.generateSegwitAddress = buildSegwitGenerator(result, targetPath);
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
|
@ -45,10 +45,6 @@ export function BankDetailsByPaytoType({
|
|||||||
|
|
||||||
if (payto.isKnown && payto.targetType === "bitcoin") {
|
if (payto.isKnown && payto.targetType === "bitcoin") {
|
||||||
const min = segwitMinAmount(amount.currency);
|
const min = segwitMinAmount(amount.currency);
|
||||||
if (typeof window !== "undefined") {
|
|
||||||
//FIXME: generate (and possibly save in db?) in wallet-core
|
|
||||||
payto.generateSegwitAddress(subject);
|
|
||||||
}
|
|
||||||
return (
|
return (
|
||||||
<section style={{ textAlign: "left" }}>
|
<section style={{ textAlign: "left" }}>
|
||||||
<p>
|
<p>
|
||||||
|
@ -66,9 +66,6 @@ export function ManualWithdrawPage({ currency, onCancel }: Props): VNode {
|
|||||||
);
|
);
|
||||||
const payto = response.exchangePaytoUris[0];
|
const payto = response.exchangePaytoUris[0];
|
||||||
const paytoURI = parsePaytoUri(payto);
|
const paytoURI = parsePaytoUri(payto);
|
||||||
if (paytoURI && paytoURI.isKnown && paytoURI.targetType === "bitcoin") {
|
|
||||||
paytoURI.generateSegwitAddress(response.reservePub);
|
|
||||||
}
|
|
||||||
setSuccess({ exchangeBaseUrl, response, amount, paytoURI, payto });
|
setSuccess({ exchangeBaseUrl, response, amount, paytoURI, payto });
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e instanceof Error) {
|
if (e instanceof Error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user