2022-03-03 14:58:15 +01:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2019 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 <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author sebasjm
|
|
|
|
*/
|
|
|
|
|
2022-04-13 13:16:35 +02:00
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
|
|
|
import { AmountJson, Amounts } from "./amounts.js";
|
|
|
|
import { getRandomBytes, decodeCrock } from "./talerCrypto.js";
|
|
|
|
import * as segwit from "./segwit_addr.js";
|
|
|
|
|
2022-03-03 14:58:15 +01:00
|
|
|
export interface SegwitAddrs {
|
2022-04-13 13:16:35 +02:00
|
|
|
addr1: string;
|
|
|
|
addr2: string;
|
2022-03-03 14:58:15 +01:00
|
|
|
}
|
|
|
|
|
2022-04-13 13:16:35 +02:00
|
|
|
function buf2hex(buffer: Uint8Array) {
|
|
|
|
// buffer is an ArrayBuffer
|
2022-03-03 14:58:15 +01:00
|
|
|
return [...new Uint8Array(buffer)]
|
2022-04-13 13:16:35 +02:00
|
|
|
.map((x) => x.toString(16).padStart(2, "0"))
|
|
|
|
.join("");
|
2022-03-03 14:58:15 +01:00
|
|
|
}
|
|
|
|
|
2022-04-13 13:16:35 +02:00
|
|
|
export function generateFakeSegwitAddress(
|
|
|
|
reservePub: string,
|
|
|
|
addr: string,
|
|
|
|
): SegwitAddrs {
|
|
|
|
const pub = decodeCrock(reservePub);
|
2022-03-03 14:58:15 +01:00
|
|
|
|
2022-04-13 13:16:35 +02:00
|
|
|
const first_rnd = getRandomBytes(4);
|
|
|
|
const second_rnd = new Uint8Array(first_rnd.length);
|
|
|
|
second_rnd.set(first_rnd);
|
2022-03-03 14:58:15 +01:00
|
|
|
|
2022-04-13 13:16:35 +02:00
|
|
|
first_rnd[0] = first_rnd[0] & 0b0111_1111;
|
|
|
|
second_rnd[0] = second_rnd[0] | 0b1000_0000;
|
2022-03-03 14:58:15 +01:00
|
|
|
|
2022-04-13 13:16:35 +02:00
|
|
|
const first_part = new Uint8Array(first_rnd.length + pub.length / 2);
|
|
|
|
first_part.set(first_rnd, 0);
|
|
|
|
first_part.set(pub.subarray(0, 16), 4);
|
|
|
|
const second_part = new Uint8Array(first_rnd.length + pub.length / 2);
|
|
|
|
second_part.set(first_rnd, 0);
|
|
|
|
second_part.set(pub.subarray(16), 4);
|
2022-03-03 21:49:28 +01:00
|
|
|
|
2022-04-13 13:16:35 +02:00
|
|
|
console.log(first_part.length, second_part.length);
|
2022-03-03 21:49:28 +01:00
|
|
|
|
2022-04-13 13:16:35 +02:00
|
|
|
const prefix =
|
|
|
|
addr[0] === "t" && addr[1] == "b"
|
|
|
|
? "tb"
|
|
|
|
: addr[0] === "b" && addr[1] == "c" && addr[2] === "r" && addr[3] == "t"
|
2022-04-18 21:20:10 +02:00
|
|
|
? "bcrt"
|
|
|
|
: addr[0] === "b" && addr[1] == "c"
|
|
|
|
? "bc"
|
|
|
|
: undefined;
|
2022-04-13 13:16:35 +02:00
|
|
|
if (prefix === undefined) throw new Error("unknown bitcoin net");
|
2022-03-03 14:58:15 +01:00
|
|
|
|
|
|
|
return {
|
2022-03-24 20:02:38 +01:00
|
|
|
addr1: segwit.default.encode(prefix, 0, first_part),
|
|
|
|
addr2: segwit.default.encode(prefix, 0, second_part),
|
2022-04-13 13:16:35 +02:00
|
|
|
};
|
2022-03-03 14:58:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/bitcoin/bitcoin/blob/master/src/policy/policy.cpp
|
2022-04-18 21:20:10 +02:00
|
|
|
export function segwitMinAmount(currency: string): AmountJson {
|
|
|
|
return Amounts.parseOrThrow(`${currency}:0.00000294`);
|
2022-04-13 13:16:35 +02:00
|
|
|
}
|