@leather.io/bitcoin 0.19.41 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
 
2
- > @leather.io/bitcoin@0.19.41 build /home/runner/work/mono/mono/packages/bitcoin
2
+ > @leather.io/bitcoin@0.20.0 build /home/runner/work/mono/mono/packages/bitcoin
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -8,9 +8,9 @@ CLI tsup v8.1.0
8
8
  CLI Using tsup config: /home/runner/work/mono/mono/packages/bitcoin/tsup.config.ts
9
9
  CLI Target: es2022
10
10
  ESM Build start
11
- ESM dist/index.js 53.87 KB
12
- ESM dist/index.js.map 106.33 KB
13
- ESM ⚡️ Build success in 89ms
11
+ ESM dist/index.js 54.05 KB
12
+ ESM dist/index.js.map 106.65 KB
13
+ ESM ⚡️ Build success in 122ms
14
14
  DTS Build start
15
- DTS ⚡️ Build success in 4900ms
16
- DTS dist/index.d.ts 26.27 KB
15
+ DTS ⚡️ Build success in 6436ms
16
+ DTS dist/index.d.ts 26.30 KB
package/CHANGELOG.md CHANGED
@@ -608,6 +608,20 @@
608
608
  * devDependencies
609
609
  * @leather.io/rpc bumped to 2.7.4
610
610
 
611
+ ## [0.20.0](https://github.com/leather-io/mono/compare/@leather.io/bitcoin-v0.19.41...@leather.io/bitcoin-v0.20.0) (2025-03-06)
612
+
613
+
614
+ ### Features
615
+
616
+ * browser rpc ([2166045](https://github.com/leather-io/mono/commit/21660453b994d2a0cf56b2b9cb0c4377ddf2544d))
617
+
618
+
619
+ ### Dependencies
620
+
621
+ * The following workspace dependencies were updated
622
+ * devDependencies
623
+ * @leather.io/rpc bumped to 2.8.0
624
+
611
625
  ## [0.19.34](https://github.com/leather-io/mono/compare/@leather.io/bitcoin-v0.19.33...@leather.io/bitcoin-v0.19.34) (2025-02-25)
612
626
 
613
627
 
package/dist/index.d.ts CHANGED
@@ -218,7 +218,7 @@ declare const ecdsaPublicKeyLength = 33;
218
218
  declare function ecdsaPublicKeyToSchnorr(pubKey: Uint8Array): Uint8Array<ArrayBuffer>;
219
219
  declare function toXOnly(pubKey: Buffer): Buffer<ArrayBufferLike>;
220
220
  declare function decodeBitcoinTx(tx: string): ReturnType<typeof btc.RawTx.decode>;
221
- declare function getAddressFromOutScript(script: Uint8Array, bitcoinNetwork: BtcSignerNetwork): string;
221
+ declare function getAddressFromOutScript(script: Uint8Array, bitcoinNetwork: BtcSignerNetwork): BitcoinAddress | null;
222
222
  /**
223
223
  * Payment type identifiers, as described by `@scure/btc-signer` library
224
224
  */
@@ -243,7 +243,7 @@ declare function inferNetworkFromPath(path: string): NetworkModes;
243
243
  declare function extractExtendedPublicKeyFromPolicy(policy: string): string;
244
244
  declare function createWalletIdDecoratedPath(policy: string, walletId: string): string;
245
245
  declare function getHdKeyVersionsFromNetwork(network: NetworkModes): Versions | undefined;
246
- declare function getBitcoinInputAddress(input: TransactionInput, bitcoinNetwork: BtcSignerNetwork): string;
246
+ declare function getBitcoinInputAddress(input: TransactionInput, bitcoinNetwork: BtcSignerNetwork): BitcoinAddress | null;
247
247
  declare function getInputPaymentType(input: TransactionInput, network: BitcoinNetworkModes): BitcoinPaymentTypes;
248
248
  declare function lookUpLedgerKeysByPath(getDerivationPath: (network: BitcoinNetworkModes, accountIndex: number) => string): (ledgerKeyMap: Record<string, {
249
249
  policy: string;
package/dist/index.js CHANGED
@@ -148,6 +148,53 @@ function deriveNativeSegwitReceiveAddressIndexZero({
148
148
  };
149
149
  }
150
150
 
151
+ // src/validation/address-validation.ts
152
+ import { Network, validate } from "bitcoin-address-validation";
153
+ import { isEmptyString, isUndefined } from "@leather.io/utils";
154
+ function getBitcoinAddressNetworkType(network) {
155
+ if (network === "signet") return Network.testnet;
156
+ return network;
157
+ }
158
+ function isValidBitcoinAddress(address2) {
159
+ if (isUndefined(address2) || isEmptyString(address2)) {
160
+ return false;
161
+ }
162
+ return validate(address2);
163
+ }
164
+ function isValidBitcoinNetworkAddress(address2, network) {
165
+ if (!isValidBitcoinAddress(address2) || !network) {
166
+ return false;
167
+ }
168
+ return validate(address2, getBitcoinAddressNetworkType(network));
169
+ }
170
+
171
+ // src/validation/bitcoin-error.ts
172
+ var BitcoinError = class extends Error {
173
+ message;
174
+ constructor(message) {
175
+ super(message);
176
+ this.name = "BitcoinError";
177
+ this.message = message;
178
+ Object.setPrototypeOf(this, new.target.prototype);
179
+ }
180
+ };
181
+
182
+ // src/validation/bitcoin-address.ts
183
+ function isBitcoinAddress(value) {
184
+ try {
185
+ isValidBitcoinAddress(value);
186
+ return true;
187
+ } catch {
188
+ return false;
189
+ }
190
+ }
191
+ function createBitcoinAddress(value) {
192
+ if (!isBitcoinAddress(value)) {
193
+ throw new BitcoinError("InvalidAddress");
194
+ }
195
+ return value;
196
+ }
197
+
151
198
  // src/utils/bitcoin.utils.ts
152
199
  function initBitcoinAccount(derivationPath, policy) {
153
200
  const xpub = extractExtendedPublicKeyFromPolicy(policy);
@@ -205,25 +252,28 @@ function getAddressFromOutScript(script2, bitcoinNetwork) {
205
252
  case "sh":
206
253
  case "wpkh":
207
254
  case "wsh":
208
- return btc3.Address(bitcoinNetwork).encode({
209
- type: outputScript.type,
210
- hash: outputScript.hash
211
- });
255
+ return createBitcoinAddress(
256
+ btc3.Address(bitcoinNetwork).encode({
257
+ type: outputScript.type,
258
+ hash: outputScript.hash
259
+ })
260
+ );
212
261
  case "tr":
213
- return btc3.Address(bitcoinNetwork).encode({
214
- type: outputScript.type,
215
- pubkey: outputScript.pubkey
216
- });
262
+ return createBitcoinAddress(
263
+ btc3.Address(bitcoinNetwork).encode({
264
+ type: outputScript.type,
265
+ pubkey: outputScript.pubkey
266
+ })
267
+ );
217
268
  case "ms":
218
- return btc3.p2ms(outputScript.m, outputScript.pubkeys).address ?? "";
269
+ return createBitcoinAddress(btc3.p2ms(outputScript.m, outputScript.pubkeys).address ?? "");
219
270
  case "pk":
220
- return btc3.p2pk(outputScript.pubkey, bitcoinNetwork).address ?? "";
271
+ return createBitcoinAddress(btc3.p2pk(outputScript.pubkey, bitcoinNetwork).address ?? "");
221
272
  case "unknown":
222
- return "unknown";
223
273
  case "tr_ms":
224
274
  case "tr_ns":
225
275
  default:
226
- return "";
276
+ return null;
227
277
  }
228
278
  }
229
279
  var paymentTypeMap = {
@@ -287,11 +337,11 @@ function getBitcoinInputAddress(input, bitcoinNetwork) {
287
337
  input.nonWitnessUtxo.outputs[input.index]?.script,
288
338
  bitcoinNetwork
289
339
  );
290
- return "";
340
+ return null;
291
341
  }
292
342
  function getInputPaymentType(input, network) {
293
343
  const address2 = getBitcoinInputAddress(input, getBtcSignerLibNetworkConfigByMode(network));
294
- if (address2 === "") throw new Error("Input address cannot be empty");
344
+ if (address2 === null) throw new Error("Input address cannot be empty");
295
345
  if (address2.startsWith("bc1p") || address2.startsWith("tb1p") || address2.startsWith("bcrt1p"))
296
346
  return "p2tr";
297
347
  if (address2.startsWith("bc1q") || address2.startsWith("tb1q") || address2.startsWith("bcrt1q"))
@@ -482,7 +532,7 @@ import { createMoney } from "@leather.io/utils";
482
532
 
483
533
  // src/coin-selection/coin-selection.utils.ts
484
534
  import BigNumber2 from "bignumber.js";
485
- import validate, { AddressType, getAddressInfo } from "bitcoin-address-validation";
535
+ import validate2, { AddressType, getAddressInfo } from "bitcoin-address-validation";
486
536
  import { BTC_P2WPKH_DUST_AMOUNT } from "@leather.io/constants";
487
537
  import { sumNumbers } from "@leather.io/utils";
488
538
 
@@ -729,7 +779,7 @@ function getUtxoTotal(utxos) {
729
779
  }
730
780
  function getSizeInfo(payload) {
731
781
  const { inputLength, recipients, isSendMax } = payload;
732
- const validAddressesInfo = recipients.map((recipient) => validate(recipient.address) && getAddressInfo(recipient.address)).filter(Boolean);
782
+ const validAddressesInfo = recipients.map((recipient) => validate2(recipient.address) && getAddressInfo(recipient.address)).filter(Boolean);
733
783
  function getTxOutputsLengthByPaymentType() {
734
784
  return validAddressesInfo.reduce(
735
785
  (acc, { type }) => {
@@ -824,29 +874,16 @@ function calculateMaxSpend({
824
874
 
825
875
  // src/coin-selection/coin-selection.ts
826
876
  import BigNumber3 from "bignumber.js";
827
- import { validate as validate2 } from "bitcoin-address-validation";
877
+ import { validate as validate3 } from "bitcoin-address-validation";
828
878
  import { BTC_P2WPKH_DUST_AMOUNT as BTC_P2WPKH_DUST_AMOUNT2 } from "@leather.io/constants";
829
879
  import { createMoney as createMoney2, sumMoney } from "@leather.io/utils";
830
-
831
- // src/validation/bitcoin-error.ts
832
- var BitcoinError = class extends Error {
833
- message;
834
- constructor(message) {
835
- super(message);
836
- this.name = "BitcoinError";
837
- this.message = message;
838
- Object.setPrototypeOf(this, new.target.prototype);
839
- }
840
- };
841
-
842
- // src/coin-selection/coin-selection.ts
843
880
  function determineUtxosForSpendAll({
844
881
  feeRate,
845
882
  recipients,
846
883
  utxos
847
884
  }) {
848
885
  recipients.forEach((recipient) => {
849
- if (!validate2(recipient.address)) throw new BitcoinError("InvalidAddress");
886
+ if (!validate3(recipient.address)) throw new BitcoinError("InvalidAddress");
850
887
  });
851
888
  const filteredUtxos = filterUneconomicalUtxos({ utxos, feeRate, recipients });
852
889
  const sizeInfo = getSizeInfo({
@@ -868,7 +905,7 @@ function determineUtxosForSpendAll({
868
905
  }
869
906
  function determineUtxosForSpend({ feeRate, recipients, utxos }) {
870
907
  recipients.forEach((recipient) => {
871
- if (!validate2(recipient.address)) throw new BitcoinError("InvalidAddress");
908
+ if (!validate3(recipient.address)) throw new BitcoinError("InvalidAddress");
872
909
  });
873
910
  const filteredUtxos = filterUneconomicalUtxos({
874
911
  utxos: utxos.sort((a, b) => b.value - a.value),
@@ -960,42 +997,6 @@ function getBitcoinFees({ feeRates, isSendingMax, recipients, utxos }) {
960
997
  };
961
998
  }
962
999
 
963
- // src/validation/address-validation.ts
964
- import { Network, validate as validate3 } from "bitcoin-address-validation";
965
- import { isEmptyString, isUndefined } from "@leather.io/utils";
966
- function getBitcoinAddressNetworkType(network) {
967
- if (network === "signet") return Network.testnet;
968
- return network;
969
- }
970
- function isValidBitcoinAddress(address2) {
971
- if (isUndefined(address2) || isEmptyString(address2)) {
972
- return false;
973
- }
974
- return validate3(address2);
975
- }
976
- function isValidBitcoinNetworkAddress(address2, network) {
977
- if (!isValidBitcoinAddress(address2) || !network) {
978
- return false;
979
- }
980
- return validate3(address2, getBitcoinAddressNetworkType(network));
981
- }
982
-
983
- // src/validation/bitcoin-address.ts
984
- function isBitcoinAddress(value) {
985
- try {
986
- isValidBitcoinAddress(value);
987
- return true;
988
- } catch {
989
- return false;
990
- }
991
- }
992
- function createBitcoinAddress(value) {
993
- if (!isBitcoinAddress(value)) {
994
- throw new BitcoinError("InvalidAddress");
995
- }
996
- return value;
997
- }
998
-
999
1000
  // src/mocks/mocks.ts
1000
1001
  var TEST_ACCOUNT_1_NATIVE_SEGWIT_ADDRESS = createBitcoinAddress(
1001
1002
  "bc1q530dz4h80kwlzywlhx2qn0k6vdtftd93c499yq"
@@ -1118,8 +1119,10 @@ function getParsedInputs({
1118
1119
  const bitcoinNetwork = getBtcSignerLibNetworkConfigByMode(networkMode);
1119
1120
  const signAll = isUndefined2(indexesToSign);
1120
1121
  const psbtInputs = inputs.map((input, i) => {
1121
- const inputAddress = isDefined2(input.index) ? getBitcoinInputAddress(input, bitcoinNetwork) : "";
1122
- const bitcoinAddress = createBitcoinAddress(inputAddress);
1122
+ const bitcoinAddress = isDefined2(input.index) ? getBitcoinInputAddress(input, bitcoinNetwork) : null;
1123
+ if (bitcoinAddress === null) {
1124
+ throw new Error("PSBT input has unsupported bitcoin address");
1125
+ }
1123
1126
  const isCurrentAddress = psbtAddresses.includes(bitcoinAddress);
1124
1127
  const canChange = isCurrentAddress && !(!input.sighashType || input.sighashType === 0 || input.sighashType === 1);
1125
1128
  const toSignAll = isCurrentAddress && signAll;
@@ -1153,9 +1156,10 @@ function getParsedOutputs({
1153
1156
  if (isUndefined3(output.script)) {
1154
1157
  return;
1155
1158
  }
1156
- const outputAddress = createBitcoinAddress(
1157
- getAddressFromOutScript(output.script, bitcoinNetwork)
1158
- );
1159
+ const outputAddress = getAddressFromOutScript(output.script, bitcoinNetwork);
1160
+ if (outputAddress === null) {
1161
+ throw new Error("PSBT output has unsupported bitcoin address");
1162
+ }
1159
1163
  const isCurrentAddress = psbtAddresses.includes(outputAddress);
1160
1164
  return {
1161
1165
  address: outputAddress,
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/bip322/bip322-utils.ts","../src/utils/bitcoin.utils.ts","../src/payments/p2tr-address-gen.ts","../src/utils/bitcoin.network.ts","../src/payments/p2wpkh-address-gen.ts","../src/bip322/sign-message-bip322-bitcoinjs.ts","../src/coin-selection/calculate-max-spend.ts","../src/coin-selection/coin-selection.utils.ts","../src/fees/btc-size-fee-estimator.ts","../src/coin-selection/coin-selection.ts","../src/validation/bitcoin-error.ts","../src/fees/bitcoin-fees.ts","../src/validation/address-validation.ts","../src/validation/bitcoin-address.ts","../src/mocks/mocks.ts","../src/payments/p2wsh-p2sh-address-gen.ts","../src/psbt/psbt-totals.ts","../src/psbt/psbt-inputs.ts","../src/psbt/psbt-outputs.ts","../src/psbt/psbt-details.ts","../src/psbt/utils.ts","../src/signer/bitcoin-signer.ts","../src/transactions/generate-unsigned-transaction.ts","../src/validation/amount-validation.ts","../src/validation/transaction-validation.ts","../src/utils/lookup-derivation-by-address.ts"],"sourcesContent":["import ecc from '@bitcoinerlab/secp256k1';\nimport { sha256 } from '@noble/hashes/sha256';\nimport { hexToBytes, utf8ToBytes } from '@noble/hashes/utils';\nimport * as bitcoin from 'bitcoinjs-lib';\nimport { ECPairFactory } from 'ecpair';\nimport { encode } from 'varuint-bitcoin';\n\nimport { PaymentTypes } from '@leather.io/rpc';\nimport { isString } from '@leather.io/utils';\n\nimport { toXOnly } from '../utils/bitcoin.utils';\n\nconst bip322MessageTag = 'BIP0322-signed-message';\n\nconst ECPair = ECPairFactory(ecc);\nbitcoin.initEccLib(ecc);\n\nexport function ecPairFromPrivateKey(key: Uint8Array) {\n return ECPair.fromPrivateKey(Buffer.from(key));\n}\n\n// See tagged hashes section of BIP-340\n// https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki#design\nconst messageTagHash = Uint8Array.from([\n ...sha256(utf8ToBytes(bip322MessageTag)),\n ...sha256(utf8ToBytes(bip322MessageTag)),\n]);\n\nexport function hashBip322Message(message: Uint8Array | string) {\n return sha256(\n Uint8Array.from([...messageTagHash, ...(isString(message) ? utf8ToBytes(message) : message)])\n );\n}\n\nexport const bip322TransactionToSignValues = {\n prevoutHash: hexToBytes('0000000000000000000000000000000000000000000000000000000000000000'),\n prevoutIndex: 0xffffffff,\n sequence: 0,\n};\n\nfunction encodeVarString(b: Buffer) {\n return Buffer.concat([encode(b.byteLength), b]);\n}\n\nconst supportedMessageSigningPaymentTypes: PaymentTypes[] = ['p2wpkh', 'p2tr'];\n\nexport function isSupportedMessageSigningPaymentType(paymentType: string) {\n return supportedMessageSigningPaymentTypes.includes(paymentType as PaymentTypes);\n}\n\n/**\n * Encode witness data for a BIP322 message\n * TODO: Refactor to remove `Buffer` use\n */\nexport function encodeMessageWitnessData(witnessArray: Buffer[]) {\n const len = encode(witnessArray.length);\n return Buffer.concat([len, ...witnessArray.map(witness => encodeVarString(witness))]);\n}\n\nfunction tapTweakHash(pubKey: Buffer, h: Buffer | undefined): Buffer {\n return bitcoin.crypto.taggedHash('TapTweak', Buffer.concat(h ? [pubKey, h] : [pubKey]));\n}\n\nexport function tweakSigner(signer: bitcoin.Signer, opts: any = {}): bitcoin.Signer {\n // @ts-expect-error privateKey exists on signer\n let privateKey: Uint8Array | undefined = signer.privateKey;\n if (!privateKey) {\n throw new Error('Private key is required for tweaking signer!');\n }\n if (signer.publicKey[0] === 3) {\n privateKey = ecc.privateNegate(privateKey);\n }\n\n const tweakedPrivateKey = ecc.privateAdd(\n privateKey,\n tapTweakHash(toXOnly(signer.publicKey), opts.tweakHash)\n );\n if (!tweakedPrivateKey) {\n throw new Error('Invalid tweaked private key!');\n }\n\n return ECPair.fromPrivateKey(Buffer.from(tweakedPrivateKey), {\n network: opts.network,\n });\n}\n","import { hexToBytes } from '@noble/hashes/utils';\nimport { HDKey, Versions } from '@scure/bip32';\nimport { mnemonicToSeedSync } from '@scure/bip39';\nimport * as btc from '@scure/btc-signer';\nimport { TransactionInput, TransactionOutput } from '@scure/btc-signer/psbt';\n\nimport {\n DerivationPathDepth,\n extractAccountIndexFromPath,\n extractPurposeFromPath,\n} from '@leather.io/crypto';\nimport { BitcoinAddress, BitcoinNetworkModes, NetworkModes } from '@leather.io/models';\nimport type { BitcoinPaymentTypes } from '@leather.io/rpc';\nimport { defaultWalletKeyId, isDefined, whenNetwork } from '@leather.io/utils';\n\nimport { getTaprootPayment } from '../payments/p2tr-address-gen';\nimport { getNativeSegwitPaymentFromAddressIndex } from '../payments/p2wpkh-address-gen';\nimport { BtcSignerNetwork, getBtcSignerLibNetworkConfigByMode } from './bitcoin.network';\n\nexport interface BitcoinAccount {\n type: BitcoinPaymentTypes;\n derivationPath: string;\n keychain: HDKey;\n accountIndex: number;\n network: BitcoinNetworkModes;\n}\nexport function initBitcoinAccount(derivationPath: string, policy: string): BitcoinAccount {\n const xpub = extractExtendedPublicKeyFromPolicy(policy);\n const network = inferNetworkFromPath(derivationPath);\n return {\n keychain: HDKey.fromExtendedKey(xpub, getHdKeyVersionsFromNetwork(network)),\n network,\n derivationPath,\n type: inferPaymentTypeFromPath(derivationPath),\n accountIndex: extractAccountIndexFromPath(derivationPath),\n };\n}\n\n/**\n * Represents a map of `BitcoinNetworkModes` to `NetworkModes`. While Bitcoin\n * has a number of networks, its often only necessary to consider the higher\n * level concept of mainnet and testnet\n */\nexport const bitcoinNetworkToCoreNetworkMap: Record<BitcoinNetworkModes, NetworkModes> = {\n mainnet: 'mainnet',\n testnet: 'testnet',\n regtest: 'testnet',\n signet: 'testnet',\n};\nexport function bitcoinNetworkModeToCoreNetworkMode(mode: BitcoinNetworkModes) {\n return bitcoinNetworkToCoreNetworkMap[mode];\n}\n\ntype BitcoinNetworkMap<T> = Record<BitcoinNetworkModes, T>;\n\nexport function whenBitcoinNetwork(mode: BitcoinNetworkModes) {\n return <T extends BitcoinNetworkMap<unknown>>(networkMap: T) =>\n networkMap[mode] as T[BitcoinNetworkModes];\n}\n\n/**\n * Map representing the \"Coin Type\" section of a derivation path.\n * Consider example below, Coin type is one, thus testnet\n * @example\n * `m/86'/1'/0'/0/0`\n */\nexport const coinTypeMap: Record<NetworkModes, 0 | 1> = {\n mainnet: 0,\n testnet: 1,\n};\n\nexport function getBitcoinCoinTypeIndexByNetwork(network: BitcoinNetworkModes) {\n return coinTypeMap[bitcoinNetworkModeToCoreNetworkMode(network)];\n}\n\nexport function deriveAddressIndexKeychainFromAccount(keychain: HDKey) {\n if (keychain.depth !== DerivationPathDepth.Account)\n throw new Error('Keychain passed is not an account');\n\n return (index: number) => keychain.deriveChild(0).deriveChild(index);\n}\n\nexport function deriveAddressIndexZeroFromAccount(keychain: HDKey) {\n return deriveAddressIndexKeychainFromAccount(keychain)(0);\n}\n\nexport const ecdsaPublicKeyLength = 33;\n\nexport function ecdsaPublicKeyToSchnorr(pubKey: Uint8Array) {\n if (pubKey.byteLength !== ecdsaPublicKeyLength) throw new Error('Invalid public key length');\n return pubKey.slice(1);\n}\n\n// Basically same as above, to remove\nexport function toXOnly(pubKey: Buffer) {\n return pubKey.length === 32 ? pubKey : pubKey.subarray(1, 33);\n}\n\nexport function decodeBitcoinTx(tx: string): ReturnType<typeof btc.RawTx.decode> {\n return btc.RawTx.decode(hexToBytes(tx));\n}\n\nexport function getAddressFromOutScript(\n script: Uint8Array,\n bitcoinNetwork: BtcSignerNetwork\n): string {\n const outputScript = btc.OutScript.decode(script);\n\n switch (outputScript.type) {\n case 'pkh':\n case 'sh':\n case 'wpkh':\n case 'wsh':\n return btc.Address(bitcoinNetwork).encode({\n type: outputScript.type,\n hash: outputScript.hash,\n });\n case 'tr':\n return btc.Address(bitcoinNetwork).encode({\n type: outputScript.type,\n pubkey: outputScript.pubkey,\n });\n case 'ms':\n return btc.p2ms(outputScript.m, outputScript.pubkeys).address ?? '';\n case 'pk':\n return btc.p2pk(outputScript.pubkey, bitcoinNetwork).address ?? '';\n case 'unknown':\n return 'unknown';\n case 'tr_ms':\n case 'tr_ns':\n default:\n return '';\n }\n}\n\n/**\n * Payment type identifiers, as described by `@scure/btc-signer` library\n */\nexport type BtcSignerLibPaymentTypeIdentifers = 'wpkh' | 'wsh' | 'tr' | 'pkh' | 'sh';\n\nexport const paymentTypeMap: Record<BtcSignerLibPaymentTypeIdentifers, BitcoinPaymentTypes> = {\n wpkh: 'p2wpkh',\n wsh: 'p2wpkh-p2sh',\n tr: 'p2tr',\n pkh: 'p2pkh',\n sh: 'p2sh',\n};\n\nexport function btcSignerLibPaymentTypeToPaymentTypeMap(\n payment: BtcSignerLibPaymentTypeIdentifers\n) {\n return paymentTypeMap[payment];\n}\n\nexport function isBtcSignerLibPaymentType(\n payment: string\n): payment is BtcSignerLibPaymentTypeIdentifers {\n return payment in paymentTypeMap;\n}\n\nexport function parseKnownPaymentType(\n payment: BtcSignerLibPaymentTypeIdentifers | BitcoinPaymentTypes\n) {\n return isBtcSignerLibPaymentType(payment)\n ? btcSignerLibPaymentTypeToPaymentTypeMap(payment)\n : payment;\n}\n\nexport type PaymentTypeMap<T> = Record<BitcoinPaymentTypes, T>;\nexport function whenPaymentType(mode: BitcoinPaymentTypes | BtcSignerLibPaymentTypeIdentifers) {\n return <T>(paymentMap: PaymentTypeMap<T>): T => paymentMap[parseKnownPaymentType(mode)];\n}\n\nexport type SupportedPaymentType = 'p2wpkh' | 'p2tr';\nexport type SupportedPaymentTypeMap<T> = Record<SupportedPaymentType, T>;\nexport function whenSupportedPaymentType(mode: SupportedPaymentType) {\n return <T>(paymentMap: SupportedPaymentTypeMap<T>): T => paymentMap[mode];\n}\n\n/**\n * Infers the Bitcoin payment type from the derivation path.\n * Below we see path has 86 in it, per convention, this refers to taproot payments\n * @example\n * `m/86'/1'/0'/0/0`\n */\nexport function inferPaymentTypeFromPath(path: string): BitcoinPaymentTypes {\n const purpose = extractPurposeFromPath(path);\n switch (purpose) {\n case 84:\n return 'p2wpkh';\n case 86:\n return 'p2tr';\n case 44:\n return 'p2pkh';\n default:\n throw new Error(`Unable to infer payment type from purpose=${purpose}`);\n }\n}\n\nexport function inferNetworkFromPath(path: string): NetworkModes {\n return path.split('/')[2].startsWith('0') ? 'mainnet' : 'testnet';\n}\n\nexport function extractExtendedPublicKeyFromPolicy(policy: string) {\n return policy.split(']')[1];\n}\n\nexport function createWalletIdDecoratedPath(policy: string, walletId: string) {\n return policy.split(']')[0].replace('[', '').replace('m', walletId);\n}\n\n// Primarily used to get the correct `Version` when passing Ledger Bitcoin\n// extended public keys to the HDKey constructor\nexport function getHdKeyVersionsFromNetwork(network: NetworkModes) {\n return whenNetwork(network)({\n mainnet: undefined,\n testnet: {\n private: 0x00000000,\n public: 0x043587cf,\n } as Versions,\n });\n}\n\nexport function getBitcoinInputAddress(input: TransactionInput, bitcoinNetwork: BtcSignerNetwork) {\n if (isDefined(input.witnessUtxo))\n return getAddressFromOutScript(input.witnessUtxo.script, bitcoinNetwork);\n if (isDefined(input.nonWitnessUtxo) && isDefined(input.index))\n return getAddressFromOutScript(\n input.nonWitnessUtxo.outputs[input.index]?.script,\n bitcoinNetwork\n );\n return '';\n}\n\nexport function getInputPaymentType(\n input: TransactionInput,\n network: BitcoinNetworkModes\n): BitcoinPaymentTypes {\n const address = getBitcoinInputAddress(input, getBtcSignerLibNetworkConfigByMode(network));\n if (address === '') throw new Error('Input address cannot be empty');\n if (address.startsWith('bc1p') || address.startsWith('tb1p') || address.startsWith('bcrt1p'))\n return 'p2tr';\n if (address.startsWith('bc1q') || address.startsWith('tb1q') || address.startsWith('bcrt1q'))\n return 'p2wpkh';\n throw new Error('Unable to infer payment type from input address');\n}\n\n// Ledger wallets are keyed by their derivation path. To reuse the look up logic\n// between payment types, this factory fn accepts a fn that generates the path\nexport function lookUpLedgerKeysByPath(\n getDerivationPath: (network: BitcoinNetworkModes, accountIndex: number) => string\n) {\n return (\n ledgerKeyMap: Record<string, { policy: string } | undefined>,\n network: BitcoinNetworkModes\n ) =>\n (accountIndex: number) => {\n const path = getDerivationPath(network, accountIndex);\n // Single wallet mode, hardcoded default walletId\n const account = ledgerKeyMap[path.replace('m', defaultWalletKeyId)];\n if (!account) return;\n return initBitcoinAccount(path, account.policy);\n };\n}\n\ninterface GetAddressArgs {\n index: number;\n keychain?: HDKey;\n network: BitcoinNetworkModes;\n}\n\nexport function getTaprootAddress({ index, keychain, network }: GetAddressArgs) {\n if (!keychain) throw new Error('Expected keychain to be provided');\n\n if (keychain.depth !== DerivationPathDepth.Account)\n throw new Error('Expects keychain to be on the account index');\n\n const addressIndex = deriveAddressIndexKeychainFromAccount(keychain)(index);\n\n if (!addressIndex.publicKey) throw new Error('Expected publicKey to be defined');\n\n const payment = getTaprootPayment(addressIndex.publicKey, network);\n\n if (!payment.address) throw new Error('Expected address to be defined');\n return payment.address;\n}\n\nexport function getNativeSegwitAddress({ index, keychain, network }: GetAddressArgs) {\n if (!keychain) throw new Error('Expected keychain to be provided');\n\n if (keychain.depth !== DerivationPathDepth.Account)\n throw new Error('Expects keychain to be on the account index');\n\n const addressIndex = deriveAddressIndexKeychainFromAccount(keychain)(index);\n\n if (!addressIndex.publicKey) throw new Error('Expected publicKey to be defined');\n\n const payment = getNativeSegwitPaymentFromAddressIndex(addressIndex, network);\n\n if (!payment.address) throw new Error('Expected address to be defined');\n return payment.address;\n}\n\n/**\n * @deprecated\n * Use `deriveRootBip32Keychain` in `@leather.io/crypto` instead\n */\nexport function mnemonicToRootNode(secretKey: string) {\n const seed = mnemonicToSeedSync(secretKey);\n return HDKey.fromMasterSeed(seed);\n}\n\nexport function getPsbtTxInputs(psbtTx: btc.Transaction): TransactionInput[] {\n const inputsLength = psbtTx.inputsLength;\n const inputs: TransactionInput[] = [];\n for (let i = 0; i < inputsLength; i++) inputs.push(psbtTx.getInput(i));\n return inputs;\n}\n\nexport function getPsbtTxOutputs(psbtTx: btc.Transaction): TransactionOutput[] {\n const outputsLength = psbtTx.outputsLength;\n const outputs: TransactionOutput[] = [];\n for (let i = 0; i < outputsLength; i++) outputs.push(psbtTx.getOutput(i));\n return outputs;\n}\n\nexport function inferNetworkFromAddress(address: BitcoinAddress): BitcoinNetworkModes {\n if (address.startsWith('bc1')) return 'mainnet';\n if (address.startsWith('tb1')) return 'testnet';\n if (address.startsWith('bcrt1')) return 'regtest';\n\n const firstChar = address[0];\n\n if (firstChar === '1' || firstChar === '3') return 'mainnet';\n if (firstChar === 'm' || firstChar === 'n') return 'testnet';\n if (firstChar === '2') return 'testnet';\n\n throw new Error('Invalid or unsupported Bitcoin address format');\n}\n\nexport function inferPaymentTypeFromAddress(address: BitcoinAddress): SupportedPaymentType {\n if (address.startsWith('bc1q') || address.startsWith('tb1q') || address.startsWith('bcrt1q'))\n return 'p2wpkh';\n\n if (address.startsWith('bc1p') || address.startsWith('tb1p') || address.startsWith('bcrt1p'))\n return 'p2tr';\n\n throw new Error('Unable to infer payment type from address');\n}\n\nexport function getBitcoinInputValue(input: TransactionInput) {\n if (isDefined(input.witnessUtxo)) return Number(input.witnessUtxo.amount);\n if (isDefined(input.nonWitnessUtxo) && isDefined(input.index))\n return Number(input.nonWitnessUtxo.outputs[input.index]?.amount);\n // logger.warn('Unable to find either `witnessUtxo` or `nonWitnessUtxo` in input. Defaulting to 0');\n return 0;\n}\n","import { HDKey } from '@scure/bip32';\nimport * as btc from '@scure/btc-signer';\n\nimport { DerivationPathDepth } from '@leather.io/crypto';\nimport { BitcoinNetworkModes } from '@leather.io/models';\n\nimport { getBtcSignerLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport {\n BitcoinAccount,\n deriveAddressIndexZeroFromAccount,\n ecdsaPublicKeyToSchnorr,\n getBitcoinCoinTypeIndexByNetwork,\n} from '../utils/bitcoin.utils';\n\nexport function makeTaprootAccountDerivationPath(\n network: BitcoinNetworkModes,\n accountIndex: number\n) {\n return `m/86'/${getBitcoinCoinTypeIndexByNetwork(network)}'/${accountIndex}'`;\n}\n/** @deprecated Use makeTaprootAccountDerivationPath */\nexport const getTaprootAccountDerivationPath = makeTaprootAccountDerivationPath;\n\nexport function makeTaprootAddressIndexDerivationPath(\n network: BitcoinNetworkModes,\n accountIndex: number,\n addressIndex: number\n) {\n return makeTaprootAccountDerivationPath(network, accountIndex) + `/0/${addressIndex}`;\n}\n/** @deprecated Use makeTaprootAddressIndexDerivationPath */\nexport const getTaprootAddressIndexDerivationPath = makeTaprootAddressIndexDerivationPath;\n\nexport function deriveTaprootAccount(keychain: HDKey, network: BitcoinNetworkModes) {\n if (keychain.depth !== DerivationPathDepth.Root)\n throw new Error('Keychain passed is not an account');\n\n return (accountIndex: number): BitcoinAccount => ({\n type: 'p2tr',\n network,\n accountIndex,\n derivationPath: makeTaprootAccountDerivationPath(network, accountIndex),\n keychain: keychain.derive(makeTaprootAccountDerivationPath(network, accountIndex)),\n });\n}\n\nexport function getTaprootPayment(publicKey: Uint8Array, network: BitcoinNetworkModes) {\n return btc.p2tr(\n ecdsaPublicKeyToSchnorr(publicKey),\n undefined,\n getBtcSignerLibNetworkConfigByMode(network),\n true // allow unknown outputs\n );\n}\n\nexport function getTaprootPaymentFromAddressIndex(keychain: HDKey, network: BitcoinNetworkModes) {\n if (keychain.depth !== DerivationPathDepth.AddressIndex)\n throw new Error('Keychain passed is not an address index');\n\n if (!keychain.publicKey) throw new Error('Keychain has no public key');\n\n return getTaprootPayment(keychain.publicKey, network);\n}\n\ninterface DeriveTaprootReceiveAddressIndexArgs {\n keychain: HDKey;\n network: BitcoinNetworkModes;\n}\nexport function deriveTaprootReceiveAddressIndexZero({\n keychain,\n network,\n}: DeriveTaprootReceiveAddressIndexArgs) {\n const zeroAddressIndex = deriveAddressIndexZeroFromAccount(keychain);\n return {\n keychain: zeroAddressIndex,\n payment: getTaprootPaymentFromAddressIndex(zeroAddressIndex, network),\n };\n}\n","import * as bitcoinJs from 'bitcoinjs-lib';\n\nimport { BitcoinNetworkModes } from '@leather.io/models';\n\n// TODO - this PR was merged so we could update this\n// https://github.com/paulmillr/scure-btc-signer/blob/main/src/utils.ts\n// See this PR https://github.com/paulmillr/@scure/btc-signer/pull/15\n// Atttempting to add these directly to the library\nexport interface BtcSignerNetwork {\n bech32: string;\n pubKeyHash: number;\n scriptHash: number;\n wif: number;\n}\n\nconst bitcoinMainnet: BtcSignerNetwork = {\n bech32: 'bc',\n pubKeyHash: 0x00,\n scriptHash: 0x05,\n wif: 0x80,\n};\n\nconst bitcoinTestnet: BtcSignerNetwork = {\n bech32: 'tb',\n pubKeyHash: 0x6f,\n scriptHash: 0xc4,\n wif: 0xef,\n};\n\nconst bitcoinRegtest: BtcSignerNetwork = {\n bech32: 'bcrt',\n pubKeyHash: 0x6f,\n scriptHash: 0xc4,\n wif: 0xef,\n};\n\nconst btcSignerLibNetworks: Record<BitcoinNetworkModes, BtcSignerNetwork> = {\n mainnet: bitcoinMainnet,\n testnet: bitcoinTestnet,\n regtest: bitcoinRegtest,\n // Signet originally was going to have its own prefix but authors decided to\n // copy testnet\n signet: bitcoinTestnet,\n};\n\nexport function getBtcSignerLibNetworkConfigByMode(network: BitcoinNetworkModes) {\n return btcSignerLibNetworks[network];\n}\n\nconst bitcoinJsLibNetworks: Record<BitcoinNetworkModes, bitcoinJs.Network> = {\n mainnet: bitcoinJs.networks.bitcoin,\n testnet: bitcoinJs.networks.testnet,\n regtest: bitcoinJs.networks.regtest,\n signet: bitcoinJs.networks.testnet,\n};\n\nexport function getBitcoinJsLibNetworkConfigByMode(network: BitcoinNetworkModes) {\n return bitcoinJsLibNetworks[network];\n}\n","import { HDKey } from '@scure/bip32';\nimport * as btc from '@scure/btc-signer';\n\nimport { DerivationPathDepth } from '@leather.io/crypto';\nimport { BitcoinNetworkModes } from '@leather.io/models';\n\nimport { getBtcSignerLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport {\n BitcoinAccount,\n deriveAddressIndexZeroFromAccount,\n getBitcoinCoinTypeIndexByNetwork,\n} from '../utils/bitcoin.utils';\n\nexport function makeNativeSegwitAccountDerivationPath(\n network: BitcoinNetworkModes,\n accountIndex: number\n) {\n return `m/84'/${getBitcoinCoinTypeIndexByNetwork(network)}'/${accountIndex}'`;\n}\n\n/** @deprecated Use makeNativeSegwitAccountDerivationPath */\nexport const getNativeSegwitAccountDerivationPath = makeNativeSegwitAccountDerivationPath;\n\nexport function makeNativeSegwitAddressIndexDerivationPath(\n network: BitcoinNetworkModes,\n accountIndex: number,\n addressIndex: number\n) {\n return makeNativeSegwitAccountDerivationPath(network, accountIndex) + `/0/${addressIndex}`;\n}\n\n/** @deprecated Use makeNativeSegwitAddressIndexDerivationPath */\nexport const getNativeSegwitAddressIndexDerivationPath = makeNativeSegwitAddressIndexDerivationPath;\n\nexport function deriveNativeSegwitAccountFromRootKeychain(\n keychain: HDKey,\n network: BitcoinNetworkModes\n) {\n if (keychain.depth !== DerivationPathDepth.Root) throw new Error('Keychain passed is not a root');\n return (accountIndex: number): BitcoinAccount => ({\n type: 'p2wpkh',\n network,\n accountIndex,\n derivationPath: makeNativeSegwitAccountDerivationPath(network, accountIndex),\n keychain: keychain.derive(makeNativeSegwitAccountDerivationPath(network, accountIndex)),\n });\n}\n\nexport function getNativeSegwitPaymentFromAddressIndex(\n keychain: HDKey,\n network: BitcoinNetworkModes\n) {\n if (keychain.depth !== DerivationPathDepth.AddressIndex)\n throw new Error('Keychain passed is not an address index');\n\n if (!keychain.publicKey) throw new Error('Keychain does not have a public key');\n\n return btc.p2wpkh(keychain.publicKey, getBtcSignerLibNetworkConfigByMode(network));\n}\n\ninterface DeriveNativeSegwitReceiveAddressIndexArgs {\n keychain: HDKey;\n network: BitcoinNetworkModes;\n}\nexport function deriveNativeSegwitReceiveAddressIndexZero({\n keychain,\n network,\n}: DeriveNativeSegwitReceiveAddressIndexArgs) {\n const zeroAddressIndex = deriveAddressIndexZeroFromAccount(keychain);\n return {\n keychain: zeroAddressIndex,\n payment: getNativeSegwitPaymentFromAddressIndex(zeroAddressIndex, network),\n };\n}\n","import { base64 } from '@scure/base';\nimport * as btc from '@scure/btc-signer';\nimport * as bitcoin from 'bitcoinjs-lib';\n\nimport { BitcoinAddress, BitcoinNetworkModes } from '@leather.io/models';\n\nimport { getBitcoinJsLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport {\n bip322TransactionToSignValues,\n ecPairFromPrivateKey,\n encodeMessageWitnessData,\n hashBip322Message,\n tweakSigner,\n} from './bip322-utils';\n\nexport function createNativeSegwitBitcoinJsSigner(privateKey: Buffer) {\n return ecPairFromPrivateKey(privateKey);\n}\n\nexport function createTaprootBitcoinJsSigner(privateKey: Buffer) {\n return tweakSigner(ecPairFromPrivateKey(privateKey));\n}\n\nexport function createToSpendTx(\n address: BitcoinAddress,\n message: string,\n network: BitcoinNetworkModes\n) {\n const { prevoutHash, prevoutIndex, sequence } = bip322TransactionToSignValues;\n\n const script = bitcoin.address.toOutputScript(\n address,\n getBitcoinJsLibNetworkConfigByMode(network)\n );\n\n const hash = hashBip322Message(message);\n const commands = [0, Buffer.from(hash)];\n const scriptSig = bitcoin.script.compile(commands);\n\n const virtualToSpend = new bitcoin.Transaction();\n virtualToSpend.version = 0;\n virtualToSpend.addInput(Buffer.from(prevoutHash), prevoutIndex, sequence, scriptSig);\n virtualToSpend.addOutput(script, 0);\n return { virtualToSpend, script };\n}\n\nfunction createToSignTx(toSpendTxHex: Buffer, script: Buffer, network: BitcoinNetworkModes) {\n const virtualToSign = new bitcoin.Psbt({ network: getBitcoinJsLibNetworkConfigByMode(network) });\n virtualToSign.setVersion(0);\n const prevTxHash = toSpendTxHex;\n const prevOutIndex = 0;\n const toSignScriptSig = bitcoin.script.compile([bitcoin.script.OPS.OP_RETURN]);\n\n virtualToSign.addInput({\n hash: prevTxHash,\n index: prevOutIndex,\n sequence: 0,\n witnessUtxo: { script, value: 0 },\n });\n\n virtualToSign.addOutput({ script: toSignScriptSig, value: 0 });\n return virtualToSign;\n}\n\ninterface SignBip322MessageSimple {\n address: BitcoinAddress;\n message: string;\n network: BitcoinNetworkModes;\n signPsbt(psbt: bitcoin.Psbt): Promise<btc.Transaction>;\n}\nexport async function signBip322MessageSimple(args: SignBip322MessageSimple) {\n const { address, message, network, signPsbt } = args;\n\n const { virtualToSpend, script } = createToSpendTx(address, message, network);\n\n const virtualToSign = createToSignTx(virtualToSpend.getHash(), script, network);\n\n const signedTx = await signPsbt(virtualToSign);\n\n const asBitcoinJsTransaction = bitcoin.Psbt.fromBuffer(Buffer.from(signedTx.toPSBT()));\n\n asBitcoinJsTransaction.finalizeInput(0);\n\n // sign the tx\n // section 5.1\n // github.com/LegReq/bip0322-signatures/blob/master/BIP0322_signing.ipynb\n const toSignTx = asBitcoinJsTransaction.extractTransaction();\n\n const result = encodeMessageWitnessData(toSignTx.ins[0].witness);\n\n return {\n virtualToSpend,\n virtualToSign: toSignTx,\n unencodedSig: result,\n signature: base64.encode(result),\n };\n}\n","import type { AverageBitcoinFeeRates, BitcoinAddress, Money } from '@leather.io/models';\nimport { createMoney } from '@leather.io/utils';\n\nimport { CoinSelectionUtxo } from '../coin-selection/coin-selection';\nimport {\n filterUneconomicalUtxos,\n getSpendableAmount,\n} from '../coin-selection/coin-selection.utils';\n\ninterface CalculateMaxSpendArgs {\n recipient: BitcoinAddress;\n utxos: CoinSelectionUtxo[];\n feeRates?: AverageBitcoinFeeRates;\n feeRate?: number;\n}\n\ninterface CalculateMaxSpendResponse {\n spendAllFee: number;\n amount: Money;\n}\nexport function calculateMaxSpend({\n recipient,\n utxos,\n feeRate,\n feeRates,\n}: CalculateMaxSpendArgs): CalculateMaxSpendResponse {\n if (!utxos.length || !feeRates)\n return {\n spendAllFee: 0,\n amount: createMoney(0, 'BTC'),\n };\n\n const currentFeeRate = feeRate ?? feeRates.halfHourFee.toNumber();\n\n const filteredUtxos = filterUneconomicalUtxos({\n utxos,\n feeRate: currentFeeRate,\n recipients: [{ address: recipient, amount: createMoney(0, 'BTC') }],\n });\n\n const { spendableAmount, fee } = getSpendableAmount({\n utxos: filteredUtxos,\n feeRate: currentFeeRate,\n recipients: [{ address: recipient, amount: createMoney(0, 'BTC') }],\n isSendMax: true,\n });\n\n return {\n spendAllFee: fee,\n amount: createMoney(spendableAmount, 'BTC'),\n };\n}\n","import BigNumber from 'bignumber.js';\nimport validate, { AddressInfo, AddressType, getAddressInfo } from 'bitcoin-address-validation';\n\nimport { BTC_P2WPKH_DUST_AMOUNT } from '@leather.io/constants';\nimport { sumNumbers } from '@leather.io/utils';\n\nimport { BtcSizeFeeEstimator } from '../fees/btc-size-fee-estimator';\nimport { CoinSelectionRecipient, CoinSelectionUtxo } from './coin-selection';\n\nexport function getUtxoTotal(utxos: CoinSelectionUtxo[]) {\n return sumNumbers(utxos.map(utxo => utxo.value));\n}\n\nexport function getSizeInfo(payload: {\n inputLength: number;\n recipients: CoinSelectionRecipient[];\n isSendMax?: boolean;\n}) {\n const { inputLength, recipients, isSendMax } = payload;\n\n const validAddressesInfo = recipients\n .map(recipient => validate(recipient.address) && getAddressInfo(recipient.address))\n .filter(Boolean) as AddressInfo[];\n\n function getTxOutputsLengthByPaymentType() {\n return validAddressesInfo.reduce(\n (acc, { type }) => {\n acc[type] = (acc[type] || 0) + 1;\n return acc;\n },\n {} as Record<AddressType, number>\n );\n }\n\n const outputTypesCount = getTxOutputsLengthByPaymentType();\n\n // Add a change address if not sending max (defaults to p2wpkh)\n if (!isSendMax) {\n outputTypesCount[AddressType.p2wpkh] = (outputTypesCount[AddressType.p2wpkh] || 0) + 1;\n }\n\n // Prepare the output data map for consumption by the txSizer\n const outputsData = Object.entries(outputTypesCount).reduce(\n (acc, [type, count]) => {\n acc[type + '_output_count'] = count;\n return acc;\n },\n {} as Record<string, number>\n );\n\n const txSizer = new BtcSizeFeeEstimator();\n const sizeInfo = txSizer.calcTxSize({\n input_script: 'p2wpkh',\n input_count: inputLength,\n ...outputsData,\n });\n\n return sizeInfo;\n}\ninterface GetSpendableAmountArgs {\n utxos: CoinSelectionUtxo[];\n feeRate: number;\n recipients: CoinSelectionRecipient[];\n isSendMax?: boolean;\n}\nexport function getSpendableAmount({ utxos, feeRate, recipients }: GetSpendableAmountArgs) {\n const balance = utxos\n .map(utxo => Number(utxo.value))\n .reduce((prevVal, curVal) => prevVal + curVal, 0);\n\n const size = getSizeInfo({\n inputLength: utxos.length,\n recipients,\n });\n const fee = Math.ceil(size.txVBytes * feeRate);\n const bigNumberBalance = BigNumber(balance);\n return {\n spendableAmount: BigNumber.max(0, bigNumberBalance.minus(fee)),\n fee,\n };\n}\n\n// Check if the spendable amount drops when adding a utxo\nexport function filterUneconomicalUtxos({\n utxos,\n feeRate,\n recipients,\n}: {\n utxos: CoinSelectionUtxo[];\n feeRate: number;\n recipients: CoinSelectionRecipient[];\n}) {\n const { spendableAmount: fullSpendableAmount } = getSpendableAmount({\n utxos,\n feeRate,\n recipients,\n });\n\n const filteredUtxos = utxos\n .filter(utxo => utxo.value >= BTC_P2WPKH_DUST_AMOUNT)\n .filter(utxo => {\n // Calculate spendableAmount without that utxo\n const { spendableAmount } = getSpendableAmount({\n utxos: utxos.filter(u => u.txid !== utxo.txid),\n feeRate,\n recipients,\n });\n // If fullSpendableAmount is greater, do not use utxo\n return spendableAmount.toNumber() < fullSpendableAmount.toNumber();\n });\n return filteredUtxos;\n}\n","// https://github.com/argvil19/bitcoin-transaction-size-calculator/blob/master/index.js\nimport BigNumber from 'bignumber.js';\n\nimport { assertUnreachable } from '@leather.io/utils';\n\nexport type InputScriptType =\n | 'p2pkh'\n | 'p2sh'\n | 'p2sh-p2wpkh'\n | 'p2sh-p2wsh'\n | 'p2wpkh'\n | 'p2wsh'\n | 'p2tr';\n\nexport interface TxSizerParams {\n input_count: number;\n input_script: InputScriptType;\n input_m: number;\n input_n: number;\n p2pkh_output_count: number;\n p2sh_output_count: number;\n p2sh_p2wpkh_output_count: number;\n p2sh_p2wsh_output_count: number;\n p2wpkh_output_count: number;\n p2wsh_output_count: number;\n p2tr_output_count: number;\n}\n\nexport class BtcSizeFeeEstimator {\n P2PKH_IN_SIZE = 148;\n P2PKH_OUT_SIZE = 34;\n P2SH_OUT_SIZE = 32;\n P2SH_P2WPKH_OUT_SIZE = 32;\n P2SH_P2WSH_OUT_SIZE = 32;\n P2SH_P2WPKH_IN_SIZE = 91;\n P2WPKH_IN_SIZE = 67.75;\n P2WPKH_OUT_SIZE = 31;\n P2WSH_OUT_SIZE = 43;\n P2TR_OUT_SIZE = 43;\n P2TR_IN_SIZE = 57.25;\n PUBKEY_SIZE = 33;\n SIGNATURE_SIZE = 72;\n SUPPORTED_INPUT_SCRIPT_TYPES: InputScriptType[] = [\n 'p2pkh',\n 'p2sh',\n 'p2sh-p2wpkh',\n 'p2sh-p2wsh',\n 'p2wpkh',\n 'p2wsh',\n 'p2tr',\n ];\n\n defaultParams: TxSizerParams = {\n input_count: 0,\n input_script: 'p2wpkh',\n input_m: 0,\n input_n: 0,\n p2pkh_output_count: 0,\n p2sh_output_count: 0,\n p2sh_p2wpkh_output_count: 0,\n p2sh_p2wsh_output_count: 0,\n p2wpkh_output_count: 0,\n p2wsh_output_count: 0,\n p2tr_output_count: 0,\n };\n\n params: TxSizerParams = { ...this.defaultParams };\n\n getSizeOfScriptLengthElement(length: number) {\n if (length < 75) {\n return 1;\n } else if (length <= 255) {\n return 2;\n } else if (length <= 65535) {\n return 3;\n } else if (length <= 4294967295) {\n return 5;\n } else {\n throw new Error('Size of redeem script is too large');\n }\n }\n\n getSizeOfletInt(length: number) {\n if (length < 253) {\n return 1;\n } else if (length < 65535) {\n return 3;\n } else if (length < 4294967295) {\n return 5;\n } else if (new BigNumber(length).isLessThan('18446744073709551615')) {\n return 9;\n } else {\n throw new Error('Invalid let int');\n }\n }\n\n getTxOverheadVBytes(input_script: InputScriptType, input_count: number, output_count: number) {\n let witness_vbytes;\n if (input_script === 'p2pkh' || input_script === 'p2sh') {\n witness_vbytes = 0;\n } else {\n // Transactions with segwit inputs have extra overhead\n witness_vbytes =\n 0.25 + // segwit marker\n 0.25 + // segwit flag\n this.getSizeOfletInt(input_count) / 4; // witness element count\n }\n\n return (\n 4 + // nVersion\n this.getSizeOfletInt(input_count) + // number of inputs\n this.getSizeOfletInt(output_count) + // number of outputs\n 4 + // nLockTime\n witness_vbytes\n );\n }\n\n getTxOverheadExtraRawBytes(input_script: InputScriptType, input_count: number) {\n let witness_vbytes;\n if (input_script === 'p2pkh' || input_script === 'p2sh') {\n witness_vbytes = 0;\n } else {\n // Transactions with segwit inputs have extra overhead\n witness_vbytes =\n 0.25 + // segwit marker\n 0.25 + // segwit flag\n this.getSizeOfletInt(input_count) / 4; // witness element count\n }\n\n return witness_vbytes * 3;\n }\n\n prepareParams(opts: Partial<TxSizerParams>) {\n // Verify opts and set them to this.params\n opts = opts || Object.assign(this.defaultParams);\n\n const input_count = opts.input_count || this.defaultParams.input_count;\n if (!Number.isInteger(input_count) || input_count < 0) {\n throw new Error('expecting positive input count, got: ' + input_count);\n }\n\n const input_script = opts.input_script || this.defaultParams.input_script;\n if (this.SUPPORTED_INPUT_SCRIPT_TYPES.indexOf(input_script) === -1) {\n throw new Error('Not supported input script type');\n }\n\n const input_m = opts.input_m || this.defaultParams.input_m;\n if (!Number.isInteger(input_m) || input_m < 0) {\n throw new Error('expecting positive signature count');\n }\n\n const input_n = opts.input_n || this.defaultParams.input_n;\n if (!Number.isInteger(input_n) || input_n < 0) {\n throw new Error('expecting positive pubkey count');\n }\n\n const p2pkh_output_count = opts.p2pkh_output_count || this.defaultParams.p2pkh_output_count;\n if (!Number.isInteger(p2pkh_output_count) || p2pkh_output_count < 0) {\n throw new Error('expecting positive p2pkh output count');\n }\n\n const p2sh_output_count = opts.p2sh_output_count || this.defaultParams.p2sh_output_count;\n if (!Number.isInteger(p2sh_output_count) || p2sh_output_count < 0) {\n throw new Error('expecting positive p2sh output count');\n }\n\n const p2sh_p2wpkh_output_count =\n opts.p2sh_p2wpkh_output_count || this.defaultParams.p2sh_p2wpkh_output_count;\n if (!Number.isInteger(p2sh_p2wpkh_output_count) || p2sh_p2wpkh_output_count < 0) {\n throw new Error('expecting positive p2sh-p2wpkh output count');\n }\n\n const p2sh_p2wsh_output_count =\n opts.p2sh_p2wsh_output_count || this.defaultParams.p2sh_p2wsh_output_count;\n if (!Number.isInteger(p2sh_p2wsh_output_count) || p2sh_p2wsh_output_count < 0) {\n throw new Error('expecting positive p2sh-p2wsh output count');\n }\n\n const p2wpkh_output_count = opts.p2wpkh_output_count || this.defaultParams.p2wpkh_output_count;\n if (!Number.isInteger(p2wpkh_output_count) || p2wpkh_output_count < 0) {\n throw new Error('expecting positive p2wpkh output count');\n }\n\n const p2wsh_output_count = opts.p2wsh_output_count || this.defaultParams.p2wsh_output_count;\n if (!Number.isInteger(p2wsh_output_count) || p2wsh_output_count < 0) {\n throw new Error('expecting positive p2wsh output count');\n }\n\n const p2tr_output_count = opts.p2tr_output_count || this.defaultParams.p2tr_output_count;\n if (!Number.isInteger(p2tr_output_count) || p2tr_output_count < 0) {\n throw new Error('expecting positive p2tr output count');\n }\n\n this.params = {\n input_count,\n input_script,\n input_m,\n input_n,\n p2pkh_output_count,\n p2sh_output_count,\n p2sh_p2wpkh_output_count,\n p2sh_p2wsh_output_count,\n p2wpkh_output_count,\n p2wsh_output_count,\n p2tr_output_count,\n };\n\n return this.params;\n }\n\n getOutputCount() {\n return (\n this.params.p2pkh_output_count +\n this.params.p2sh_output_count +\n this.params.p2sh_p2wpkh_output_count +\n this.params.p2sh_p2wsh_output_count +\n this.params.p2wpkh_output_count +\n this.params.p2wsh_output_count +\n this.params.p2tr_output_count\n );\n }\n\n getSizeBasedOnInputType() {\n // In most cases the input size is predictable. For multisig inputs we need to perform a detailed calculation\n let inputSize = 0; // in virtual bytes\n let inputWitnessSize = 0;\n let redeemScriptSize;\n switch (this.params.input_script) {\n case 'p2pkh':\n inputSize = this.P2PKH_IN_SIZE;\n break;\n case 'p2sh-p2wpkh':\n inputSize = this.P2SH_P2WPKH_IN_SIZE;\n inputWitnessSize = 107; // size(signature) + signature + size(pubkey) + pubkey\n break;\n case 'p2wpkh':\n inputSize = this.P2WPKH_IN_SIZE;\n inputWitnessSize = 107; // size(signature) + signature + size(pubkey) + pubkey\n break;\n case 'p2tr': // Only consider the cooperative taproot signing path assume multisig is done via aggregate signatures\n inputSize = this.P2TR_IN_SIZE;\n inputWitnessSize = 65; // getSizeOfletInt(schnorrSignature) + schnorrSignature\n break;\n case 'p2sh':\n redeemScriptSize =\n 1 + // OP_M\n this.params.input_n * (1 + this.PUBKEY_SIZE) + // OP_PUSH33 <pubkey>\n 1 + // OP_N\n 1; // OP_CHECKMULTISIG\n // eslint-disable-next-line no-case-declarations\n const scriptSigSize =\n 1 + // size(0)\n this.params.input_m * (1 + this.SIGNATURE_SIZE) + // size(SIGNATURE_SIZE) + signature\n this.getSizeOfScriptLengthElement(redeemScriptSize) +\n redeemScriptSize;\n inputSize = 32 + 4 + this.getSizeOfletInt(scriptSigSize) + scriptSigSize + 4;\n break;\n case 'p2sh-p2wsh':\n case 'p2wsh':\n redeemScriptSize =\n 1 + // OP_M\n this.params.input_n * (1 + this.PUBKEY_SIZE) + // OP_PUSH33 <pubkey>\n 1 + // OP_N\n 1; // OP_CHECKMULTISIG\n inputWitnessSize =\n 1 + // size(0)\n this.params.input_m * (1 + this.SIGNATURE_SIZE) + // size(SIGNATURE_SIZE) + signature\n this.getSizeOfScriptLengthElement(redeemScriptSize) +\n redeemScriptSize;\n inputSize =\n 36 + // outpoint (spent UTXO ID)\n inputWitnessSize / 4 + // witness program\n 4; // nSequence\n if (this.params.input_script === 'p2sh-p2wsh') {\n inputSize += 32 + 3; // P2SH wrapper (redeemscript hash) + overhead?\n }\n break;\n default:\n assertUnreachable(this.params.input_script);\n }\n\n return {\n inputSize,\n inputWitnessSize,\n };\n }\n\n calcTxSize(opts: Partial<TxSizerParams>) {\n this.prepareParams(opts);\n const output_count = this.getOutputCount();\n const { inputSize, inputWitnessSize } = this.getSizeBasedOnInputType();\n\n const txVBytes =\n this.getTxOverheadVBytes(this.params.input_script, this.params.input_count, output_count) +\n inputSize * this.params.input_count +\n this.P2PKH_OUT_SIZE * this.params.p2pkh_output_count +\n this.P2SH_OUT_SIZE * this.params.p2sh_output_count +\n this.P2SH_P2WPKH_OUT_SIZE * this.params.p2sh_p2wpkh_output_count +\n this.P2SH_P2WSH_OUT_SIZE * this.params.p2sh_p2wsh_output_count +\n this.P2WPKH_OUT_SIZE * this.params.p2wpkh_output_count +\n this.P2WSH_OUT_SIZE * this.params.p2wsh_output_count +\n this.P2TR_OUT_SIZE * this.params.p2tr_output_count;\n\n const txBytes =\n this.getTxOverheadExtraRawBytes(this.params.input_script, this.params.input_count) +\n txVBytes +\n inputWitnessSize * this.params.input_count;\n const txWeight = txVBytes * 4;\n\n return { txVBytes, txBytes, txWeight };\n }\n\n estimateFee(vbyte: number, satVb: number) {\n if (isNaN(vbyte) || isNaN(satVb)) {\n throw new Error('Parameters should be numbers');\n }\n return vbyte * satVb;\n }\n\n formatFeeRange(fee: number, multiplier: number) {\n if (isNaN(fee) || isNaN(multiplier)) {\n throw new Error('Parameters should be numbers');\n }\n\n if (multiplier < 0) {\n throw new Error('Multiplier cant be negative');\n }\n\n const multipliedFee = fee * multiplier;\n\n return fee - multipliedFee + ' - ' + (fee + multipliedFee);\n }\n}\n","import BigNumber from 'bignumber.js';\nimport { validate } from 'bitcoin-address-validation';\n\nimport { BTC_P2WPKH_DUST_AMOUNT } from '@leather.io/constants';\nimport { Money } from '@leather.io/models';\nimport { createMoney, sumMoney } from '@leather.io/utils';\n\nimport { BitcoinError } from '../validation/bitcoin-error';\nimport { filterUneconomicalUtxos, getSizeInfo, getUtxoTotal } from './coin-selection.utils';\n\nexport interface CoinSelectionOutput {\n value: bigint;\n address?: string;\n}\n\nexport interface CoinSelectionUtxo {\n address: string;\n txid: string;\n value: number;\n vout: number;\n}\n\nexport interface CoinSelectionRecipient {\n address: string;\n amount: Money;\n}\n\nexport interface DetermineUtxosForSpendArgs {\n feeRate: number;\n recipients: CoinSelectionRecipient[];\n utxos: CoinSelectionUtxo[];\n}\n\nexport function determineUtxosForSpendAll({\n feeRate,\n recipients,\n utxos,\n}: DetermineUtxosForSpendArgs) {\n recipients.forEach(recipient => {\n if (!validate(recipient.address)) throw new BitcoinError('InvalidAddress');\n });\n const filteredUtxos = filterUneconomicalUtxos({ utxos, feeRate, recipients });\n\n const sizeInfo = getSizeInfo({\n inputLength: filteredUtxos.length,\n isSendMax: true,\n recipients,\n });\n\n // Fee has already been deducted from the amount with send all\n const outputs = recipients.map(({ address, amount }) => ({\n value: BigInt(amount.amount.toNumber()),\n address,\n }));\n\n const fee = Math.ceil(sizeInfo.txVBytes * feeRate);\n\n return {\n inputs: filteredUtxos,\n outputs,\n size: sizeInfo.txVBytes,\n fee: createMoney(new BigNumber(fee), 'BTC'),\n };\n}\n\nexport function determineUtxosForSpend({ feeRate, recipients, utxos }: DetermineUtxosForSpendArgs) {\n recipients.forEach(recipient => {\n if (!validate(recipient.address)) throw new BitcoinError('InvalidAddress');\n });\n const filteredUtxos = filterUneconomicalUtxos({\n utxos: utxos.sort((a, b) => b.value - a.value),\n feeRate,\n recipients,\n });\n if (!filteredUtxos.length) throw new BitcoinError('InsufficientFunds');\n\n const amount = sumMoney(recipients.map(recipient => recipient.amount));\n\n // Prepopulate with first utxo, at least one is needed\n const neededUtxos: CoinSelectionUtxo[] = [filteredUtxos[0]];\n\n function estimateTransactionSize() {\n return getSizeInfo({\n inputLength: neededUtxos.length,\n recipients,\n });\n }\n\n function hasSufficientUtxosForTx() {\n const txEstimation = estimateTransactionSize();\n const neededAmount = new BigNumber(txEstimation.txVBytes * feeRate).plus(amount.amount);\n return getUtxoTotal(neededUtxos).isGreaterThanOrEqualTo(neededAmount);\n }\n\n function getRemainingUnspentUtxos() {\n return filteredUtxos.filter(utxo => !neededUtxos.includes(utxo));\n }\n\n while (!hasSufficientUtxosForTx()) {\n const [nextUtxo] = getRemainingUnspentUtxos();\n if (!nextUtxo) throw new BitcoinError('InsufficientFunds');\n neededUtxos.push(nextUtxo);\n }\n\n const fee = Math.ceil(\n new BigNumber(estimateTransactionSize().txVBytes).multipliedBy(feeRate).toNumber()\n );\n\n const changeAmount =\n BigInt(getUtxoTotal(neededUtxos).toString()) - BigInt(amount.amount.toNumber()) - BigInt(fee);\n\n const changeUtxos: CoinSelectionOutput[] =\n changeAmount > BTC_P2WPKH_DUST_AMOUNT\n ? [\n {\n value: changeAmount,\n },\n ]\n : [];\n\n const outputs: CoinSelectionOutput[] = [\n ...recipients.map(({ address, amount }) => ({\n value: BigInt(amount.amount.toNumber()),\n address,\n })),\n ...changeUtxos,\n ];\n\n return {\n filteredUtxos,\n inputs: neededUtxos,\n outputs,\n size: estimateTransactionSize().txVBytes,\n fee: createMoney(new BigNumber(fee), 'BTC'),\n ...estimateTransactionSize(),\n };\n}\n","import { TransactionErrorKey } from '@leather.io/models';\n\nexport class BitcoinError extends Error {\n public message: BitcoinErrorKey;\n constructor(message: BitcoinErrorKey) {\n super(message);\n this.name = 'BitcoinError';\n this.message = message;\n\n // Fix the prototype chain\n Object.setPrototypeOf(this, new.target.prototype);\n }\n}\n\nexport type BitcoinErrorKey =\n | TransactionErrorKey\n | 'InsufficientAmount'\n | 'NoInputsToSign'\n | 'NoOutputsToSign';\n","import { AverageBitcoinFeeRates, Money } from '@leather.io/models';\n\nimport {\n CoinSelectionRecipient,\n CoinSelectionUtxo,\n DetermineUtxosForSpendArgs,\n determineUtxosForSpend,\n determineUtxosForSpendAll,\n} from '../coin-selection/coin-selection';\n\ntype GetBitcoinTransactionFeeArgs = DetermineUtxosForSpendArgs & {\n isSendingMax?: boolean;\n};\n\nexport function getBitcoinTransactionFee({ isSendingMax, ...props }: GetBitcoinTransactionFeeArgs) {\n try {\n const { fee } = isSendingMax\n ? determineUtxosForSpendAll({ ...props })\n : determineUtxosForSpend({ ...props });\n return fee;\n } catch {\n return null;\n }\n}\n\nexport interface BitcoinFees {\n blockchain: 'bitcoin';\n high: { fee: Money | null; feeRate: number };\n standard: { fee: Money | null; feeRate: number };\n low: { fee: Money | null; feeRate: number };\n}\n\nexport interface GetBitcoinFeesArgs {\n feeRates: AverageBitcoinFeeRates;\n isSendingMax?: boolean;\n recipients: CoinSelectionRecipient[];\n utxos: CoinSelectionUtxo[];\n}\nexport function getBitcoinFees({ feeRates, isSendingMax, recipients, utxos }: GetBitcoinFeesArgs) {\n const defaultArgs = {\n isSendingMax,\n recipients,\n utxos,\n };\n\n const highFeeRate = feeRates.fastestFee.toNumber();\n const standardFeeRate = feeRates.halfHourFee.toNumber();\n const lowFeeRate = feeRates.hourFee.toNumber();\n\n const highFeeValue = getBitcoinTransactionFee({\n ...defaultArgs,\n feeRate: highFeeRate,\n });\n const standardFeeValue = getBitcoinTransactionFee({\n ...defaultArgs,\n feeRate: standardFeeRate,\n });\n const lowFeeValue = getBitcoinTransactionFee({\n ...defaultArgs,\n feeRate: lowFeeRate,\n });\n\n return {\n high: { feeRate: highFeeRate, fee: highFeeValue },\n standard: { feeRate: standardFeeRate, fee: standardFeeValue },\n low: { feeRate: lowFeeRate, fee: lowFeeValue },\n };\n}\n","import { Network, validate } from 'bitcoin-address-validation';\n\nimport { BitcoinNetworkModes } from '@leather.io/models';\nimport { isEmptyString, isUndefined } from '@leather.io/utils';\n\n// todo investigate handling this in bitcoinNetworkToNetworkMode\nexport function getBitcoinAddressNetworkType(network: BitcoinNetworkModes): Network {\n // Signet uses testnet address format, this parsing is to please the\n // validation library - 'bitcoin-address-validation'\n if (network === 'signet') return Network.testnet;\n return network as Network;\n}\n\nexport function isValidBitcoinAddress(address: string) {\n if (isUndefined(address) || isEmptyString(address)) {\n return false;\n }\n\n return validate(address);\n}\n\nexport function isValidBitcoinNetworkAddress(address: string, network: BitcoinNetworkModes) {\n if (!isValidBitcoinAddress(address) || !network) {\n return false;\n }\n\n return validate(address, getBitcoinAddressNetworkType(network));\n}\n","import { BitcoinAddress } from '@leather.io/models';\n\nimport { isValidBitcoinAddress } from './address-validation';\nimport { BitcoinError } from './bitcoin-error';\n\nexport function isBitcoinAddress(value: string): value is BitcoinAddress {\n try {\n isValidBitcoinAddress(value);\n return true;\n } catch {\n return false;\n }\n}\n\n// Function to create a BitcoinAddress\nexport function createBitcoinAddress(value: string): BitcoinAddress {\n if (!isBitcoinAddress(value)) {\n throw new BitcoinError('InvalidAddress');\n }\n\n return value;\n}\n","import { createBitcoinAddress } from '../validation/bitcoin-address';\n\n// maybe these should be in mono/config?\n// from extension/tests/mocks/constants\nexport const TEST_ACCOUNT_1_NATIVE_SEGWIT_ADDRESS = createBitcoinAddress(\n 'bc1q530dz4h80kwlzywlhx2qn0k6vdtftd93c499yq'\n);\nexport const TEST_ACCOUNT_1_TAPROOT_ADDRESS = createBitcoinAddress(\n 'bc1putuzj9lyfcm8fef9jpy85nmh33cxuq9u6wyuk536t9kemdk37yjqmkc0pg'\n);\nexport const TEST_ACCOUNT_2_TAPROOT_ADDRESS = createBitcoinAddress(\n 'bc1pmk2sacpfyy4v5phl8tq6eggu4e8laztep7fsgkkx0nc6m9vydjesaw0g2r'\n);\n\nexport const TEST_TESNET_ACCOUNT_1_NATIVE_SEGWIT_ADDRESS = createBitcoinAddress(\n 'tb1q4qgnjewwun2llgken94zqjrx5kpqqycaz5522d'\n);\n\nexport const TEST_TESTNET_ACCOUNT_2_BTC_ADDRESS = createBitcoinAddress(\n 'tb1qr8me8t9gu9g6fu926ry5v44yp0wyljrespjtnz'\n);\n\nexport const TEST_TESTNET_ACCOUNT_2_TAPROOT_ADDRESS = createBitcoinAddress(\n 'tb1pve00jmp43whpqj2wpcxtc7m8wqhz0azq689y4r7h8tmj8ltaj87qj2nj6w'\n);\n\n// coin-selection.spec\nexport const recipientAddress = createBitcoinAddress('tb1qt28eagxcl9gvhq2rpj5slg7dwgxae2dn2hk93m');\nexport const legacyAddress = createBitcoinAddress('15PyZveQd28E2SHZu2ugkWZBp6iER41vXj');\nexport const segwitAddress = createBitcoinAddress('33SVjoCHJovrXxjDKLFSXo1h3t5KgkPzfH');\nexport const taprootAddress = createBitcoinAddress(\n 'tb1parwmj7533de3k2fw2kntyqacspvhm67qnjcmpqnnpfvzu05l69nsczdywd'\n);\nexport const invalidAddress = 'whoop-de-da-boop-da-de-not-a-bitcoin-address';\n\nexport const inValidCharactersAddress = createBitcoinAddress(\n 'tb1&*%wmj7533de3k2fw2kntyqacspvhm67qnjcmpqnnpfvzu05l69nsczdywd'\n);\nexport const inValidLengthAddress = createBitcoinAddress('tb1parwmj7533de3k2fw2kntyqacspvhm67wd');\n","import { ripemd160 } from '@noble/hashes/ripemd160';\nimport { sha256 } from '@noble/hashes/sha256';\nimport { base58check } from '@scure/base';\n\nimport { deriveBip39SeedFromMnemonic, deriveRootBip32Keychain } from '@leather.io/crypto';\nimport { NetworkModes } from '@leather.io/models';\n\n/**\n * @deprecated\n * Use `deriveBip39MnemonicFromSeed` from `@leather.io/crypto`\n */\nexport const deriveBtcBip49SeedFromMnemonic = deriveBip39SeedFromMnemonic;\n\n/**\n * @deprecated\n * Use `deriveRootBip32Keychain` from `@leather.io/crypto`\n */\nexport const deriveRootBtcKeychain = deriveRootBip32Keychain;\n\nexport function decodeCompressedWifPrivateKey(key: string) {\n // https://en.bitcoinwiki.org/wiki/Wallet_import_format\n // Decode Compressed WIF format private key\n const compressedWifFormatPrivateKey = base58check(sha256).decode(key);\n // Drop leading network byte, trailing public key SEC format byte\n return compressedWifFormatPrivateKey.slice(1, compressedWifFormatPrivateKey.length - 1);\n}\n\n// https://en.bitcoin.it/wiki/List_of_address_prefixes\nconst payToScriptHashMainnetPrefix = 0x05;\nexport const payToScriptHashTestnetPrefix = 0xc4;\n\nconst payToScriptHashPrefixMap: Record<NetworkModes, number> = {\n mainnet: payToScriptHashMainnetPrefix,\n testnet: payToScriptHashTestnetPrefix,\n};\n\nfunction hash160(input: Uint8Array) {\n return ripemd160(sha256(input));\n}\n\nexport function makePayToScriptHashKeyHash(publicKey: Uint8Array) {\n return hash160(publicKey);\n}\n\nexport function makePayToScriptHashAddressBytes(keyHash: Uint8Array) {\n const redeemScript = Uint8Array.from([\n ...Uint8Array.of(0x00),\n ...Uint8Array.of(keyHash.length),\n ...keyHash,\n ]);\n return hash160(redeemScript);\n}\n\nexport function makePayToScriptHashAddress(addressBytes: Uint8Array, network: NetworkModes) {\n const networkByte = payToScriptHashPrefixMap[network];\n const addressWithPrefix = Uint8Array.from([networkByte, ...addressBytes]);\n return base58check(sha256).encode(addressWithPrefix);\n}\n\nexport function publicKeyToPayToScriptHashAddress(publicKey: Uint8Array, network: NetworkModes) {\n const hash = makePayToScriptHashKeyHash(publicKey);\n const addrBytes = makePayToScriptHashAddressBytes(hash);\n return makePayToScriptHashAddress(addrBytes, network);\n}\n","import { BitcoinAddress } from '@leather.io/models';\nimport { createMoney, sumNumbers } from '@leather.io/utils';\n\nimport { inferPaymentTypeFromAddress } from '../utils/bitcoin.utils';\nimport { PsbtInput } from './psbt-inputs';\nimport { PsbtOutput } from './psbt-outputs';\n\nfunction calculateAddressInputsTotal(addresses: string[], inputs: PsbtInput[]) {\n const sumsByAddress = addresses.map(address =>\n inputs\n .filter(input => input.address === address)\n .map(input => input.value)\n .reduce((acc, curVal) => acc + curVal, 0)\n );\n\n return createMoney(sumNumbers(sumsByAddress), 'BTC');\n}\n\nfunction calculateAddressOutputsTotal(addresses: string[], outputs: PsbtOutput[]) {\n const sumsByAddress = addresses.map(address =>\n outputs\n .filter(output => output.address === address)\n .map(output => Number(output.value))\n .reduce((acc, curVal) => acc + curVal, 0)\n );\n return createMoney(sumNumbers(sumsByAddress), 'BTC');\n}\n\nfunction calculatePsbtInputsTotal(inputs: PsbtInput[]) {\n return createMoney(sumNumbers(inputs.map(input => input.value)), 'BTC');\n}\n\nfunction calculatePsbtOutputsTotal(outputs: PsbtOutput[]) {\n return createMoney(sumNumbers(outputs.map(output => output.value)), 'BTC');\n}\n\ninterface GetPsbtTotalsProps {\n psbtAddresses: BitcoinAddress[];\n parsedInputs: PsbtInput[];\n parsedOutputs: PsbtOutput[];\n}\nexport function getPsbtTotals({ psbtAddresses, parsedInputs, parsedOutputs }: GetPsbtTotalsProps) {\n const nativeSegwitAddresses = psbtAddresses.filter(\n addr => inferPaymentTypeFromAddress(addr) === 'p2wpkh'\n );\n const taprootAddresses = psbtAddresses.filter(\n addr => inferPaymentTypeFromAddress(addr) === 'p2tr'\n );\n\n return {\n inputsTotalNativeSegwit: calculateAddressInputsTotal(nativeSegwitAddresses, parsedInputs),\n inputsTotalTaproot: calculateAddressInputsTotal(taprootAddresses, parsedInputs),\n outputsTotalNativeSegwit: calculateAddressOutputsTotal(nativeSegwitAddresses, parsedOutputs),\n outputsTotalTaproot: calculateAddressOutputsTotal(taprootAddresses, parsedOutputs),\n psbtInputsTotal: calculatePsbtInputsTotal(parsedInputs),\n psbtOutputsTotal: calculatePsbtOutputsTotal(parsedOutputs),\n };\n}\n","import { bytesToHex } from '@noble/hashes/utils';\nimport type { TransactionInput } from '@scure/btc-signer/psbt';\nimport { createBitcoinAddress } from 'validation/bitcoin-address';\n\nimport type { BitcoinAddress, BitcoinNetworkModes, Inscription } from '@leather.io/models';\nimport { isDefined, isUndefined } from '@leather.io/utils';\n\nimport { getBtcSignerLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport { getBitcoinInputAddress, getBitcoinInputValue } from '../utils/bitcoin.utils';\n\nexport interface PsbtInput {\n address: BitcoinAddress;\n index?: number;\n // TODO: inject inscription later on. getParsedInputs should be a pure function\n inscription?: Inscription;\n isMutable: boolean;\n toSign: boolean;\n txid: string;\n value: number;\n bip32Derivation: TransactionInput['bip32Derivation'];\n tapBip32Derivation: TransactionInput['tapBip32Derivation'];\n}\n\ninterface GetParsedInputsArgs {\n inputs: TransactionInput[];\n indexesToSign?: number[];\n networkMode: BitcoinNetworkModes;\n psbtAddresses: BitcoinAddress[];\n}\n\ninterface GetParsedInputsResponse {\n isPsbtMutable: boolean;\n parsedInputs: PsbtInput[];\n}\nexport function getParsedInputs({\n inputs,\n indexesToSign,\n networkMode,\n psbtAddresses,\n}: GetParsedInputsArgs): GetParsedInputsResponse {\n const bitcoinNetwork = getBtcSignerLibNetworkConfigByMode(networkMode);\n\n const signAll = isUndefined(indexesToSign);\n const psbtInputs = inputs.map((input, i) => {\n const inputAddress = isDefined(input.index)\n ? getBitcoinInputAddress(input, bitcoinNetwork)\n : '';\n const bitcoinAddress = createBitcoinAddress(inputAddress);\n const isCurrentAddress = psbtAddresses.includes(bitcoinAddress);\n // Flags when not signing ALL inputs/outputs (NONE, SINGLE, and ANYONECANPAY)\n const canChange =\n isCurrentAddress &&\n !(!input.sighashType || input.sighashType === 0 || input.sighashType === 1);\n // Should we check the sighashType here before it gets to the signing lib?\n const toSignAll = isCurrentAddress && signAll;\n const toSignIndex = isCurrentAddress && !signAll && indexesToSign.includes(i);\n\n return {\n address: bitcoinAddress,\n index: input.index,\n bip32Derivation: input.bip32Derivation,\n tapBip32Derivation: input.tapBip32Derivation,\n // inscription: inscriptions[i],\n isMutable: canChange,\n toSign: toSignAll || toSignIndex,\n txid: input.txid ? bytesToHex(input.txid) : '',\n value: isDefined(input.index) ? getBitcoinInputValue(input) : 0,\n };\n });\n\n const isPsbtMutable = psbtInputs.some(input => input.isMutable);\n\n return { isPsbtMutable, parsedInputs: psbtInputs };\n}\n","import type { TransactionOutput } from '@scure/btc-signer/psbt';\n\nimport { BitcoinAddress, BitcoinNetworkModes } from '@leather.io/models';\nimport { isDefined, isUndefined } from '@leather.io/utils';\n\nimport { getBtcSignerLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport { getAddressFromOutScript } from '../utils/bitcoin.utils';\nimport { createBitcoinAddress } from '../validation/bitcoin-address';\n\nexport interface PsbtOutput {\n address: BitcoinAddress;\n isMutable: boolean;\n toSign: boolean;\n value: number;\n}\n\ninterface GetParsedOutputsArgs {\n isPsbtMutable: boolean;\n outputs: TransactionOutput[];\n networkMode: BitcoinNetworkModes;\n psbtAddresses: BitcoinAddress[];\n}\n\nexport function getParsedOutputs({\n isPsbtMutable,\n outputs,\n networkMode,\n psbtAddresses,\n}: GetParsedOutputsArgs): PsbtOutput[] {\n const bitcoinNetwork = getBtcSignerLibNetworkConfigByMode(networkMode);\n\n return outputs\n .map(output => {\n if (isUndefined(output.script)) {\n // TODO: handle error here\n // logger.error('Output has no script');\n return;\n }\n const outputAddress = createBitcoinAddress(\n getAddressFromOutScript(output.script, bitcoinNetwork)\n );\n const isCurrentAddress = psbtAddresses.includes(outputAddress);\n\n return {\n address: outputAddress,\n isMutable: isPsbtMutable,\n toSign: isCurrentAddress,\n value: Number(output.amount),\n };\n })\n .filter(isDefined);\n}\n","import { BitcoinAddress, BitcoinNetworkModes } from '@leather.io/models';\nimport { createMoney, subtractMoney } from '@leather.io/utils';\n\nimport { getPsbtTxInputs, getPsbtTxOutputs } from '../utils/bitcoin.utils';\nimport { getParsedInputs } from './psbt-inputs';\nimport { getParsedOutputs } from './psbt-outputs';\nimport { getPsbtTotals } from './psbt-totals';\nimport { getPsbtAsTransaction } from './utils';\n\ninterface GetPsbtDetailsArgs {\n psbtHex: string;\n psbtAddresses: BitcoinAddress[];\n networkMode: BitcoinNetworkModes;\n indexesToSign?: number[];\n}\nexport function getPsbtDetails({\n psbtHex,\n networkMode,\n indexesToSign,\n psbtAddresses,\n}: GetPsbtDetailsArgs) {\n const tx = getPsbtAsTransaction(psbtHex);\n const inputs = getPsbtTxInputs(tx);\n const outputs = getPsbtTxOutputs(tx);\n\n const { isPsbtMutable, parsedInputs } = getParsedInputs({\n inputs,\n indexesToSign,\n networkMode,\n psbtAddresses,\n });\n const parsedOutputs = getParsedOutputs({ isPsbtMutable, outputs, networkMode, psbtAddresses });\n\n const {\n inputsTotalNativeSegwit,\n inputsTotalTaproot,\n outputsTotalNativeSegwit,\n outputsTotalTaproot,\n psbtInputsTotal,\n psbtOutputsTotal,\n } = getPsbtTotals({\n psbtAddresses,\n parsedInputs,\n parsedOutputs,\n });\n function getFee() {\n if (psbtInputsTotal.amount.isGreaterThan(psbtOutputsTotal.amount))\n return subtractMoney(psbtInputsTotal, psbtOutputsTotal);\n return createMoney(0, 'BTC');\n }\n return {\n addressNativeSegwitTotal: subtractMoney(inputsTotalNativeSegwit, outputsTotalNativeSegwit),\n addressTaprootTotal: subtractMoney(inputsTotalTaproot, outputsTotalTaproot),\n fee: getFee(),\n isPsbtMutable,\n psbtInputs: parsedInputs,\n psbtOutputs: parsedOutputs,\n };\n}\n","import { hexToBytes } from '@noble/hashes/utils';\nimport * as btc from '@scure/btc-signer';\nimport { RawPSBTV0, RawPSBTV2 } from '@scure/btc-signer/psbt';\n\nimport { isString } from '@leather.io/utils';\n\nexport type RawPsbt = ReturnType<typeof RawPSBTV0.decode>;\n\nexport function getPsbtAsTransaction(psbt: string | Uint8Array) {\n const bytes = isString(psbt) ? hexToBytes(psbt) : psbt;\n return btc.Transaction.fromPSBT(bytes);\n}\n\nexport function getRawPsbt(psbt: string | Uint8Array): ReturnType<typeof RawPSBTV0.decode> {\n const bytes = isString(psbt) ? hexToBytes(psbt) : psbt;\n try {\n return RawPSBTV0.decode(bytes);\n } catch (e1) {\n try {\n return RawPSBTV2.decode(bytes);\n } catch (e2) {\n throw new Error(`Unable to decode PSBT, ${e1 ?? e2}`);\n }\n }\n}\n","import { HARDENED_OFFSET, HDKey } from '@scure/bip32';\nimport * as btc from '@scure/btc-signer';\nimport { P2Ret, P2TROut } from '@scure/btc-signer/payment';\nimport { SigHash } from '@scure/btc-signer/transaction';\n\nimport {\n DerivationPathDepth,\n appendAddressIndexToPath,\n decomposeDescriptor,\n deriveKeychainFromXpub,\n keyOriginToDerivationPath,\n} from '@leather.io/crypto';\nimport type { BitcoinAddress, BitcoinNetworkModes, ValueOf } from '@leather.io/models';\nimport { PaymentTypes, signatureHash } from '@leather.io/rpc';\nimport { hexToNumber, toHexString } from '@leather.io/utils';\n\nimport { getTaprootPaymentFromAddressIndex } from '../payments/p2tr-address-gen';\nimport { getNativeSegwitPaymentFromAddressIndex } from '../payments/p2wpkh-address-gen';\nimport {\n SupportedPaymentType,\n ecdsaPublicKeyToSchnorr,\n extractExtendedPublicKeyFromPolicy,\n inferPaymentTypeFromPath,\n whenSupportedPaymentType,\n} from '../utils/bitcoin.utils';\n\nexport type AllowedSighashTypes = ValueOf<typeof signatureHash> | SigHash;\n\nexport interface BitcoinAccountKeychain {\n descriptor: string;\n masterKeyFingerprint: string;\n keyOrigin: string;\n keychain: HDKey;\n xpub: string;\n}\n\nexport type WithDerivePayer<T, P> = T & { derivePayer: (args: BitcoinPayerInfo) => P };\n\nexport interface BitcoinSigner<Payment> {\n network: BitcoinNetworkModes;\n payment: Payment;\n keychain: HDKey;\n derivationPath: string;\n address: BitcoinAddress;\n publicKey: Uint8Array;\n sign(tx: btc.Transaction): void;\n signIndex(tx: btc.Transaction, index: number, allowedSighash?: AllowedSighashTypes[]): void;\n}\n\nexport interface BitcoinPayerBase {\n paymentType: PaymentTypes;\n network: BitcoinNetworkModes;\n address: BitcoinAddress;\n keyOrigin: string;\n masterKeyFingerprint: string;\n publicKey: Uint8Array;\n}\n\nexport interface BitcoinNativeSegwitPayer extends BitcoinPayerBase {\n paymentType: 'p2wpkh';\n payment: P2Ret;\n}\n\nexport interface BitcoinTaprootPayer extends BitcoinPayerBase {\n paymentType: 'p2tr';\n payment: P2TROut;\n}\n\nexport type BitcoinPayer = BitcoinNativeSegwitPayer | BitcoinTaprootPayer;\n\nexport function initializeBitcoinAccountKeychainFromDescriptor(\n descriptor: string\n): BitcoinAccountKeychain {\n const { fingerprint, keyOrigin } = decomposeDescriptor(descriptor);\n return {\n descriptor,\n xpub: extractExtendedPublicKeyFromPolicy(descriptor),\n keyOrigin,\n masterKeyFingerprint: fingerprint,\n keychain: deriveKeychainFromXpub(extractExtendedPublicKeyFromPolicy(descriptor)),\n };\n}\n\nexport interface BitcoinPayerInfo {\n receive?: number;\n addressIndex: number;\n}\nexport function deriveBitcoinPayerFromAccount(descriptor: string, network: BitcoinNetworkModes) {\n const { fingerprint, keyOrigin } = decomposeDescriptor(descriptor);\n const accountKeychain = deriveKeychainFromXpub(extractExtendedPublicKeyFromPolicy(descriptor));\n const paymentType = inferPaymentTypeFromPath(keyOrigin) as SupportedPaymentType;\n\n if (accountKeychain.depth !== DerivationPathDepth.Account)\n throw new Error('Keychain passed is not an account');\n\n return ({ receive = 0, addressIndex }: BitcoinPayerInfo) => {\n const childKeychain = accountKeychain.deriveChild(receive).deriveChild(addressIndex);\n\n const derivePayerFromAccount = whenSupportedPaymentType(paymentType)({\n p2tr: getTaprootPaymentFromAddressIndex,\n p2wpkh: getNativeSegwitPaymentFromAddressIndex,\n });\n\n const payment = derivePayerFromAccount(childKeychain, network);\n\n return {\n keyOrigin: appendAddressIndexToPath(keyOrigin, 0),\n masterKeyFingerprint: fingerprint,\n paymentType,\n network,\n payment,\n get address() {\n if (!payment.address) throw new Error('Payment address could not be derived');\n return payment.address;\n },\n get publicKey() {\n if (!childKeychain.publicKey) throw new Error('Public key could not be derived');\n return childKeychain.publicKey;\n },\n };\n };\n}\n\ninterface BtcSignerDerivationPath {\n fingerprint: number;\n path: number[];\n}\nexport type BtcSignerDefaultBip32Derivation = [Uint8Array, BtcSignerDerivationPath];\nexport type BtcSignerTapBip32Derivation = [\n Uint8Array,\n { hashes: Uint8Array[]; der: BtcSignerDerivationPath },\n];\n\ntype BtcSignerBip32Derivation = BtcSignerDefaultBip32Derivation | BtcSignerTapBip32Derivation;\n\ntype PayerToBip32DerivationArgs = Pick<\n BitcoinPayer,\n 'masterKeyFingerprint' | 'keyOrigin' | 'publicKey'\n>;\n\n/**\n * @example\n * ```ts\n * tx.addInput({\n * ...input,\n * bip32Derivation: [payerToBip32Derivation(payer)],\n * })\n * ```\n */\nexport function payerToBip32Derivation(\n args: PayerToBip32DerivationArgs\n): BtcSignerDefaultBip32Derivation {\n return [\n args.publicKey,\n {\n fingerprint: hexToNumber(args.masterKeyFingerprint),\n path: btc.bip32Path(keyOriginToDerivationPath(args.keyOrigin)),\n },\n ];\n}\n\n/**\n * @example\n * ```ts\n * tx.addInput({\n * ...input,\n * tapBip32Derivation: [payerToTapBip32Derivation(payer)],\n * })\n * ```\n */\nexport function payerToTapBip32Derivation(\n args: PayerToBip32DerivationArgs\n): BtcSignerTapBip32Derivation {\n return [\n // TODO: @kyranjamie to default to schnoor when TR so conversion isn't\n // necessary here?\n ecdsaPublicKeyToSchnorr(args.publicKey),\n {\n hashes: [],\n der: {\n fingerprint: hexToNumber(args.masterKeyFingerprint),\n path: btc.bip32Path(keyOriginToDerivationPath(args.keyOrigin)),\n },\n },\n ];\n}\n\n/**\n * @description\n * Turns key format from @scure/btc-signer lib back into key origin string\n * @example\n * ```ts\n * const [inputOne] = getPsbtTxInputs(tx);\n * const keyOrigin = serializeKeyOrigin(inputOne.bip32Derivation[0][1]);\n * ```\n */\nexport function serializeKeyOrigin({ fingerprint, path }: BtcSignerDerivationPath) {\n const values = path.map(num => (num >= HARDENED_OFFSET ? num - HARDENED_OFFSET + \"'\" : num));\n return `${toHexString(fingerprint)}/${values.join('/')}`;\n}\n\n/**\n * @description\n * Of a given set of a `tx.input`s bip32 derivation paths from\n * `@scure/btc-signer`, serialize the paths back to the string format used\n * internally\n */\nexport function extractRequiredKeyOrigins(derivation: BtcSignerBip32Derivation[]) {\n return derivation.map(([_pubkey, path]) =>\n serializeKeyOrigin('hashes' in path ? path.der : path)\n );\n}\n","import { hexToBytes } from '@noble/hashes/utils';\nimport * as btc from '@scure/btc-signer';\n\nimport {\n CoinSelectionRecipient,\n CoinSelectionUtxo,\n determineUtxosForSpend,\n determineUtxosForSpendAll,\n} from '../coin-selection/coin-selection';\nimport { BtcSignerDefaultBip32Derivation } from '../signer/bitcoin-signer';\nimport { BtcSignerNetwork } from '../utils/bitcoin.network';\nimport { BitcoinError } from '../validation/bitcoin-error';\n\nexport interface GenerateBitcoinUnsignedTransactionArgs {\n feeRate: number;\n isSendingMax?: boolean;\n payerAddress: string;\n payerPublicKey: string;\n bip32Derivation: BtcSignerDefaultBip32Derivation[];\n network: BtcSignerNetwork;\n recipients: CoinSelectionRecipient[];\n utxos: CoinSelectionUtxo[];\n}\n\nexport function generateBitcoinUnsignedTransactionNativeSegwit({\n feeRate,\n isSendingMax,\n payerAddress,\n payerPublicKey,\n bip32Derivation,\n network,\n recipients,\n utxos,\n}: GenerateBitcoinUnsignedTransactionArgs) {\n const determineUtxosArgs = { feeRate, recipients, utxos };\n const { inputs, outputs, fee } = isSendingMax\n ? determineUtxosForSpendAll(determineUtxosArgs)\n : determineUtxosForSpend(determineUtxosArgs);\n\n if (!inputs.length) throw new BitcoinError('NoInputsToSign');\n if (!outputs.length) throw new BitcoinError('NoOutputsToSign');\n\n const tx = new btc.Transaction();\n const p2wpkh = btc.p2wpkh(hexToBytes(payerPublicKey), network);\n\n for (const input of inputs) {\n tx.addInput({\n txid: input.txid,\n index: input.vout,\n sequence: 0,\n bip32Derivation,\n witnessUtxo: {\n // script = 0014 + pubKeyHash\n script: p2wpkh.script,\n amount: BigInt(input.value),\n },\n });\n }\n\n outputs.forEach(output => {\n // When coin selection returns an output with no address,\n // we assume it is a change output\n if (!output.address) {\n tx.addOutputAddress(payerAddress, BigInt(output.value), network);\n return;\n }\n tx.addOutputAddress(output.address, BigInt(output.value), network);\n });\n\n return { tx, hex: tx.hex, psbt: tx.toPSBT(), inputs, fee };\n}\n","import BigNumber from 'bignumber.js';\n\nimport { Money } from '@leather.io/models';\n\nexport const minSpendAmountInSats = 546;\n\ninterface isBtcBalanceSufficientArgs {\n amount: Money;\n spendable: Money;\n}\nexport function isBtcBalanceSufficient({\n amount: { amount },\n spendable: { amount: spendableAmount },\n}: isBtcBalanceSufficientArgs) {\n if (!spendableAmount) return false;\n const desiredSpend = new BigNumber(amount);\n const availableAmount = new BigNumber(spendableAmount);\n if (desiredSpend.isGreaterThan(availableAmount)) return false;\n return true;\n}\n\ninterface IsBtcMinimumSpendArgs {\n amount: Money;\n}\nexport function isBtcMinimumSpend({ amount: { amount } }: IsBtcMinimumSpendArgs) {\n if (!amount) return false;\n const desiredSpend = new BigNumber(amount);\n if (desiredSpend.isLessThan(minSpendAmountInSats)) return false;\n return true;\n}\n","import { BitcoinAddress, type BitcoinNetworkModes, Money } from '@leather.io/models';\n\nimport { calculateMaxSpend } from '../coin-selection/calculate-max-spend';\nimport { GetBitcoinFeesArgs } from '../fees/bitcoin-fees';\nimport { BitcoinError } from '../validation/bitcoin-error';\nimport { isValidBitcoinAddress, isValidBitcoinNetworkAddress } from './address-validation';\nimport { isBtcBalanceSufficient, isBtcMinimumSpend } from './amount-validation';\n\ninterface BitcoinTransaction extends Omit<GetBitcoinFeesArgs, 'recipients'> {\n amount: Money;\n payer: BitcoinAddress;\n recipient: BitcoinAddress;\n network: BitcoinNetworkModes;\n feeRate: number;\n}\n\nexport function isValidBitcoinTransaction({\n amount,\n payer,\n recipient,\n network,\n utxos,\n feeRate,\n feeRates,\n}: BitcoinTransaction) {\n if (!isValidBitcoinAddress(payer) || !isValidBitcoinAddress(recipient)) {\n throw new BitcoinError('InvalidAddress');\n }\n if (\n !isValidBitcoinNetworkAddress(payer, network) ||\n !isValidBitcoinNetworkAddress(recipient, network)\n ) {\n throw new BitcoinError('InvalidNetworkAddress');\n }\n\n if (!isBtcMinimumSpend({ amount })) {\n throw new BitcoinError('InsufficientAmount');\n }\n\n const { amount: spendable } = calculateMaxSpend({ recipient, utxos, feeRate, feeRates });\n if (!isBtcBalanceSufficient({ amount, spendable })) {\n throw new BitcoinError('InsufficientFunds');\n }\n}\n","import { HARDENED_OFFSET, HDKey } from '@scure/bip32';\n\nimport { BitcoinAddress } from '@leather.io/models';\nimport { createCounter } from '@leather.io/utils';\n\nimport { makeTaprootAddressIndexDerivationPath } from '../payments/p2tr-address-gen';\nimport { makeNativeSegwitAddressIndexDerivationPath } from '../payments/p2wpkh-address-gen';\nimport {\n getNativeSegwitAddress,\n getTaprootAddress,\n inferNetworkFromAddress,\n inferPaymentTypeFromAddress,\n whenSupportedPaymentType,\n} from './bitcoin.utils';\n\ninterface LookUpDerivationByAddressArgs {\n taprootXpub: string;\n nativeSegwitXpub: string;\n iterationLimit: number;\n}\nexport function lookupDerivationByAddress(args: LookUpDerivationByAddressArgs) {\n const { taprootXpub, nativeSegwitXpub, iterationLimit } = args;\n\n const taprootKeychain = HDKey.fromExtendedKey(taprootXpub);\n const nativeSegwitKeychain = HDKey.fromExtendedKey(nativeSegwitXpub);\n\n return (address: BitcoinAddress) => {\n const network = inferNetworkFromAddress(address);\n const paymentType = inferPaymentTypeFromAddress(address);\n\n const accountIndex = whenSupportedPaymentType(paymentType)({\n p2tr: taprootKeychain.index - HARDENED_OFFSET,\n p2wpkh: nativeSegwitKeychain.index - HARDENED_OFFSET,\n });\n\n function getTaprootAddressAtIndex(index: number) {\n return getTaprootAddress({ index, keychain: taprootKeychain, network });\n }\n\n function getNativeSegwitAddressAtIndex(index: number) {\n return getNativeSegwitAddress({ index, keychain: nativeSegwitKeychain, network });\n }\n\n const paymentFn = whenSupportedPaymentType(paymentType)({\n p2tr: getTaprootAddressAtIndex,\n p2wpkh: getNativeSegwitAddressAtIndex,\n });\n\n const derivationPathFn = whenSupportedPaymentType(paymentType)({\n p2tr: makeTaprootAddressIndexDerivationPath,\n p2wpkh: makeNativeSegwitAddressIndexDerivationPath,\n });\n\n const count = createCounter();\n const t0 = performance.now();\n\n while (count.getValue() <= iterationLimit) {\n const currentIndex = count.getValue();\n\n const addressToCheck = paymentFn(currentIndex);\n\n if (addressToCheck !== address) {\n count.increment();\n continue;\n }\n\n const t1 = performance.now();\n\n return {\n status: 'success',\n duration: t1 - t0,\n path: derivationPathFn(network, accountIndex, currentIndex),\n } as const;\n }\n\n return { status: 'failure' } as const;\n };\n}\n"],"mappings":"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","names":["hexToBytes","btc","DerivationPathDepth","btc","DerivationPathDepth","DerivationPathDepth","DerivationPathDepth","script","address","hexToBytes","bitcoin","address","script","BigNumber","BigNumber","BigNumber","validate","BTC_P2WPKH_DUST_AMOUNT","createMoney","validate","address","createMoney","BigNumber","BTC_P2WPKH_DUST_AMOUNT","amount","validate","address","sha256","createMoney","sumNumbers","address","createMoney","sumNumbers","isDefined","isUndefined","isUndefined","isDefined","isDefined","isUndefined","isUndefined","isDefined","createMoney","hexToBytes","btc","isString","createMoney","btc","DerivationPathDepth","DerivationPathDepth","hexToBytes","btc","p2wpkh","hexToBytes","BigNumber","HARDENED_OFFSET","HDKey","HDKey","address","HARDENED_OFFSET"]}
1
+ {"version":3,"sources":["../src/bip322/bip322-utils.ts","../src/utils/bitcoin.utils.ts","../src/payments/p2tr-address-gen.ts","../src/utils/bitcoin.network.ts","../src/payments/p2wpkh-address-gen.ts","../src/validation/address-validation.ts","../src/validation/bitcoin-error.ts","../src/validation/bitcoin-address.ts","../src/bip322/sign-message-bip322-bitcoinjs.ts","../src/coin-selection/calculate-max-spend.ts","../src/coin-selection/coin-selection.utils.ts","../src/fees/btc-size-fee-estimator.ts","../src/coin-selection/coin-selection.ts","../src/fees/bitcoin-fees.ts","../src/mocks/mocks.ts","../src/payments/p2wsh-p2sh-address-gen.ts","../src/psbt/psbt-totals.ts","../src/psbt/psbt-inputs.ts","../src/psbt/psbt-outputs.ts","../src/psbt/psbt-details.ts","../src/psbt/utils.ts","../src/signer/bitcoin-signer.ts","../src/transactions/generate-unsigned-transaction.ts","../src/validation/amount-validation.ts","../src/validation/transaction-validation.ts","../src/utils/lookup-derivation-by-address.ts"],"sourcesContent":["import ecc from '@bitcoinerlab/secp256k1';\nimport { sha256 } from '@noble/hashes/sha256';\nimport { hexToBytes, utf8ToBytes } from '@noble/hashes/utils';\nimport * as bitcoin from 'bitcoinjs-lib';\nimport { ECPairFactory } from 'ecpair';\nimport { encode } from 'varuint-bitcoin';\n\nimport { PaymentTypes } from '@leather.io/rpc';\nimport { isString } from '@leather.io/utils';\n\nimport { toXOnly } from '../utils/bitcoin.utils';\n\nconst bip322MessageTag = 'BIP0322-signed-message';\n\nconst ECPair = ECPairFactory(ecc);\nbitcoin.initEccLib(ecc);\n\nexport function ecPairFromPrivateKey(key: Uint8Array) {\n return ECPair.fromPrivateKey(Buffer.from(key));\n}\n\n// See tagged hashes section of BIP-340\n// https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki#design\nconst messageTagHash = Uint8Array.from([\n ...sha256(utf8ToBytes(bip322MessageTag)),\n ...sha256(utf8ToBytes(bip322MessageTag)),\n]);\n\nexport function hashBip322Message(message: Uint8Array | string) {\n return sha256(\n Uint8Array.from([...messageTagHash, ...(isString(message) ? utf8ToBytes(message) : message)])\n );\n}\n\nexport const bip322TransactionToSignValues = {\n prevoutHash: hexToBytes('0000000000000000000000000000000000000000000000000000000000000000'),\n prevoutIndex: 0xffffffff,\n sequence: 0,\n};\n\nfunction encodeVarString(b: Buffer) {\n return Buffer.concat([encode(b.byteLength), b]);\n}\n\nconst supportedMessageSigningPaymentTypes: PaymentTypes[] = ['p2wpkh', 'p2tr'];\n\nexport function isSupportedMessageSigningPaymentType(paymentType: string) {\n return supportedMessageSigningPaymentTypes.includes(paymentType as PaymentTypes);\n}\n\n/**\n * Encode witness data for a BIP322 message\n * TODO: Refactor to remove `Buffer` use\n */\nexport function encodeMessageWitnessData(witnessArray: Buffer[]) {\n const len = encode(witnessArray.length);\n return Buffer.concat([len, ...witnessArray.map(witness => encodeVarString(witness))]);\n}\n\nfunction tapTweakHash(pubKey: Buffer, h: Buffer | undefined): Buffer {\n return bitcoin.crypto.taggedHash('TapTweak', Buffer.concat(h ? [pubKey, h] : [pubKey]));\n}\n\nexport function tweakSigner(signer: bitcoin.Signer, opts: any = {}): bitcoin.Signer {\n // @ts-expect-error privateKey exists on signer\n let privateKey: Uint8Array | undefined = signer.privateKey;\n if (!privateKey) {\n throw new Error('Private key is required for tweaking signer!');\n }\n if (signer.publicKey[0] === 3) {\n privateKey = ecc.privateNegate(privateKey);\n }\n\n const tweakedPrivateKey = ecc.privateAdd(\n privateKey,\n tapTweakHash(toXOnly(signer.publicKey), opts.tweakHash)\n );\n if (!tweakedPrivateKey) {\n throw new Error('Invalid tweaked private key!');\n }\n\n return ECPair.fromPrivateKey(Buffer.from(tweakedPrivateKey), {\n network: opts.network,\n });\n}\n","import { hexToBytes } from '@noble/hashes/utils';\nimport { HDKey, Versions } from '@scure/bip32';\nimport { mnemonicToSeedSync } from '@scure/bip39';\nimport * as btc from '@scure/btc-signer';\nimport { TransactionInput, TransactionOutput } from '@scure/btc-signer/psbt';\n\nimport {\n DerivationPathDepth,\n extractAccountIndexFromPath,\n extractPurposeFromPath,\n} from '@leather.io/crypto';\nimport { BitcoinAddress, BitcoinNetworkModes, NetworkModes } from '@leather.io/models';\nimport type { BitcoinPaymentTypes } from '@leather.io/rpc';\nimport { defaultWalletKeyId, isDefined, whenNetwork } from '@leather.io/utils';\n\nimport { getTaprootPayment } from '../payments/p2tr-address-gen';\nimport { getNativeSegwitPaymentFromAddressIndex } from '../payments/p2wpkh-address-gen';\nimport { createBitcoinAddress } from '../validation/bitcoin-address';\nimport { BtcSignerNetwork, getBtcSignerLibNetworkConfigByMode } from './bitcoin.network';\n\nexport interface BitcoinAccount {\n type: BitcoinPaymentTypes;\n derivationPath: string;\n keychain: HDKey;\n accountIndex: number;\n network: BitcoinNetworkModes;\n}\nexport function initBitcoinAccount(derivationPath: string, policy: string): BitcoinAccount {\n const xpub = extractExtendedPublicKeyFromPolicy(policy);\n const network = inferNetworkFromPath(derivationPath);\n return {\n keychain: HDKey.fromExtendedKey(xpub, getHdKeyVersionsFromNetwork(network)),\n network,\n derivationPath,\n type: inferPaymentTypeFromPath(derivationPath),\n accountIndex: extractAccountIndexFromPath(derivationPath),\n };\n}\n\n/**\n * Represents a map of `BitcoinNetworkModes` to `NetworkModes`. While Bitcoin\n * has a number of networks, its often only necessary to consider the higher\n * level concept of mainnet and testnet\n */\nexport const bitcoinNetworkToCoreNetworkMap: Record<BitcoinNetworkModes, NetworkModes> = {\n mainnet: 'mainnet',\n testnet: 'testnet',\n regtest: 'testnet',\n signet: 'testnet',\n};\nexport function bitcoinNetworkModeToCoreNetworkMode(mode: BitcoinNetworkModes) {\n return bitcoinNetworkToCoreNetworkMap[mode];\n}\n\ntype BitcoinNetworkMap<T> = Record<BitcoinNetworkModes, T>;\n\nexport function whenBitcoinNetwork(mode: BitcoinNetworkModes) {\n return <T extends BitcoinNetworkMap<unknown>>(networkMap: T) =>\n networkMap[mode] as T[BitcoinNetworkModes];\n}\n\n/**\n * Map representing the \"Coin Type\" section of a derivation path.\n * Consider example below, Coin type is one, thus testnet\n * @example\n * `m/86'/1'/0'/0/0`\n */\nexport const coinTypeMap: Record<NetworkModes, 0 | 1> = {\n mainnet: 0,\n testnet: 1,\n};\n\nexport function getBitcoinCoinTypeIndexByNetwork(network: BitcoinNetworkModes) {\n return coinTypeMap[bitcoinNetworkModeToCoreNetworkMode(network)];\n}\n\nexport function deriveAddressIndexKeychainFromAccount(keychain: HDKey) {\n if (keychain.depth !== DerivationPathDepth.Account)\n throw new Error('Keychain passed is not an account');\n\n return (index: number) => keychain.deriveChild(0).deriveChild(index);\n}\n\nexport function deriveAddressIndexZeroFromAccount(keychain: HDKey) {\n return deriveAddressIndexKeychainFromAccount(keychain)(0);\n}\n\nexport const ecdsaPublicKeyLength = 33;\n\nexport function ecdsaPublicKeyToSchnorr(pubKey: Uint8Array) {\n if (pubKey.byteLength !== ecdsaPublicKeyLength) throw new Error('Invalid public key length');\n return pubKey.slice(1);\n}\n\n// Basically same as above, to remove\nexport function toXOnly(pubKey: Buffer) {\n return pubKey.length === 32 ? pubKey : pubKey.subarray(1, 33);\n}\n\nexport function decodeBitcoinTx(tx: string): ReturnType<typeof btc.RawTx.decode> {\n return btc.RawTx.decode(hexToBytes(tx));\n}\n\nexport function getAddressFromOutScript(\n script: Uint8Array,\n bitcoinNetwork: BtcSignerNetwork\n): BitcoinAddress | null {\n const outputScript = btc.OutScript.decode(script);\n\n switch (outputScript.type) {\n case 'pkh':\n case 'sh':\n case 'wpkh':\n case 'wsh':\n return createBitcoinAddress(\n btc.Address(bitcoinNetwork).encode({\n type: outputScript.type,\n hash: outputScript.hash,\n })\n );\n case 'tr':\n return createBitcoinAddress(\n btc.Address(bitcoinNetwork).encode({\n type: outputScript.type,\n pubkey: outputScript.pubkey,\n })\n );\n case 'ms':\n return createBitcoinAddress(btc.p2ms(outputScript.m, outputScript.pubkeys).address ?? '');\n case 'pk':\n return createBitcoinAddress(btc.p2pk(outputScript.pubkey, bitcoinNetwork).address ?? '');\n case 'unknown':\n case 'tr_ms':\n case 'tr_ns':\n default:\n return null;\n }\n}\n\n/**\n * Payment type identifiers, as described by `@scure/btc-signer` library\n */\nexport type BtcSignerLibPaymentTypeIdentifers = 'wpkh' | 'wsh' | 'tr' | 'pkh' | 'sh';\n\nexport const paymentTypeMap: Record<BtcSignerLibPaymentTypeIdentifers, BitcoinPaymentTypes> = {\n wpkh: 'p2wpkh',\n wsh: 'p2wpkh-p2sh',\n tr: 'p2tr',\n pkh: 'p2pkh',\n sh: 'p2sh',\n};\n\nexport function btcSignerLibPaymentTypeToPaymentTypeMap(\n payment: BtcSignerLibPaymentTypeIdentifers\n) {\n return paymentTypeMap[payment];\n}\n\nexport function isBtcSignerLibPaymentType(\n payment: string\n): payment is BtcSignerLibPaymentTypeIdentifers {\n return payment in paymentTypeMap;\n}\n\nexport function parseKnownPaymentType(\n payment: BtcSignerLibPaymentTypeIdentifers | BitcoinPaymentTypes\n) {\n return isBtcSignerLibPaymentType(payment)\n ? btcSignerLibPaymentTypeToPaymentTypeMap(payment)\n : payment;\n}\n\nexport type PaymentTypeMap<T> = Record<BitcoinPaymentTypes, T>;\nexport function whenPaymentType(mode: BitcoinPaymentTypes | BtcSignerLibPaymentTypeIdentifers) {\n return <T>(paymentMap: PaymentTypeMap<T>): T => paymentMap[parseKnownPaymentType(mode)];\n}\n\nexport type SupportedPaymentType = 'p2wpkh' | 'p2tr';\nexport type SupportedPaymentTypeMap<T> = Record<SupportedPaymentType, T>;\nexport function whenSupportedPaymentType(mode: SupportedPaymentType) {\n return <T>(paymentMap: SupportedPaymentTypeMap<T>): T => paymentMap[mode];\n}\n\n/**\n * Infers the Bitcoin payment type from the derivation path.\n * Below we see path has 86 in it, per convention, this refers to taproot payments\n * @example\n * `m/86'/1'/0'/0/0`\n */\nexport function inferPaymentTypeFromPath(path: string): BitcoinPaymentTypes {\n const purpose = extractPurposeFromPath(path);\n switch (purpose) {\n case 84:\n return 'p2wpkh';\n case 86:\n return 'p2tr';\n case 44:\n return 'p2pkh';\n default:\n throw new Error(`Unable to infer payment type from purpose=${purpose}`);\n }\n}\n\nexport function inferNetworkFromPath(path: string): NetworkModes {\n return path.split('/')[2].startsWith('0') ? 'mainnet' : 'testnet';\n}\n\nexport function extractExtendedPublicKeyFromPolicy(policy: string) {\n return policy.split(']')[1];\n}\n\nexport function createWalletIdDecoratedPath(policy: string, walletId: string) {\n return policy.split(']')[0].replace('[', '').replace('m', walletId);\n}\n\n// Primarily used to get the correct `Version` when passing Ledger Bitcoin\n// extended public keys to the HDKey constructor\nexport function getHdKeyVersionsFromNetwork(network: NetworkModes) {\n return whenNetwork(network)({\n mainnet: undefined,\n testnet: {\n private: 0x00000000,\n public: 0x043587cf,\n } as Versions,\n });\n}\n\nexport function getBitcoinInputAddress(input: TransactionInput, bitcoinNetwork: BtcSignerNetwork) {\n if (isDefined(input.witnessUtxo))\n return getAddressFromOutScript(input.witnessUtxo.script, bitcoinNetwork);\n if (isDefined(input.nonWitnessUtxo) && isDefined(input.index))\n return getAddressFromOutScript(\n input.nonWitnessUtxo.outputs[input.index]?.script,\n bitcoinNetwork\n );\n return null;\n}\n\nexport function getInputPaymentType(\n input: TransactionInput,\n network: BitcoinNetworkModes\n): BitcoinPaymentTypes {\n const address = getBitcoinInputAddress(input, getBtcSignerLibNetworkConfigByMode(network));\n if (address === null) throw new Error('Input address cannot be empty');\n if (address.startsWith('bc1p') || address.startsWith('tb1p') || address.startsWith('bcrt1p'))\n return 'p2tr';\n if (address.startsWith('bc1q') || address.startsWith('tb1q') || address.startsWith('bcrt1q'))\n return 'p2wpkh';\n throw new Error('Unable to infer payment type from input address');\n}\n\n// Ledger wallets are keyed by their derivation path. To reuse the look up logic\n// between payment types, this factory fn accepts a fn that generates the path\nexport function lookUpLedgerKeysByPath(\n getDerivationPath: (network: BitcoinNetworkModes, accountIndex: number) => string\n) {\n return (\n ledgerKeyMap: Record<string, { policy: string } | undefined>,\n network: BitcoinNetworkModes\n ) =>\n (accountIndex: number) => {\n const path = getDerivationPath(network, accountIndex);\n // Single wallet mode, hardcoded default walletId\n const account = ledgerKeyMap[path.replace('m', defaultWalletKeyId)];\n if (!account) return;\n return initBitcoinAccount(path, account.policy);\n };\n}\n\ninterface GetAddressArgs {\n index: number;\n keychain?: HDKey;\n network: BitcoinNetworkModes;\n}\n\nexport function getTaprootAddress({ index, keychain, network }: GetAddressArgs) {\n if (!keychain) throw new Error('Expected keychain to be provided');\n\n if (keychain.depth !== DerivationPathDepth.Account)\n throw new Error('Expects keychain to be on the account index');\n\n const addressIndex = deriveAddressIndexKeychainFromAccount(keychain)(index);\n\n if (!addressIndex.publicKey) throw new Error('Expected publicKey to be defined');\n\n const payment = getTaprootPayment(addressIndex.publicKey, network);\n\n if (!payment.address) throw new Error('Expected address to be defined');\n return payment.address;\n}\n\nexport function getNativeSegwitAddress({ index, keychain, network }: GetAddressArgs) {\n if (!keychain) throw new Error('Expected keychain to be provided');\n\n if (keychain.depth !== DerivationPathDepth.Account)\n throw new Error('Expects keychain to be on the account index');\n\n const addressIndex = deriveAddressIndexKeychainFromAccount(keychain)(index);\n\n if (!addressIndex.publicKey) throw new Error('Expected publicKey to be defined');\n\n const payment = getNativeSegwitPaymentFromAddressIndex(addressIndex, network);\n\n if (!payment.address) throw new Error('Expected address to be defined');\n return payment.address;\n}\n\n/**\n * @deprecated\n * Use `deriveRootBip32Keychain` in `@leather.io/crypto` instead\n */\nexport function mnemonicToRootNode(secretKey: string) {\n const seed = mnemonicToSeedSync(secretKey);\n return HDKey.fromMasterSeed(seed);\n}\n\nexport function getPsbtTxInputs(psbtTx: btc.Transaction): TransactionInput[] {\n const inputsLength = psbtTx.inputsLength;\n const inputs: TransactionInput[] = [];\n for (let i = 0; i < inputsLength; i++) inputs.push(psbtTx.getInput(i));\n return inputs;\n}\n\nexport function getPsbtTxOutputs(psbtTx: btc.Transaction): TransactionOutput[] {\n const outputsLength = psbtTx.outputsLength;\n const outputs: TransactionOutput[] = [];\n for (let i = 0; i < outputsLength; i++) outputs.push(psbtTx.getOutput(i));\n return outputs;\n}\n\nexport function inferNetworkFromAddress(address: BitcoinAddress): BitcoinNetworkModes {\n if (address.startsWith('bc1')) return 'mainnet';\n if (address.startsWith('tb1')) return 'testnet';\n if (address.startsWith('bcrt1')) return 'regtest';\n\n const firstChar = address[0];\n\n if (firstChar === '1' || firstChar === '3') return 'mainnet';\n if (firstChar === 'm' || firstChar === 'n') return 'testnet';\n if (firstChar === '2') return 'testnet';\n\n throw new Error('Invalid or unsupported Bitcoin address format');\n}\n\nexport function inferPaymentTypeFromAddress(address: BitcoinAddress): SupportedPaymentType {\n if (address.startsWith('bc1q') || address.startsWith('tb1q') || address.startsWith('bcrt1q'))\n return 'p2wpkh';\n\n if (address.startsWith('bc1p') || address.startsWith('tb1p') || address.startsWith('bcrt1p'))\n return 'p2tr';\n\n throw new Error('Unable to infer payment type from address');\n}\n\nexport function getBitcoinInputValue(input: TransactionInput) {\n if (isDefined(input.witnessUtxo)) return Number(input.witnessUtxo.amount);\n if (isDefined(input.nonWitnessUtxo) && isDefined(input.index))\n return Number(input.nonWitnessUtxo.outputs[input.index]?.amount);\n // logger.warn('Unable to find either `witnessUtxo` or `nonWitnessUtxo` in input. Defaulting to 0');\n return 0;\n}\n","import { HDKey } from '@scure/bip32';\nimport * as btc from '@scure/btc-signer';\n\nimport { DerivationPathDepth } from '@leather.io/crypto';\nimport { BitcoinNetworkModes } from '@leather.io/models';\n\nimport { getBtcSignerLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport {\n BitcoinAccount,\n deriveAddressIndexZeroFromAccount,\n ecdsaPublicKeyToSchnorr,\n getBitcoinCoinTypeIndexByNetwork,\n} from '../utils/bitcoin.utils';\n\nexport function makeTaprootAccountDerivationPath(\n network: BitcoinNetworkModes,\n accountIndex: number\n) {\n return `m/86'/${getBitcoinCoinTypeIndexByNetwork(network)}'/${accountIndex}'`;\n}\n/** @deprecated Use makeTaprootAccountDerivationPath */\nexport const getTaprootAccountDerivationPath = makeTaprootAccountDerivationPath;\n\nexport function makeTaprootAddressIndexDerivationPath(\n network: BitcoinNetworkModes,\n accountIndex: number,\n addressIndex: number\n) {\n return makeTaprootAccountDerivationPath(network, accountIndex) + `/0/${addressIndex}`;\n}\n/** @deprecated Use makeTaprootAddressIndexDerivationPath */\nexport const getTaprootAddressIndexDerivationPath = makeTaprootAddressIndexDerivationPath;\n\nexport function deriveTaprootAccount(keychain: HDKey, network: BitcoinNetworkModes) {\n if (keychain.depth !== DerivationPathDepth.Root)\n throw new Error('Keychain passed is not an account');\n\n return (accountIndex: number): BitcoinAccount => ({\n type: 'p2tr',\n network,\n accountIndex,\n derivationPath: makeTaprootAccountDerivationPath(network, accountIndex),\n keychain: keychain.derive(makeTaprootAccountDerivationPath(network, accountIndex)),\n });\n}\n\nexport function getTaprootPayment(publicKey: Uint8Array, network: BitcoinNetworkModes) {\n return btc.p2tr(\n ecdsaPublicKeyToSchnorr(publicKey),\n undefined,\n getBtcSignerLibNetworkConfigByMode(network),\n true // allow unknown outputs\n );\n}\n\nexport function getTaprootPaymentFromAddressIndex(keychain: HDKey, network: BitcoinNetworkModes) {\n if (keychain.depth !== DerivationPathDepth.AddressIndex)\n throw new Error('Keychain passed is not an address index');\n\n if (!keychain.publicKey) throw new Error('Keychain has no public key');\n\n return getTaprootPayment(keychain.publicKey, network);\n}\n\ninterface DeriveTaprootReceiveAddressIndexArgs {\n keychain: HDKey;\n network: BitcoinNetworkModes;\n}\nexport function deriveTaprootReceiveAddressIndexZero({\n keychain,\n network,\n}: DeriveTaprootReceiveAddressIndexArgs) {\n const zeroAddressIndex = deriveAddressIndexZeroFromAccount(keychain);\n return {\n keychain: zeroAddressIndex,\n payment: getTaprootPaymentFromAddressIndex(zeroAddressIndex, network),\n };\n}\n","import * as bitcoinJs from 'bitcoinjs-lib';\n\nimport { BitcoinNetworkModes } from '@leather.io/models';\n\n// TODO - this PR was merged so we could update this\n// https://github.com/paulmillr/scure-btc-signer/blob/main/src/utils.ts\n// See this PR https://github.com/paulmillr/@scure/btc-signer/pull/15\n// Atttempting to add these directly to the library\nexport interface BtcSignerNetwork {\n bech32: string;\n pubKeyHash: number;\n scriptHash: number;\n wif: number;\n}\n\nconst bitcoinMainnet: BtcSignerNetwork = {\n bech32: 'bc',\n pubKeyHash: 0x00,\n scriptHash: 0x05,\n wif: 0x80,\n};\n\nconst bitcoinTestnet: BtcSignerNetwork = {\n bech32: 'tb',\n pubKeyHash: 0x6f,\n scriptHash: 0xc4,\n wif: 0xef,\n};\n\nconst bitcoinRegtest: BtcSignerNetwork = {\n bech32: 'bcrt',\n pubKeyHash: 0x6f,\n scriptHash: 0xc4,\n wif: 0xef,\n};\n\nconst btcSignerLibNetworks: Record<BitcoinNetworkModes, BtcSignerNetwork> = {\n mainnet: bitcoinMainnet,\n testnet: bitcoinTestnet,\n regtest: bitcoinRegtest,\n // Signet originally was going to have its own prefix but authors decided to\n // copy testnet\n signet: bitcoinTestnet,\n};\n\nexport function getBtcSignerLibNetworkConfigByMode(network: BitcoinNetworkModes) {\n return btcSignerLibNetworks[network];\n}\n\nconst bitcoinJsLibNetworks: Record<BitcoinNetworkModes, bitcoinJs.Network> = {\n mainnet: bitcoinJs.networks.bitcoin,\n testnet: bitcoinJs.networks.testnet,\n regtest: bitcoinJs.networks.regtest,\n signet: bitcoinJs.networks.testnet,\n};\n\nexport function getBitcoinJsLibNetworkConfigByMode(network: BitcoinNetworkModes) {\n return bitcoinJsLibNetworks[network];\n}\n","import { HDKey } from '@scure/bip32';\nimport * as btc from '@scure/btc-signer';\n\nimport { DerivationPathDepth } from '@leather.io/crypto';\nimport { BitcoinNetworkModes } from '@leather.io/models';\n\nimport { getBtcSignerLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport {\n BitcoinAccount,\n deriveAddressIndexZeroFromAccount,\n getBitcoinCoinTypeIndexByNetwork,\n} from '../utils/bitcoin.utils';\n\nexport function makeNativeSegwitAccountDerivationPath(\n network: BitcoinNetworkModes,\n accountIndex: number\n) {\n return `m/84'/${getBitcoinCoinTypeIndexByNetwork(network)}'/${accountIndex}'`;\n}\n\n/** @deprecated Use makeNativeSegwitAccountDerivationPath */\nexport const getNativeSegwitAccountDerivationPath = makeNativeSegwitAccountDerivationPath;\n\nexport function makeNativeSegwitAddressIndexDerivationPath(\n network: BitcoinNetworkModes,\n accountIndex: number,\n addressIndex: number\n) {\n return makeNativeSegwitAccountDerivationPath(network, accountIndex) + `/0/${addressIndex}`;\n}\n\n/** @deprecated Use makeNativeSegwitAddressIndexDerivationPath */\nexport const getNativeSegwitAddressIndexDerivationPath = makeNativeSegwitAddressIndexDerivationPath;\n\nexport function deriveNativeSegwitAccountFromRootKeychain(\n keychain: HDKey,\n network: BitcoinNetworkModes\n) {\n if (keychain.depth !== DerivationPathDepth.Root) throw new Error('Keychain passed is not a root');\n return (accountIndex: number): BitcoinAccount => ({\n type: 'p2wpkh',\n network,\n accountIndex,\n derivationPath: makeNativeSegwitAccountDerivationPath(network, accountIndex),\n keychain: keychain.derive(makeNativeSegwitAccountDerivationPath(network, accountIndex)),\n });\n}\n\nexport function getNativeSegwitPaymentFromAddressIndex(\n keychain: HDKey,\n network: BitcoinNetworkModes\n) {\n if (keychain.depth !== DerivationPathDepth.AddressIndex)\n throw new Error('Keychain passed is not an address index');\n\n if (!keychain.publicKey) throw new Error('Keychain does not have a public key');\n\n return btc.p2wpkh(keychain.publicKey, getBtcSignerLibNetworkConfigByMode(network));\n}\n\ninterface DeriveNativeSegwitReceiveAddressIndexArgs {\n keychain: HDKey;\n network: BitcoinNetworkModes;\n}\nexport function deriveNativeSegwitReceiveAddressIndexZero({\n keychain,\n network,\n}: DeriveNativeSegwitReceiveAddressIndexArgs) {\n const zeroAddressIndex = deriveAddressIndexZeroFromAccount(keychain);\n return {\n keychain: zeroAddressIndex,\n payment: getNativeSegwitPaymentFromAddressIndex(zeroAddressIndex, network),\n };\n}\n","import { Network, validate } from 'bitcoin-address-validation';\n\nimport { BitcoinNetworkModes } from '@leather.io/models';\nimport { isEmptyString, isUndefined } from '@leather.io/utils';\n\n// todo investigate handling this in bitcoinNetworkToNetworkMode\nexport function getBitcoinAddressNetworkType(network: BitcoinNetworkModes): Network {\n // Signet uses testnet address format, this parsing is to please the\n // validation library - 'bitcoin-address-validation'\n if (network === 'signet') return Network.testnet;\n return network as Network;\n}\n\nexport function isValidBitcoinAddress(address: string) {\n if (isUndefined(address) || isEmptyString(address)) {\n return false;\n }\n\n return validate(address);\n}\n\nexport function isValidBitcoinNetworkAddress(address: string, network: BitcoinNetworkModes) {\n if (!isValidBitcoinAddress(address) || !network) {\n return false;\n }\n\n return validate(address, getBitcoinAddressNetworkType(network));\n}\n","import { TransactionErrorKey } from '@leather.io/models';\n\nexport class BitcoinError extends Error {\n public message: BitcoinErrorKey;\n constructor(message: BitcoinErrorKey) {\n super(message);\n this.name = 'BitcoinError';\n this.message = message;\n\n // Fix the prototype chain\n Object.setPrototypeOf(this, new.target.prototype);\n }\n}\n\nexport type BitcoinErrorKey =\n | TransactionErrorKey\n | 'InsufficientAmount'\n | 'NoInputsToSign'\n | 'NoOutputsToSign';\n","import { BitcoinAddress } from '@leather.io/models';\n\nimport { isValidBitcoinAddress } from './address-validation';\nimport { BitcoinError } from './bitcoin-error';\n\nexport function isBitcoinAddress(value: string): value is BitcoinAddress {\n try {\n isValidBitcoinAddress(value);\n return true;\n } catch {\n return false;\n }\n}\n\n// Function to create a BitcoinAddress\nexport function createBitcoinAddress(value: string): BitcoinAddress {\n if (!isBitcoinAddress(value)) {\n throw new BitcoinError('InvalidAddress');\n }\n\n return value;\n}\n","import { base64 } from '@scure/base';\nimport * as btc from '@scure/btc-signer';\nimport * as bitcoin from 'bitcoinjs-lib';\n\nimport { BitcoinAddress, BitcoinNetworkModes } from '@leather.io/models';\n\nimport { getBitcoinJsLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport {\n bip322TransactionToSignValues,\n ecPairFromPrivateKey,\n encodeMessageWitnessData,\n hashBip322Message,\n tweakSigner,\n} from './bip322-utils';\n\nexport function createNativeSegwitBitcoinJsSigner(privateKey: Buffer) {\n return ecPairFromPrivateKey(privateKey);\n}\n\nexport function createTaprootBitcoinJsSigner(privateKey: Buffer) {\n return tweakSigner(ecPairFromPrivateKey(privateKey));\n}\n\nexport function createToSpendTx(\n address: BitcoinAddress,\n message: string,\n network: BitcoinNetworkModes\n) {\n const { prevoutHash, prevoutIndex, sequence } = bip322TransactionToSignValues;\n\n const script = bitcoin.address.toOutputScript(\n address,\n getBitcoinJsLibNetworkConfigByMode(network)\n );\n\n const hash = hashBip322Message(message);\n const commands = [0, Buffer.from(hash)];\n const scriptSig = bitcoin.script.compile(commands);\n\n const virtualToSpend = new bitcoin.Transaction();\n virtualToSpend.version = 0;\n virtualToSpend.addInput(Buffer.from(prevoutHash), prevoutIndex, sequence, scriptSig);\n virtualToSpend.addOutput(script, 0);\n return { virtualToSpend, script };\n}\n\nfunction createToSignTx(toSpendTxHex: Buffer, script: Buffer, network: BitcoinNetworkModes) {\n const virtualToSign = new bitcoin.Psbt({ network: getBitcoinJsLibNetworkConfigByMode(network) });\n virtualToSign.setVersion(0);\n const prevTxHash = toSpendTxHex;\n const prevOutIndex = 0;\n const toSignScriptSig = bitcoin.script.compile([bitcoin.script.OPS.OP_RETURN]);\n\n virtualToSign.addInput({\n hash: prevTxHash,\n index: prevOutIndex,\n sequence: 0,\n witnessUtxo: { script, value: 0 },\n });\n\n virtualToSign.addOutput({ script: toSignScriptSig, value: 0 });\n return virtualToSign;\n}\n\ninterface SignBip322MessageSimple {\n address: BitcoinAddress;\n message: string;\n network: BitcoinNetworkModes;\n signPsbt(psbt: bitcoin.Psbt): Promise<btc.Transaction>;\n}\nexport async function signBip322MessageSimple(args: SignBip322MessageSimple) {\n const { address, message, network, signPsbt } = args;\n\n const { virtualToSpend, script } = createToSpendTx(address, message, network);\n\n const virtualToSign = createToSignTx(virtualToSpend.getHash(), script, network);\n\n const signedTx = await signPsbt(virtualToSign);\n\n const asBitcoinJsTransaction = bitcoin.Psbt.fromBuffer(Buffer.from(signedTx.toPSBT()));\n\n asBitcoinJsTransaction.finalizeInput(0);\n\n // sign the tx\n // section 5.1\n // github.com/LegReq/bip0322-signatures/blob/master/BIP0322_signing.ipynb\n const toSignTx = asBitcoinJsTransaction.extractTransaction();\n\n const result = encodeMessageWitnessData(toSignTx.ins[0].witness);\n\n return {\n virtualToSpend,\n virtualToSign: toSignTx,\n unencodedSig: result,\n signature: base64.encode(result),\n };\n}\n","import type { AverageBitcoinFeeRates, BitcoinAddress, Money } from '@leather.io/models';\nimport { createMoney } from '@leather.io/utils';\n\nimport { CoinSelectionUtxo } from '../coin-selection/coin-selection';\nimport {\n filterUneconomicalUtxos,\n getSpendableAmount,\n} from '../coin-selection/coin-selection.utils';\n\ninterface CalculateMaxSpendArgs {\n recipient: BitcoinAddress;\n utxos: CoinSelectionUtxo[];\n feeRates?: AverageBitcoinFeeRates;\n feeRate?: number;\n}\n\ninterface CalculateMaxSpendResponse {\n spendAllFee: number;\n amount: Money;\n}\nexport function calculateMaxSpend({\n recipient,\n utxos,\n feeRate,\n feeRates,\n}: CalculateMaxSpendArgs): CalculateMaxSpendResponse {\n if (!utxos.length || !feeRates)\n return {\n spendAllFee: 0,\n amount: createMoney(0, 'BTC'),\n };\n\n const currentFeeRate = feeRate ?? feeRates.halfHourFee.toNumber();\n\n const filteredUtxos = filterUneconomicalUtxos({\n utxos,\n feeRate: currentFeeRate,\n recipients: [{ address: recipient, amount: createMoney(0, 'BTC') }],\n });\n\n const { spendableAmount, fee } = getSpendableAmount({\n utxos: filteredUtxos,\n feeRate: currentFeeRate,\n recipients: [{ address: recipient, amount: createMoney(0, 'BTC') }],\n isSendMax: true,\n });\n\n return {\n spendAllFee: fee,\n amount: createMoney(spendableAmount, 'BTC'),\n };\n}\n","import BigNumber from 'bignumber.js';\nimport validate, { AddressInfo, AddressType, getAddressInfo } from 'bitcoin-address-validation';\n\nimport { BTC_P2WPKH_DUST_AMOUNT } from '@leather.io/constants';\nimport { sumNumbers } from '@leather.io/utils';\n\nimport { BtcSizeFeeEstimator } from '../fees/btc-size-fee-estimator';\nimport { CoinSelectionRecipient, CoinSelectionUtxo } from './coin-selection';\n\nexport function getUtxoTotal(utxos: CoinSelectionUtxo[]) {\n return sumNumbers(utxos.map(utxo => utxo.value));\n}\n\nexport function getSizeInfo(payload: {\n inputLength: number;\n recipients: CoinSelectionRecipient[];\n isSendMax?: boolean;\n}) {\n const { inputLength, recipients, isSendMax } = payload;\n\n const validAddressesInfo = recipients\n .map(recipient => validate(recipient.address) && getAddressInfo(recipient.address))\n .filter(Boolean) as AddressInfo[];\n\n function getTxOutputsLengthByPaymentType() {\n return validAddressesInfo.reduce(\n (acc, { type }) => {\n acc[type] = (acc[type] || 0) + 1;\n return acc;\n },\n {} as Record<AddressType, number>\n );\n }\n\n const outputTypesCount = getTxOutputsLengthByPaymentType();\n\n // Add a change address if not sending max (defaults to p2wpkh)\n if (!isSendMax) {\n outputTypesCount[AddressType.p2wpkh] = (outputTypesCount[AddressType.p2wpkh] || 0) + 1;\n }\n\n // Prepare the output data map for consumption by the txSizer\n const outputsData = Object.entries(outputTypesCount).reduce(\n (acc, [type, count]) => {\n acc[type + '_output_count'] = count;\n return acc;\n },\n {} as Record<string, number>\n );\n\n const txSizer = new BtcSizeFeeEstimator();\n const sizeInfo = txSizer.calcTxSize({\n input_script: 'p2wpkh',\n input_count: inputLength,\n ...outputsData,\n });\n\n return sizeInfo;\n}\ninterface GetSpendableAmountArgs {\n utxos: CoinSelectionUtxo[];\n feeRate: number;\n recipients: CoinSelectionRecipient[];\n isSendMax?: boolean;\n}\nexport function getSpendableAmount({ utxos, feeRate, recipients }: GetSpendableAmountArgs) {\n const balance = utxos\n .map(utxo => Number(utxo.value))\n .reduce((prevVal, curVal) => prevVal + curVal, 0);\n\n const size = getSizeInfo({\n inputLength: utxos.length,\n recipients,\n });\n const fee = Math.ceil(size.txVBytes * feeRate);\n const bigNumberBalance = BigNumber(balance);\n return {\n spendableAmount: BigNumber.max(0, bigNumberBalance.minus(fee)),\n fee,\n };\n}\n\n// Check if the spendable amount drops when adding a utxo\nexport function filterUneconomicalUtxos({\n utxos,\n feeRate,\n recipients,\n}: {\n utxos: CoinSelectionUtxo[];\n feeRate: number;\n recipients: CoinSelectionRecipient[];\n}) {\n const { spendableAmount: fullSpendableAmount } = getSpendableAmount({\n utxos,\n feeRate,\n recipients,\n });\n\n const filteredUtxos = utxos\n .filter(utxo => utxo.value >= BTC_P2WPKH_DUST_AMOUNT)\n .filter(utxo => {\n // Calculate spendableAmount without that utxo\n const { spendableAmount } = getSpendableAmount({\n utxos: utxos.filter(u => u.txid !== utxo.txid),\n feeRate,\n recipients,\n });\n // If fullSpendableAmount is greater, do not use utxo\n return spendableAmount.toNumber() < fullSpendableAmount.toNumber();\n });\n return filteredUtxos;\n}\n","// https://github.com/argvil19/bitcoin-transaction-size-calculator/blob/master/index.js\nimport BigNumber from 'bignumber.js';\n\nimport { assertUnreachable } from '@leather.io/utils';\n\nexport type InputScriptType =\n | 'p2pkh'\n | 'p2sh'\n | 'p2sh-p2wpkh'\n | 'p2sh-p2wsh'\n | 'p2wpkh'\n | 'p2wsh'\n | 'p2tr';\n\nexport interface TxSizerParams {\n input_count: number;\n input_script: InputScriptType;\n input_m: number;\n input_n: number;\n p2pkh_output_count: number;\n p2sh_output_count: number;\n p2sh_p2wpkh_output_count: number;\n p2sh_p2wsh_output_count: number;\n p2wpkh_output_count: number;\n p2wsh_output_count: number;\n p2tr_output_count: number;\n}\n\nexport class BtcSizeFeeEstimator {\n P2PKH_IN_SIZE = 148;\n P2PKH_OUT_SIZE = 34;\n P2SH_OUT_SIZE = 32;\n P2SH_P2WPKH_OUT_SIZE = 32;\n P2SH_P2WSH_OUT_SIZE = 32;\n P2SH_P2WPKH_IN_SIZE = 91;\n P2WPKH_IN_SIZE = 67.75;\n P2WPKH_OUT_SIZE = 31;\n P2WSH_OUT_SIZE = 43;\n P2TR_OUT_SIZE = 43;\n P2TR_IN_SIZE = 57.25;\n PUBKEY_SIZE = 33;\n SIGNATURE_SIZE = 72;\n SUPPORTED_INPUT_SCRIPT_TYPES: InputScriptType[] = [\n 'p2pkh',\n 'p2sh',\n 'p2sh-p2wpkh',\n 'p2sh-p2wsh',\n 'p2wpkh',\n 'p2wsh',\n 'p2tr',\n ];\n\n defaultParams: TxSizerParams = {\n input_count: 0,\n input_script: 'p2wpkh',\n input_m: 0,\n input_n: 0,\n p2pkh_output_count: 0,\n p2sh_output_count: 0,\n p2sh_p2wpkh_output_count: 0,\n p2sh_p2wsh_output_count: 0,\n p2wpkh_output_count: 0,\n p2wsh_output_count: 0,\n p2tr_output_count: 0,\n };\n\n params: TxSizerParams = { ...this.defaultParams };\n\n getSizeOfScriptLengthElement(length: number) {\n if (length < 75) {\n return 1;\n } else if (length <= 255) {\n return 2;\n } else if (length <= 65535) {\n return 3;\n } else if (length <= 4294967295) {\n return 5;\n } else {\n throw new Error('Size of redeem script is too large');\n }\n }\n\n getSizeOfletInt(length: number) {\n if (length < 253) {\n return 1;\n } else if (length < 65535) {\n return 3;\n } else if (length < 4294967295) {\n return 5;\n } else if (new BigNumber(length).isLessThan('18446744073709551615')) {\n return 9;\n } else {\n throw new Error('Invalid let int');\n }\n }\n\n getTxOverheadVBytes(input_script: InputScriptType, input_count: number, output_count: number) {\n let witness_vbytes;\n if (input_script === 'p2pkh' || input_script === 'p2sh') {\n witness_vbytes = 0;\n } else {\n // Transactions with segwit inputs have extra overhead\n witness_vbytes =\n 0.25 + // segwit marker\n 0.25 + // segwit flag\n this.getSizeOfletInt(input_count) / 4; // witness element count\n }\n\n return (\n 4 + // nVersion\n this.getSizeOfletInt(input_count) + // number of inputs\n this.getSizeOfletInt(output_count) + // number of outputs\n 4 + // nLockTime\n witness_vbytes\n );\n }\n\n getTxOverheadExtraRawBytes(input_script: InputScriptType, input_count: number) {\n let witness_vbytes;\n if (input_script === 'p2pkh' || input_script === 'p2sh') {\n witness_vbytes = 0;\n } else {\n // Transactions with segwit inputs have extra overhead\n witness_vbytes =\n 0.25 + // segwit marker\n 0.25 + // segwit flag\n this.getSizeOfletInt(input_count) / 4; // witness element count\n }\n\n return witness_vbytes * 3;\n }\n\n prepareParams(opts: Partial<TxSizerParams>) {\n // Verify opts and set them to this.params\n opts = opts || Object.assign(this.defaultParams);\n\n const input_count = opts.input_count || this.defaultParams.input_count;\n if (!Number.isInteger(input_count) || input_count < 0) {\n throw new Error('expecting positive input count, got: ' + input_count);\n }\n\n const input_script = opts.input_script || this.defaultParams.input_script;\n if (this.SUPPORTED_INPUT_SCRIPT_TYPES.indexOf(input_script) === -1) {\n throw new Error('Not supported input script type');\n }\n\n const input_m = opts.input_m || this.defaultParams.input_m;\n if (!Number.isInteger(input_m) || input_m < 0) {\n throw new Error('expecting positive signature count');\n }\n\n const input_n = opts.input_n || this.defaultParams.input_n;\n if (!Number.isInteger(input_n) || input_n < 0) {\n throw new Error('expecting positive pubkey count');\n }\n\n const p2pkh_output_count = opts.p2pkh_output_count || this.defaultParams.p2pkh_output_count;\n if (!Number.isInteger(p2pkh_output_count) || p2pkh_output_count < 0) {\n throw new Error('expecting positive p2pkh output count');\n }\n\n const p2sh_output_count = opts.p2sh_output_count || this.defaultParams.p2sh_output_count;\n if (!Number.isInteger(p2sh_output_count) || p2sh_output_count < 0) {\n throw new Error('expecting positive p2sh output count');\n }\n\n const p2sh_p2wpkh_output_count =\n opts.p2sh_p2wpkh_output_count || this.defaultParams.p2sh_p2wpkh_output_count;\n if (!Number.isInteger(p2sh_p2wpkh_output_count) || p2sh_p2wpkh_output_count < 0) {\n throw new Error('expecting positive p2sh-p2wpkh output count');\n }\n\n const p2sh_p2wsh_output_count =\n opts.p2sh_p2wsh_output_count || this.defaultParams.p2sh_p2wsh_output_count;\n if (!Number.isInteger(p2sh_p2wsh_output_count) || p2sh_p2wsh_output_count < 0) {\n throw new Error('expecting positive p2sh-p2wsh output count');\n }\n\n const p2wpkh_output_count = opts.p2wpkh_output_count || this.defaultParams.p2wpkh_output_count;\n if (!Number.isInteger(p2wpkh_output_count) || p2wpkh_output_count < 0) {\n throw new Error('expecting positive p2wpkh output count');\n }\n\n const p2wsh_output_count = opts.p2wsh_output_count || this.defaultParams.p2wsh_output_count;\n if (!Number.isInteger(p2wsh_output_count) || p2wsh_output_count < 0) {\n throw new Error('expecting positive p2wsh output count');\n }\n\n const p2tr_output_count = opts.p2tr_output_count || this.defaultParams.p2tr_output_count;\n if (!Number.isInteger(p2tr_output_count) || p2tr_output_count < 0) {\n throw new Error('expecting positive p2tr output count');\n }\n\n this.params = {\n input_count,\n input_script,\n input_m,\n input_n,\n p2pkh_output_count,\n p2sh_output_count,\n p2sh_p2wpkh_output_count,\n p2sh_p2wsh_output_count,\n p2wpkh_output_count,\n p2wsh_output_count,\n p2tr_output_count,\n };\n\n return this.params;\n }\n\n getOutputCount() {\n return (\n this.params.p2pkh_output_count +\n this.params.p2sh_output_count +\n this.params.p2sh_p2wpkh_output_count +\n this.params.p2sh_p2wsh_output_count +\n this.params.p2wpkh_output_count +\n this.params.p2wsh_output_count +\n this.params.p2tr_output_count\n );\n }\n\n getSizeBasedOnInputType() {\n // In most cases the input size is predictable. For multisig inputs we need to perform a detailed calculation\n let inputSize = 0; // in virtual bytes\n let inputWitnessSize = 0;\n let redeemScriptSize;\n switch (this.params.input_script) {\n case 'p2pkh':\n inputSize = this.P2PKH_IN_SIZE;\n break;\n case 'p2sh-p2wpkh':\n inputSize = this.P2SH_P2WPKH_IN_SIZE;\n inputWitnessSize = 107; // size(signature) + signature + size(pubkey) + pubkey\n break;\n case 'p2wpkh':\n inputSize = this.P2WPKH_IN_SIZE;\n inputWitnessSize = 107; // size(signature) + signature + size(pubkey) + pubkey\n break;\n case 'p2tr': // Only consider the cooperative taproot signing path assume multisig is done via aggregate signatures\n inputSize = this.P2TR_IN_SIZE;\n inputWitnessSize = 65; // getSizeOfletInt(schnorrSignature) + schnorrSignature\n break;\n case 'p2sh':\n redeemScriptSize =\n 1 + // OP_M\n this.params.input_n * (1 + this.PUBKEY_SIZE) + // OP_PUSH33 <pubkey>\n 1 + // OP_N\n 1; // OP_CHECKMULTISIG\n // eslint-disable-next-line no-case-declarations\n const scriptSigSize =\n 1 + // size(0)\n this.params.input_m * (1 + this.SIGNATURE_SIZE) + // size(SIGNATURE_SIZE) + signature\n this.getSizeOfScriptLengthElement(redeemScriptSize) +\n redeemScriptSize;\n inputSize = 32 + 4 + this.getSizeOfletInt(scriptSigSize) + scriptSigSize + 4;\n break;\n case 'p2sh-p2wsh':\n case 'p2wsh':\n redeemScriptSize =\n 1 + // OP_M\n this.params.input_n * (1 + this.PUBKEY_SIZE) + // OP_PUSH33 <pubkey>\n 1 + // OP_N\n 1; // OP_CHECKMULTISIG\n inputWitnessSize =\n 1 + // size(0)\n this.params.input_m * (1 + this.SIGNATURE_SIZE) + // size(SIGNATURE_SIZE) + signature\n this.getSizeOfScriptLengthElement(redeemScriptSize) +\n redeemScriptSize;\n inputSize =\n 36 + // outpoint (spent UTXO ID)\n inputWitnessSize / 4 + // witness program\n 4; // nSequence\n if (this.params.input_script === 'p2sh-p2wsh') {\n inputSize += 32 + 3; // P2SH wrapper (redeemscript hash) + overhead?\n }\n break;\n default:\n assertUnreachable(this.params.input_script);\n }\n\n return {\n inputSize,\n inputWitnessSize,\n };\n }\n\n calcTxSize(opts: Partial<TxSizerParams>) {\n this.prepareParams(opts);\n const output_count = this.getOutputCount();\n const { inputSize, inputWitnessSize } = this.getSizeBasedOnInputType();\n\n const txVBytes =\n this.getTxOverheadVBytes(this.params.input_script, this.params.input_count, output_count) +\n inputSize * this.params.input_count +\n this.P2PKH_OUT_SIZE * this.params.p2pkh_output_count +\n this.P2SH_OUT_SIZE * this.params.p2sh_output_count +\n this.P2SH_P2WPKH_OUT_SIZE * this.params.p2sh_p2wpkh_output_count +\n this.P2SH_P2WSH_OUT_SIZE * this.params.p2sh_p2wsh_output_count +\n this.P2WPKH_OUT_SIZE * this.params.p2wpkh_output_count +\n this.P2WSH_OUT_SIZE * this.params.p2wsh_output_count +\n this.P2TR_OUT_SIZE * this.params.p2tr_output_count;\n\n const txBytes =\n this.getTxOverheadExtraRawBytes(this.params.input_script, this.params.input_count) +\n txVBytes +\n inputWitnessSize * this.params.input_count;\n const txWeight = txVBytes * 4;\n\n return { txVBytes, txBytes, txWeight };\n }\n\n estimateFee(vbyte: number, satVb: number) {\n if (isNaN(vbyte) || isNaN(satVb)) {\n throw new Error('Parameters should be numbers');\n }\n return vbyte * satVb;\n }\n\n formatFeeRange(fee: number, multiplier: number) {\n if (isNaN(fee) || isNaN(multiplier)) {\n throw new Error('Parameters should be numbers');\n }\n\n if (multiplier < 0) {\n throw new Error('Multiplier cant be negative');\n }\n\n const multipliedFee = fee * multiplier;\n\n return fee - multipliedFee + ' - ' + (fee + multipliedFee);\n }\n}\n","import BigNumber from 'bignumber.js';\nimport { validate } from 'bitcoin-address-validation';\n\nimport { BTC_P2WPKH_DUST_AMOUNT } from '@leather.io/constants';\nimport { Money } from '@leather.io/models';\nimport { createMoney, sumMoney } from '@leather.io/utils';\n\nimport { BitcoinError } from '../validation/bitcoin-error';\nimport { filterUneconomicalUtxos, getSizeInfo, getUtxoTotal } from './coin-selection.utils';\n\nexport interface CoinSelectionOutput {\n value: bigint;\n address?: string;\n}\n\nexport interface CoinSelectionUtxo {\n address: string;\n txid: string;\n value: number;\n vout: number;\n}\n\nexport interface CoinSelectionRecipient {\n address: string;\n amount: Money;\n}\n\nexport interface DetermineUtxosForSpendArgs {\n feeRate: number;\n recipients: CoinSelectionRecipient[];\n utxos: CoinSelectionUtxo[];\n}\n\nexport function determineUtxosForSpendAll({\n feeRate,\n recipients,\n utxos,\n}: DetermineUtxosForSpendArgs) {\n recipients.forEach(recipient => {\n if (!validate(recipient.address)) throw new BitcoinError('InvalidAddress');\n });\n const filteredUtxos = filterUneconomicalUtxos({ utxos, feeRate, recipients });\n\n const sizeInfo = getSizeInfo({\n inputLength: filteredUtxos.length,\n isSendMax: true,\n recipients,\n });\n\n // Fee has already been deducted from the amount with send all\n const outputs = recipients.map(({ address, amount }) => ({\n value: BigInt(amount.amount.toNumber()),\n address,\n }));\n\n const fee = Math.ceil(sizeInfo.txVBytes * feeRate);\n\n return {\n inputs: filteredUtxos,\n outputs,\n size: sizeInfo.txVBytes,\n fee: createMoney(new BigNumber(fee), 'BTC'),\n };\n}\n\nexport function determineUtxosForSpend({ feeRate, recipients, utxos }: DetermineUtxosForSpendArgs) {\n recipients.forEach(recipient => {\n if (!validate(recipient.address)) throw new BitcoinError('InvalidAddress');\n });\n const filteredUtxos = filterUneconomicalUtxos({\n utxos: utxos.sort((a, b) => b.value - a.value),\n feeRate,\n recipients,\n });\n if (!filteredUtxos.length) throw new BitcoinError('InsufficientFunds');\n\n const amount = sumMoney(recipients.map(recipient => recipient.amount));\n\n // Prepopulate with first utxo, at least one is needed\n const neededUtxos: CoinSelectionUtxo[] = [filteredUtxos[0]];\n\n function estimateTransactionSize() {\n return getSizeInfo({\n inputLength: neededUtxos.length,\n recipients,\n });\n }\n\n function hasSufficientUtxosForTx() {\n const txEstimation = estimateTransactionSize();\n const neededAmount = new BigNumber(txEstimation.txVBytes * feeRate).plus(amount.amount);\n return getUtxoTotal(neededUtxos).isGreaterThanOrEqualTo(neededAmount);\n }\n\n function getRemainingUnspentUtxos() {\n return filteredUtxos.filter(utxo => !neededUtxos.includes(utxo));\n }\n\n while (!hasSufficientUtxosForTx()) {\n const [nextUtxo] = getRemainingUnspentUtxos();\n if (!nextUtxo) throw new BitcoinError('InsufficientFunds');\n neededUtxos.push(nextUtxo);\n }\n\n const fee = Math.ceil(\n new BigNumber(estimateTransactionSize().txVBytes).multipliedBy(feeRate).toNumber()\n );\n\n const changeAmount =\n BigInt(getUtxoTotal(neededUtxos).toString()) - BigInt(amount.amount.toNumber()) - BigInt(fee);\n\n const changeUtxos: CoinSelectionOutput[] =\n changeAmount > BTC_P2WPKH_DUST_AMOUNT\n ? [\n {\n value: changeAmount,\n },\n ]\n : [];\n\n const outputs: CoinSelectionOutput[] = [\n ...recipients.map(({ address, amount }) => ({\n value: BigInt(amount.amount.toNumber()),\n address,\n })),\n ...changeUtxos,\n ];\n\n return {\n filteredUtxos,\n inputs: neededUtxos,\n outputs,\n size: estimateTransactionSize().txVBytes,\n fee: createMoney(new BigNumber(fee), 'BTC'),\n ...estimateTransactionSize(),\n };\n}\n","import { AverageBitcoinFeeRates, Money } from '@leather.io/models';\n\nimport {\n CoinSelectionRecipient,\n CoinSelectionUtxo,\n DetermineUtxosForSpendArgs,\n determineUtxosForSpend,\n determineUtxosForSpendAll,\n} from '../coin-selection/coin-selection';\n\ntype GetBitcoinTransactionFeeArgs = DetermineUtxosForSpendArgs & {\n isSendingMax?: boolean;\n};\n\nexport function getBitcoinTransactionFee({ isSendingMax, ...props }: GetBitcoinTransactionFeeArgs) {\n try {\n const { fee } = isSendingMax\n ? determineUtxosForSpendAll({ ...props })\n : determineUtxosForSpend({ ...props });\n return fee;\n } catch {\n return null;\n }\n}\n\nexport interface BitcoinFees {\n blockchain: 'bitcoin';\n high: { fee: Money | null; feeRate: number };\n standard: { fee: Money | null; feeRate: number };\n low: { fee: Money | null; feeRate: number };\n}\n\nexport interface GetBitcoinFeesArgs {\n feeRates: AverageBitcoinFeeRates;\n isSendingMax?: boolean;\n recipients: CoinSelectionRecipient[];\n utxos: CoinSelectionUtxo[];\n}\nexport function getBitcoinFees({ feeRates, isSendingMax, recipients, utxos }: GetBitcoinFeesArgs) {\n const defaultArgs = {\n isSendingMax,\n recipients,\n utxos,\n };\n\n const highFeeRate = feeRates.fastestFee.toNumber();\n const standardFeeRate = feeRates.halfHourFee.toNumber();\n const lowFeeRate = feeRates.hourFee.toNumber();\n\n const highFeeValue = getBitcoinTransactionFee({\n ...defaultArgs,\n feeRate: highFeeRate,\n });\n const standardFeeValue = getBitcoinTransactionFee({\n ...defaultArgs,\n feeRate: standardFeeRate,\n });\n const lowFeeValue = getBitcoinTransactionFee({\n ...defaultArgs,\n feeRate: lowFeeRate,\n });\n\n return {\n high: { feeRate: highFeeRate, fee: highFeeValue },\n standard: { feeRate: standardFeeRate, fee: standardFeeValue },\n low: { feeRate: lowFeeRate, fee: lowFeeValue },\n };\n}\n","import { createBitcoinAddress } from '../validation/bitcoin-address';\n\n// maybe these should be in mono/config?\n// from extension/tests/mocks/constants\nexport const TEST_ACCOUNT_1_NATIVE_SEGWIT_ADDRESS = createBitcoinAddress(\n 'bc1q530dz4h80kwlzywlhx2qn0k6vdtftd93c499yq'\n);\nexport const TEST_ACCOUNT_1_TAPROOT_ADDRESS = createBitcoinAddress(\n 'bc1putuzj9lyfcm8fef9jpy85nmh33cxuq9u6wyuk536t9kemdk37yjqmkc0pg'\n);\nexport const TEST_ACCOUNT_2_TAPROOT_ADDRESS = createBitcoinAddress(\n 'bc1pmk2sacpfyy4v5phl8tq6eggu4e8laztep7fsgkkx0nc6m9vydjesaw0g2r'\n);\n\nexport const TEST_TESNET_ACCOUNT_1_NATIVE_SEGWIT_ADDRESS = createBitcoinAddress(\n 'tb1q4qgnjewwun2llgken94zqjrx5kpqqycaz5522d'\n);\n\nexport const TEST_TESTNET_ACCOUNT_2_BTC_ADDRESS = createBitcoinAddress(\n 'tb1qr8me8t9gu9g6fu926ry5v44yp0wyljrespjtnz'\n);\n\nexport const TEST_TESTNET_ACCOUNT_2_TAPROOT_ADDRESS = createBitcoinAddress(\n 'tb1pve00jmp43whpqj2wpcxtc7m8wqhz0azq689y4r7h8tmj8ltaj87qj2nj6w'\n);\n\n// coin-selection.spec\nexport const recipientAddress = createBitcoinAddress('tb1qt28eagxcl9gvhq2rpj5slg7dwgxae2dn2hk93m');\nexport const legacyAddress = createBitcoinAddress('15PyZveQd28E2SHZu2ugkWZBp6iER41vXj');\nexport const segwitAddress = createBitcoinAddress('33SVjoCHJovrXxjDKLFSXo1h3t5KgkPzfH');\nexport const taprootAddress = createBitcoinAddress(\n 'tb1parwmj7533de3k2fw2kntyqacspvhm67qnjcmpqnnpfvzu05l69nsczdywd'\n);\nexport const invalidAddress = 'whoop-de-da-boop-da-de-not-a-bitcoin-address';\n\nexport const inValidCharactersAddress = createBitcoinAddress(\n 'tb1&*%wmj7533de3k2fw2kntyqacspvhm67qnjcmpqnnpfvzu05l69nsczdywd'\n);\nexport const inValidLengthAddress = createBitcoinAddress('tb1parwmj7533de3k2fw2kntyqacspvhm67wd');\n","import { ripemd160 } from '@noble/hashes/ripemd160';\nimport { sha256 } from '@noble/hashes/sha256';\nimport { base58check } from '@scure/base';\n\nimport { deriveBip39SeedFromMnemonic, deriveRootBip32Keychain } from '@leather.io/crypto';\nimport { NetworkModes } from '@leather.io/models';\n\n/**\n * @deprecated\n * Use `deriveBip39MnemonicFromSeed` from `@leather.io/crypto`\n */\nexport const deriveBtcBip49SeedFromMnemonic = deriveBip39SeedFromMnemonic;\n\n/**\n * @deprecated\n * Use `deriveRootBip32Keychain` from `@leather.io/crypto`\n */\nexport const deriveRootBtcKeychain = deriveRootBip32Keychain;\n\nexport function decodeCompressedWifPrivateKey(key: string) {\n // https://en.bitcoinwiki.org/wiki/Wallet_import_format\n // Decode Compressed WIF format private key\n const compressedWifFormatPrivateKey = base58check(sha256).decode(key);\n // Drop leading network byte, trailing public key SEC format byte\n return compressedWifFormatPrivateKey.slice(1, compressedWifFormatPrivateKey.length - 1);\n}\n\n// https://en.bitcoin.it/wiki/List_of_address_prefixes\nconst payToScriptHashMainnetPrefix = 0x05;\nexport const payToScriptHashTestnetPrefix = 0xc4;\n\nconst payToScriptHashPrefixMap: Record<NetworkModes, number> = {\n mainnet: payToScriptHashMainnetPrefix,\n testnet: payToScriptHashTestnetPrefix,\n};\n\nfunction hash160(input: Uint8Array) {\n return ripemd160(sha256(input));\n}\n\nexport function makePayToScriptHashKeyHash(publicKey: Uint8Array) {\n return hash160(publicKey);\n}\n\nexport function makePayToScriptHashAddressBytes(keyHash: Uint8Array) {\n const redeemScript = Uint8Array.from([\n ...Uint8Array.of(0x00),\n ...Uint8Array.of(keyHash.length),\n ...keyHash,\n ]);\n return hash160(redeemScript);\n}\n\nexport function makePayToScriptHashAddress(addressBytes: Uint8Array, network: NetworkModes) {\n const networkByte = payToScriptHashPrefixMap[network];\n const addressWithPrefix = Uint8Array.from([networkByte, ...addressBytes]);\n return base58check(sha256).encode(addressWithPrefix);\n}\n\nexport function publicKeyToPayToScriptHashAddress(publicKey: Uint8Array, network: NetworkModes) {\n const hash = makePayToScriptHashKeyHash(publicKey);\n const addrBytes = makePayToScriptHashAddressBytes(hash);\n return makePayToScriptHashAddress(addrBytes, network);\n}\n","import { BitcoinAddress } from '@leather.io/models';\nimport { createMoney, sumNumbers } from '@leather.io/utils';\n\nimport { inferPaymentTypeFromAddress } from '../utils/bitcoin.utils';\nimport { PsbtInput } from './psbt-inputs';\nimport { PsbtOutput } from './psbt-outputs';\n\nfunction calculateAddressInputsTotal(addresses: string[], inputs: PsbtInput[]) {\n const sumsByAddress = addresses.map(address =>\n inputs\n .filter(input => input.address === address)\n .map(input => input.value)\n .reduce((acc, curVal) => acc + curVal, 0)\n );\n\n return createMoney(sumNumbers(sumsByAddress), 'BTC');\n}\n\nfunction calculateAddressOutputsTotal(addresses: string[], outputs: PsbtOutput[]) {\n const sumsByAddress = addresses.map(address =>\n outputs\n .filter(output => output.address === address)\n .map(output => Number(output.value))\n .reduce((acc, curVal) => acc + curVal, 0)\n );\n return createMoney(sumNumbers(sumsByAddress), 'BTC');\n}\n\nfunction calculatePsbtInputsTotal(inputs: PsbtInput[]) {\n return createMoney(sumNumbers(inputs.map(input => input.value)), 'BTC');\n}\n\nfunction calculatePsbtOutputsTotal(outputs: PsbtOutput[]) {\n return createMoney(sumNumbers(outputs.map(output => output.value)), 'BTC');\n}\n\ninterface GetPsbtTotalsProps {\n psbtAddresses: BitcoinAddress[];\n parsedInputs: PsbtInput[];\n parsedOutputs: PsbtOutput[];\n}\nexport function getPsbtTotals({ psbtAddresses, parsedInputs, parsedOutputs }: GetPsbtTotalsProps) {\n const nativeSegwitAddresses = psbtAddresses.filter(\n addr => inferPaymentTypeFromAddress(addr) === 'p2wpkh'\n );\n const taprootAddresses = psbtAddresses.filter(\n addr => inferPaymentTypeFromAddress(addr) === 'p2tr'\n );\n\n return {\n inputsTotalNativeSegwit: calculateAddressInputsTotal(nativeSegwitAddresses, parsedInputs),\n inputsTotalTaproot: calculateAddressInputsTotal(taprootAddresses, parsedInputs),\n outputsTotalNativeSegwit: calculateAddressOutputsTotal(nativeSegwitAddresses, parsedOutputs),\n outputsTotalTaproot: calculateAddressOutputsTotal(taprootAddresses, parsedOutputs),\n psbtInputsTotal: calculatePsbtInputsTotal(parsedInputs),\n psbtOutputsTotal: calculatePsbtOutputsTotal(parsedOutputs),\n };\n}\n","import { bytesToHex } from '@noble/hashes/utils';\nimport type { TransactionInput } from '@scure/btc-signer/psbt';\n\nimport type { BitcoinAddress, BitcoinNetworkModes, Inscription } from '@leather.io/models';\nimport { isDefined, isUndefined } from '@leather.io/utils';\n\nimport { getBtcSignerLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport { getBitcoinInputAddress, getBitcoinInputValue } from '../utils/bitcoin.utils';\n\nexport interface PsbtInput {\n address: BitcoinAddress;\n index?: number;\n // TODO: inject inscription later on. getParsedInputs should be a pure function\n inscription?: Inscription;\n isMutable: boolean;\n toSign: boolean;\n txid: string;\n value: number;\n bip32Derivation: TransactionInput['bip32Derivation'];\n tapBip32Derivation: TransactionInput['tapBip32Derivation'];\n}\n\ninterface GetParsedInputsArgs {\n inputs: TransactionInput[];\n indexesToSign?: number[];\n networkMode: BitcoinNetworkModes;\n psbtAddresses: BitcoinAddress[];\n}\n\ninterface GetParsedInputsResponse {\n isPsbtMutable: boolean;\n parsedInputs: PsbtInput[];\n}\nexport function getParsedInputs({\n inputs,\n indexesToSign,\n networkMode,\n psbtAddresses,\n}: GetParsedInputsArgs): GetParsedInputsResponse {\n const bitcoinNetwork = getBtcSignerLibNetworkConfigByMode(networkMode);\n\n const signAll = isUndefined(indexesToSign);\n const psbtInputs = inputs.map((input, i) => {\n const bitcoinAddress = isDefined(input.index)\n ? getBitcoinInputAddress(input, bitcoinNetwork)\n : null;\n if (bitcoinAddress === null) {\n throw new Error('PSBT input has unsupported bitcoin address');\n }\n const isCurrentAddress = psbtAddresses.includes(bitcoinAddress);\n // Flags when not signing ALL inputs/outputs (NONE, SINGLE, and ANYONECANPAY)\n const canChange =\n isCurrentAddress &&\n !(!input.sighashType || input.sighashType === 0 || input.sighashType === 1);\n // Should we check the sighashType here before it gets to the signing lib?\n const toSignAll = isCurrentAddress && signAll;\n const toSignIndex = isCurrentAddress && !signAll && indexesToSign.includes(i);\n\n return {\n address: bitcoinAddress,\n index: input.index,\n bip32Derivation: input.bip32Derivation,\n tapBip32Derivation: input.tapBip32Derivation,\n // inscription: inscriptions[i],\n isMutable: canChange,\n toSign: toSignAll || toSignIndex,\n txid: input.txid ? bytesToHex(input.txid) : '',\n value: isDefined(input.index) ? getBitcoinInputValue(input) : 0,\n };\n });\n\n const isPsbtMutable = psbtInputs.some(input => input.isMutable);\n\n return { isPsbtMutable, parsedInputs: psbtInputs };\n}\n","import type { TransactionOutput } from '@scure/btc-signer/psbt';\n\nimport { BitcoinAddress, BitcoinNetworkModes } from '@leather.io/models';\nimport { isDefined, isUndefined } from '@leather.io/utils';\n\nimport { getBtcSignerLibNetworkConfigByMode } from '../utils/bitcoin.network';\nimport { getAddressFromOutScript } from '../utils/bitcoin.utils';\n\nexport interface PsbtOutput {\n address: BitcoinAddress;\n isMutable: boolean;\n toSign: boolean;\n value: number;\n}\n\ninterface GetParsedOutputsArgs {\n isPsbtMutable: boolean;\n outputs: TransactionOutput[];\n networkMode: BitcoinNetworkModes;\n psbtAddresses: BitcoinAddress[];\n}\n\nexport function getParsedOutputs({\n isPsbtMutable,\n outputs,\n networkMode,\n psbtAddresses,\n}: GetParsedOutputsArgs): PsbtOutput[] {\n const bitcoinNetwork = getBtcSignerLibNetworkConfigByMode(networkMode);\n\n return outputs\n .map(output => {\n if (isUndefined(output.script)) {\n // TODO: handle error here\n // logger.error('Output has no script');\n return;\n }\n const outputAddress = getAddressFromOutScript(output.script, bitcoinNetwork);\n if (outputAddress === null) {\n throw new Error('PSBT output has unsupported bitcoin address');\n }\n\n const isCurrentAddress = psbtAddresses.includes(outputAddress);\n\n return {\n address: outputAddress,\n isMutable: isPsbtMutable,\n toSign: isCurrentAddress,\n value: Number(output.amount),\n };\n })\n .filter(isDefined);\n}\n","import { BitcoinAddress, BitcoinNetworkModes } from '@leather.io/models';\nimport { createMoney, subtractMoney } from '@leather.io/utils';\n\nimport { getPsbtTxInputs, getPsbtTxOutputs } from '../utils/bitcoin.utils';\nimport { getParsedInputs } from './psbt-inputs';\nimport { getParsedOutputs } from './psbt-outputs';\nimport { getPsbtTotals } from './psbt-totals';\nimport { getPsbtAsTransaction } from './utils';\n\ninterface GetPsbtDetailsArgs {\n psbtHex: string;\n psbtAddresses: BitcoinAddress[];\n networkMode: BitcoinNetworkModes;\n indexesToSign?: number[];\n}\nexport function getPsbtDetails({\n psbtHex,\n networkMode,\n indexesToSign,\n psbtAddresses,\n}: GetPsbtDetailsArgs) {\n const tx = getPsbtAsTransaction(psbtHex);\n const inputs = getPsbtTxInputs(tx);\n const outputs = getPsbtTxOutputs(tx);\n\n const { isPsbtMutable, parsedInputs } = getParsedInputs({\n inputs,\n indexesToSign,\n networkMode,\n psbtAddresses,\n });\n const parsedOutputs = getParsedOutputs({ isPsbtMutable, outputs, networkMode, psbtAddresses });\n\n const {\n inputsTotalNativeSegwit,\n inputsTotalTaproot,\n outputsTotalNativeSegwit,\n outputsTotalTaproot,\n psbtInputsTotal,\n psbtOutputsTotal,\n } = getPsbtTotals({\n psbtAddresses,\n parsedInputs,\n parsedOutputs,\n });\n function getFee() {\n if (psbtInputsTotal.amount.isGreaterThan(psbtOutputsTotal.amount))\n return subtractMoney(psbtInputsTotal, psbtOutputsTotal);\n return createMoney(0, 'BTC');\n }\n return {\n addressNativeSegwitTotal: subtractMoney(inputsTotalNativeSegwit, outputsTotalNativeSegwit),\n addressTaprootTotal: subtractMoney(inputsTotalTaproot, outputsTotalTaproot),\n fee: getFee(),\n isPsbtMutable,\n psbtInputs: parsedInputs,\n psbtOutputs: parsedOutputs,\n };\n}\n","import { hexToBytes } from '@noble/hashes/utils';\nimport * as btc from '@scure/btc-signer';\nimport { RawPSBTV0, RawPSBTV2 } from '@scure/btc-signer/psbt';\n\nimport { isString } from '@leather.io/utils';\n\nexport type RawPsbt = ReturnType<typeof RawPSBTV0.decode>;\n\nexport function getPsbtAsTransaction(psbt: string | Uint8Array) {\n const bytes = isString(psbt) ? hexToBytes(psbt) : psbt;\n return btc.Transaction.fromPSBT(bytes);\n}\n\nexport function getRawPsbt(psbt: string | Uint8Array): ReturnType<typeof RawPSBTV0.decode> {\n const bytes = isString(psbt) ? hexToBytes(psbt) : psbt;\n try {\n return RawPSBTV0.decode(bytes);\n } catch (e1) {\n try {\n return RawPSBTV2.decode(bytes);\n } catch (e2) {\n throw new Error(`Unable to decode PSBT, ${e1 ?? e2}`);\n }\n }\n}\n","import { HARDENED_OFFSET, HDKey } from '@scure/bip32';\nimport * as btc from '@scure/btc-signer';\nimport { P2Ret, P2TROut } from '@scure/btc-signer/payment';\nimport { SigHash } from '@scure/btc-signer/transaction';\n\nimport {\n DerivationPathDepth,\n appendAddressIndexToPath,\n decomposeDescriptor,\n deriveKeychainFromXpub,\n keyOriginToDerivationPath,\n} from '@leather.io/crypto';\nimport type { BitcoinAddress, BitcoinNetworkModes, ValueOf } from '@leather.io/models';\nimport { PaymentTypes, signatureHash } from '@leather.io/rpc';\nimport { hexToNumber, toHexString } from '@leather.io/utils';\n\nimport { getTaprootPaymentFromAddressIndex } from '../payments/p2tr-address-gen';\nimport { getNativeSegwitPaymentFromAddressIndex } from '../payments/p2wpkh-address-gen';\nimport {\n SupportedPaymentType,\n ecdsaPublicKeyToSchnorr,\n extractExtendedPublicKeyFromPolicy,\n inferPaymentTypeFromPath,\n whenSupportedPaymentType,\n} from '../utils/bitcoin.utils';\n\nexport type AllowedSighashTypes = ValueOf<typeof signatureHash> | SigHash;\n\nexport interface BitcoinAccountKeychain {\n descriptor: string;\n masterKeyFingerprint: string;\n keyOrigin: string;\n keychain: HDKey;\n xpub: string;\n}\n\nexport type WithDerivePayer<T, P> = T & { derivePayer: (args: BitcoinPayerInfo) => P };\n\nexport interface BitcoinSigner<Payment> {\n network: BitcoinNetworkModes;\n payment: Payment;\n keychain: HDKey;\n derivationPath: string;\n address: BitcoinAddress;\n publicKey: Uint8Array;\n sign(tx: btc.Transaction): void;\n signIndex(tx: btc.Transaction, index: number, allowedSighash?: AllowedSighashTypes[]): void;\n}\n\nexport interface BitcoinPayerBase {\n paymentType: PaymentTypes;\n network: BitcoinNetworkModes;\n address: BitcoinAddress;\n keyOrigin: string;\n masterKeyFingerprint: string;\n publicKey: Uint8Array;\n}\n\nexport interface BitcoinNativeSegwitPayer extends BitcoinPayerBase {\n paymentType: 'p2wpkh';\n payment: P2Ret;\n}\n\nexport interface BitcoinTaprootPayer extends BitcoinPayerBase {\n paymentType: 'p2tr';\n payment: P2TROut;\n}\n\nexport type BitcoinPayer = BitcoinNativeSegwitPayer | BitcoinTaprootPayer;\n\nexport function initializeBitcoinAccountKeychainFromDescriptor(\n descriptor: string\n): BitcoinAccountKeychain {\n const { fingerprint, keyOrigin } = decomposeDescriptor(descriptor);\n return {\n descriptor,\n xpub: extractExtendedPublicKeyFromPolicy(descriptor),\n keyOrigin,\n masterKeyFingerprint: fingerprint,\n keychain: deriveKeychainFromXpub(extractExtendedPublicKeyFromPolicy(descriptor)),\n };\n}\n\nexport interface BitcoinPayerInfo {\n receive?: number;\n addressIndex: number;\n}\nexport function deriveBitcoinPayerFromAccount(descriptor: string, network: BitcoinNetworkModes) {\n const { fingerprint, keyOrigin } = decomposeDescriptor(descriptor);\n const accountKeychain = deriveKeychainFromXpub(extractExtendedPublicKeyFromPolicy(descriptor));\n const paymentType = inferPaymentTypeFromPath(keyOrigin) as SupportedPaymentType;\n\n if (accountKeychain.depth !== DerivationPathDepth.Account)\n throw new Error('Keychain passed is not an account');\n\n return ({ receive = 0, addressIndex }: BitcoinPayerInfo) => {\n const childKeychain = accountKeychain.deriveChild(receive).deriveChild(addressIndex);\n\n const derivePayerFromAccount = whenSupportedPaymentType(paymentType)({\n p2tr: getTaprootPaymentFromAddressIndex,\n p2wpkh: getNativeSegwitPaymentFromAddressIndex,\n });\n\n const payment = derivePayerFromAccount(childKeychain, network);\n\n return {\n keyOrigin: appendAddressIndexToPath(keyOrigin, 0),\n masterKeyFingerprint: fingerprint,\n paymentType,\n network,\n payment,\n get address() {\n if (!payment.address) throw new Error('Payment address could not be derived');\n return payment.address;\n },\n get publicKey() {\n if (!childKeychain.publicKey) throw new Error('Public key could not be derived');\n return childKeychain.publicKey;\n },\n };\n };\n}\n\ninterface BtcSignerDerivationPath {\n fingerprint: number;\n path: number[];\n}\nexport type BtcSignerDefaultBip32Derivation = [Uint8Array, BtcSignerDerivationPath];\nexport type BtcSignerTapBip32Derivation = [\n Uint8Array,\n { hashes: Uint8Array[]; der: BtcSignerDerivationPath },\n];\n\ntype BtcSignerBip32Derivation = BtcSignerDefaultBip32Derivation | BtcSignerTapBip32Derivation;\n\ntype PayerToBip32DerivationArgs = Pick<\n BitcoinPayer,\n 'masterKeyFingerprint' | 'keyOrigin' | 'publicKey'\n>;\n\n/**\n * @example\n * ```ts\n * tx.addInput({\n * ...input,\n * bip32Derivation: [payerToBip32Derivation(payer)],\n * })\n * ```\n */\nexport function payerToBip32Derivation(\n args: PayerToBip32DerivationArgs\n): BtcSignerDefaultBip32Derivation {\n return [\n args.publicKey,\n {\n fingerprint: hexToNumber(args.masterKeyFingerprint),\n path: btc.bip32Path(keyOriginToDerivationPath(args.keyOrigin)),\n },\n ];\n}\n\n/**\n * @example\n * ```ts\n * tx.addInput({\n * ...input,\n * tapBip32Derivation: [payerToTapBip32Derivation(payer)],\n * })\n * ```\n */\nexport function payerToTapBip32Derivation(\n args: PayerToBip32DerivationArgs\n): BtcSignerTapBip32Derivation {\n return [\n // TODO: @kyranjamie to default to schnoor when TR so conversion isn't\n // necessary here?\n ecdsaPublicKeyToSchnorr(args.publicKey),\n {\n hashes: [],\n der: {\n fingerprint: hexToNumber(args.masterKeyFingerprint),\n path: btc.bip32Path(keyOriginToDerivationPath(args.keyOrigin)),\n },\n },\n ];\n}\n\n/**\n * @description\n * Turns key format from @scure/btc-signer lib back into key origin string\n * @example\n * ```ts\n * const [inputOne] = getPsbtTxInputs(tx);\n * const keyOrigin = serializeKeyOrigin(inputOne.bip32Derivation[0][1]);\n * ```\n */\nexport function serializeKeyOrigin({ fingerprint, path }: BtcSignerDerivationPath) {\n const values = path.map(num => (num >= HARDENED_OFFSET ? num - HARDENED_OFFSET + \"'\" : num));\n return `${toHexString(fingerprint)}/${values.join('/')}`;\n}\n\n/**\n * @description\n * Of a given set of a `tx.input`s bip32 derivation paths from\n * `@scure/btc-signer`, serialize the paths back to the string format used\n * internally\n */\nexport function extractRequiredKeyOrigins(derivation: BtcSignerBip32Derivation[]) {\n return derivation.map(([_pubkey, path]) =>\n serializeKeyOrigin('hashes' in path ? path.der : path)\n );\n}\n","import { hexToBytes } from '@noble/hashes/utils';\nimport * as btc from '@scure/btc-signer';\n\nimport {\n CoinSelectionRecipient,\n CoinSelectionUtxo,\n determineUtxosForSpend,\n determineUtxosForSpendAll,\n} from '../coin-selection/coin-selection';\nimport { BtcSignerDefaultBip32Derivation } from '../signer/bitcoin-signer';\nimport { BtcSignerNetwork } from '../utils/bitcoin.network';\nimport { BitcoinError } from '../validation/bitcoin-error';\n\nexport interface GenerateBitcoinUnsignedTransactionArgs {\n feeRate: number;\n isSendingMax?: boolean;\n payerAddress: string;\n payerPublicKey: string;\n bip32Derivation: BtcSignerDefaultBip32Derivation[];\n network: BtcSignerNetwork;\n recipients: CoinSelectionRecipient[];\n utxos: CoinSelectionUtxo[];\n}\n\nexport function generateBitcoinUnsignedTransactionNativeSegwit({\n feeRate,\n isSendingMax,\n payerAddress,\n payerPublicKey,\n bip32Derivation,\n network,\n recipients,\n utxos,\n}: GenerateBitcoinUnsignedTransactionArgs) {\n const determineUtxosArgs = { feeRate, recipients, utxos };\n const { inputs, outputs, fee } = isSendingMax\n ? determineUtxosForSpendAll(determineUtxosArgs)\n : determineUtxosForSpend(determineUtxosArgs);\n\n if (!inputs.length) throw new BitcoinError('NoInputsToSign');\n if (!outputs.length) throw new BitcoinError('NoOutputsToSign');\n\n const tx = new btc.Transaction();\n const p2wpkh = btc.p2wpkh(hexToBytes(payerPublicKey), network);\n\n for (const input of inputs) {\n tx.addInput({\n txid: input.txid,\n index: input.vout,\n sequence: 0,\n bip32Derivation,\n witnessUtxo: {\n // script = 0014 + pubKeyHash\n script: p2wpkh.script,\n amount: BigInt(input.value),\n },\n });\n }\n\n outputs.forEach(output => {\n // When coin selection returns an output with no address,\n // we assume it is a change output\n if (!output.address) {\n tx.addOutputAddress(payerAddress, BigInt(output.value), network);\n return;\n }\n tx.addOutputAddress(output.address, BigInt(output.value), network);\n });\n\n return { tx, hex: tx.hex, psbt: tx.toPSBT(), inputs, fee };\n}\n","import BigNumber from 'bignumber.js';\n\nimport { Money } from '@leather.io/models';\n\nexport const minSpendAmountInSats = 546;\n\ninterface isBtcBalanceSufficientArgs {\n amount: Money;\n spendable: Money;\n}\nexport function isBtcBalanceSufficient({\n amount: { amount },\n spendable: { amount: spendableAmount },\n}: isBtcBalanceSufficientArgs) {\n if (!spendableAmount) return false;\n const desiredSpend = new BigNumber(amount);\n const availableAmount = new BigNumber(spendableAmount);\n if (desiredSpend.isGreaterThan(availableAmount)) return false;\n return true;\n}\n\ninterface IsBtcMinimumSpendArgs {\n amount: Money;\n}\nexport function isBtcMinimumSpend({ amount: { amount } }: IsBtcMinimumSpendArgs) {\n if (!amount) return false;\n const desiredSpend = new BigNumber(amount);\n if (desiredSpend.isLessThan(minSpendAmountInSats)) return false;\n return true;\n}\n","import { BitcoinAddress, type BitcoinNetworkModes, Money } from '@leather.io/models';\n\nimport { calculateMaxSpend } from '../coin-selection/calculate-max-spend';\nimport { GetBitcoinFeesArgs } from '../fees/bitcoin-fees';\nimport { BitcoinError } from '../validation/bitcoin-error';\nimport { isValidBitcoinAddress, isValidBitcoinNetworkAddress } from './address-validation';\nimport { isBtcBalanceSufficient, isBtcMinimumSpend } from './amount-validation';\n\ninterface BitcoinTransaction extends Omit<GetBitcoinFeesArgs, 'recipients'> {\n amount: Money;\n payer: BitcoinAddress;\n recipient: BitcoinAddress;\n network: BitcoinNetworkModes;\n feeRate: number;\n}\n\nexport function isValidBitcoinTransaction({\n amount,\n payer,\n recipient,\n network,\n utxos,\n feeRate,\n feeRates,\n}: BitcoinTransaction) {\n if (!isValidBitcoinAddress(payer) || !isValidBitcoinAddress(recipient)) {\n throw new BitcoinError('InvalidAddress');\n }\n if (\n !isValidBitcoinNetworkAddress(payer, network) ||\n !isValidBitcoinNetworkAddress(recipient, network)\n ) {\n throw new BitcoinError('InvalidNetworkAddress');\n }\n\n if (!isBtcMinimumSpend({ amount })) {\n throw new BitcoinError('InsufficientAmount');\n }\n\n const { amount: spendable } = calculateMaxSpend({ recipient, utxos, feeRate, feeRates });\n if (!isBtcBalanceSufficient({ amount, spendable })) {\n throw new BitcoinError('InsufficientFunds');\n }\n}\n","import { HARDENED_OFFSET, HDKey } from '@scure/bip32';\n\nimport { BitcoinAddress } from '@leather.io/models';\nimport { createCounter } from '@leather.io/utils';\n\nimport { makeTaprootAddressIndexDerivationPath } from '../payments/p2tr-address-gen';\nimport { makeNativeSegwitAddressIndexDerivationPath } from '../payments/p2wpkh-address-gen';\nimport {\n getNativeSegwitAddress,\n getTaprootAddress,\n inferNetworkFromAddress,\n inferPaymentTypeFromAddress,\n whenSupportedPaymentType,\n} from './bitcoin.utils';\n\ninterface LookUpDerivationByAddressArgs {\n taprootXpub: string;\n nativeSegwitXpub: string;\n iterationLimit: number;\n}\nexport function lookupDerivationByAddress(args: LookUpDerivationByAddressArgs) {\n const { taprootXpub, nativeSegwitXpub, iterationLimit } = args;\n\n const taprootKeychain = HDKey.fromExtendedKey(taprootXpub);\n const nativeSegwitKeychain = HDKey.fromExtendedKey(nativeSegwitXpub);\n\n return (address: BitcoinAddress) => {\n const network = inferNetworkFromAddress(address);\n const paymentType = inferPaymentTypeFromAddress(address);\n\n const accountIndex = whenSupportedPaymentType(paymentType)({\n p2tr: taprootKeychain.index - HARDENED_OFFSET,\n p2wpkh: nativeSegwitKeychain.index - HARDENED_OFFSET,\n });\n\n function getTaprootAddressAtIndex(index: number) {\n return getTaprootAddress({ index, keychain: taprootKeychain, network });\n }\n\n function getNativeSegwitAddressAtIndex(index: number) {\n return getNativeSegwitAddress({ index, keychain: nativeSegwitKeychain, network });\n }\n\n const paymentFn = whenSupportedPaymentType(paymentType)({\n p2tr: getTaprootAddressAtIndex,\n p2wpkh: getNativeSegwitAddressAtIndex,\n });\n\n const derivationPathFn = whenSupportedPaymentType(paymentType)({\n p2tr: makeTaprootAddressIndexDerivationPath,\n p2wpkh: makeNativeSegwitAddressIndexDerivationPath,\n });\n\n const count = createCounter();\n const t0 = performance.now();\n\n while (count.getValue() <= iterationLimit) {\n const currentIndex = count.getValue();\n\n const addressToCheck = paymentFn(currentIndex);\n\n if (addressToCheck !== address) {\n count.increment();\n continue;\n }\n\n const t1 = performance.now();\n\n return {\n status: 'success',\n duration: t1 - t0,\n path: derivationPathFn(network, accountIndex, currentIndex),\n } as const;\n }\n\n return { status: 'failure' } as const;\n };\n}\n"],"mappings":"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","names":["hexToBytes","btc","DerivationPathDepth","btc","DerivationPathDepth","DerivationPathDepth","address","DerivationPathDepth","script","address","hexToBytes","bitcoin","address","script","BigNumber","validate","validate","BigNumber","BigNumber","validate","BTC_P2WPKH_DUST_AMOUNT","createMoney","validate","address","createMoney","BigNumber","BTC_P2WPKH_DUST_AMOUNT","amount","sha256","createMoney","sumNumbers","address","createMoney","sumNumbers","isDefined","isUndefined","isUndefined","isDefined","isDefined","isUndefined","isUndefined","isDefined","createMoney","hexToBytes","btc","isString","createMoney","btc","DerivationPathDepth","DerivationPathDepth","hexToBytes","btc","p2wpkh","hexToBytes","BigNumber","HARDENED_OFFSET","HDKey","HDKey","address","HARDENED_OFFSET"]}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@leather.io/bitcoin",
3
3
  "author": "Leather.io contact@leather.io",
4
4
  "description": "Shared bitcoin utilities",
5
- "version": "0.19.41",
5
+ "version": "0.20.0",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/leather.io/mono/tree/dev/packages/bitcoin",
8
8
  "repository": {
@@ -31,8 +31,8 @@
31
31
  "just-memoize": "2.2.0",
32
32
  "varuint-bitcoin": "1.1.2",
33
33
  "@leather.io/constants": "0.17.5",
34
- "@leather.io/crypto": "1.6.49",
35
34
  "@leather.io/models": "0.28.0",
35
+ "@leather.io/crypto": "1.6.49",
36
36
  "@leather.io/utils": "0.27.8"
37
37
  },
38
38
  "devDependencies": {
@@ -42,7 +42,7 @@
42
42
  "typescript": "5.7.3",
43
43
  "vitest": "2.1.9",
44
44
  "@leather.io/prettier-config": "0.6.1",
45
- "@leather.io/rpc": "2.7.4",
45
+ "@leather.io/rpc": "2.8.0",
46
46
  "@leather.io/tsconfig-config": "0.6.1"
47
47
  },
48
48
  "keywords": [
@@ -1,6 +1,5 @@
1
1
  import { bytesToHex } from '@noble/hashes/utils';
2
2
  import type { TransactionInput } from '@scure/btc-signer/psbt';
3
- import { createBitcoinAddress } from 'validation/bitcoin-address';
4
3
 
5
4
  import type { BitcoinAddress, BitcoinNetworkModes, Inscription } from '@leather.io/models';
6
5
  import { isDefined, isUndefined } from '@leather.io/utils';
@@ -42,10 +41,12 @@ export function getParsedInputs({
42
41
 
43
42
  const signAll = isUndefined(indexesToSign);
44
43
  const psbtInputs = inputs.map((input, i) => {
45
- const inputAddress = isDefined(input.index)
44
+ const bitcoinAddress = isDefined(input.index)
46
45
  ? getBitcoinInputAddress(input, bitcoinNetwork)
47
- : '';
48
- const bitcoinAddress = createBitcoinAddress(inputAddress);
46
+ : null;
47
+ if (bitcoinAddress === null) {
48
+ throw new Error('PSBT input has unsupported bitcoin address');
49
+ }
49
50
  const isCurrentAddress = psbtAddresses.includes(bitcoinAddress);
50
51
  // Flags when not signing ALL inputs/outputs (NONE, SINGLE, and ANYONECANPAY)
51
52
  const canChange =
@@ -5,7 +5,6 @@ import { isDefined, isUndefined } from '@leather.io/utils';
5
5
 
6
6
  import { getBtcSignerLibNetworkConfigByMode } from '../utils/bitcoin.network';
7
7
  import { getAddressFromOutScript } from '../utils/bitcoin.utils';
8
- import { createBitcoinAddress } from '../validation/bitcoin-address';
9
8
 
10
9
  export interface PsbtOutput {
11
10
  address: BitcoinAddress;
@@ -36,9 +35,11 @@ export function getParsedOutputs({
36
35
  // logger.error('Output has no script');
37
36
  return;
38
37
  }
39
- const outputAddress = createBitcoinAddress(
40
- getAddressFromOutScript(output.script, bitcoinNetwork)
41
- );
38
+ const outputAddress = getAddressFromOutScript(output.script, bitcoinNetwork);
39
+ if (outputAddress === null) {
40
+ throw new Error('PSBT output has unsupported bitcoin address');
41
+ }
42
+
42
43
  const isCurrentAddress = psbtAddresses.includes(outputAddress);
43
44
 
44
45
  return {
@@ -15,6 +15,7 @@ import { defaultWalletKeyId, isDefined, whenNetwork } from '@leather.io/utils';
15
15
 
16
16
  import { getTaprootPayment } from '../payments/p2tr-address-gen';
17
17
  import { getNativeSegwitPaymentFromAddressIndex } from '../payments/p2wpkh-address-gen';
18
+ import { createBitcoinAddress } from '../validation/bitcoin-address';
18
19
  import { BtcSignerNetwork, getBtcSignerLibNetworkConfigByMode } from './bitcoin.network';
19
20
 
20
21
  export interface BitcoinAccount {
@@ -103,7 +104,7 @@ export function decodeBitcoinTx(tx: string): ReturnType<typeof btc.RawTx.decode>
103
104
  export function getAddressFromOutScript(
104
105
  script: Uint8Array,
105
106
  bitcoinNetwork: BtcSignerNetwork
106
- ): string {
107
+ ): BitcoinAddress | null {
107
108
  const outputScript = btc.OutScript.decode(script);
108
109
 
109
110
  switch (outputScript.type) {
@@ -111,25 +112,28 @@ export function getAddressFromOutScript(
111
112
  case 'sh':
112
113
  case 'wpkh':
113
114
  case 'wsh':
114
- return btc.Address(bitcoinNetwork).encode({
115
- type: outputScript.type,
116
- hash: outputScript.hash,
117
- });
115
+ return createBitcoinAddress(
116
+ btc.Address(bitcoinNetwork).encode({
117
+ type: outputScript.type,
118
+ hash: outputScript.hash,
119
+ })
120
+ );
118
121
  case 'tr':
119
- return btc.Address(bitcoinNetwork).encode({
120
- type: outputScript.type,
121
- pubkey: outputScript.pubkey,
122
- });
122
+ return createBitcoinAddress(
123
+ btc.Address(bitcoinNetwork).encode({
124
+ type: outputScript.type,
125
+ pubkey: outputScript.pubkey,
126
+ })
127
+ );
123
128
  case 'ms':
124
- return btc.p2ms(outputScript.m, outputScript.pubkeys).address ?? '';
129
+ return createBitcoinAddress(btc.p2ms(outputScript.m, outputScript.pubkeys).address ?? '');
125
130
  case 'pk':
126
- return btc.p2pk(outputScript.pubkey, bitcoinNetwork).address ?? '';
131
+ return createBitcoinAddress(btc.p2pk(outputScript.pubkey, bitcoinNetwork).address ?? '');
127
132
  case 'unknown':
128
- return 'unknown';
129
133
  case 'tr_ms':
130
134
  case 'tr_ns':
131
135
  default:
132
- return '';
136
+ return null;
133
137
  }
134
138
  }
135
139
 
@@ -229,7 +233,7 @@ export function getBitcoinInputAddress(input: TransactionInput, bitcoinNetwork:
229
233
  input.nonWitnessUtxo.outputs[input.index]?.script,
230
234
  bitcoinNetwork
231
235
  );
232
- return '';
236
+ return null;
233
237
  }
234
238
 
235
239
  export function getInputPaymentType(
@@ -237,7 +241,7 @@ export function getInputPaymentType(
237
241
  network: BitcoinNetworkModes
238
242
  ): BitcoinPaymentTypes {
239
243
  const address = getBitcoinInputAddress(input, getBtcSignerLibNetworkConfigByMode(network));
240
- if (address === '') throw new Error('Input address cannot be empty');
244
+ if (address === null) throw new Error('Input address cannot be empty');
241
245
  if (address.startsWith('bc1p') || address.startsWith('tb1p') || address.startsWith('bcrt1p'))
242
246
  return 'p2tr';
243
247
  if (address.startsWith('bc1q') || address.startsWith('tb1q') || address.startsWith('bcrt1q'))