@ledgerhq/hw-app-btc 6.2.0 → 6.9.1-6.9.1-taproot.0.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.
Files changed (187) hide show
  1. package/lib/Btc.d.ts +7 -3
  2. package/lib/Btc.d.ts.map +1 -1
  3. package/lib/Btc.js +99 -30
  4. package/lib/Btc.js.map +1 -1
  5. package/lib/BtcNew.d.ts +70 -0
  6. package/lib/BtcNew.d.ts.map +1 -0
  7. package/lib/BtcNew.js +372 -0
  8. package/lib/BtcNew.js.map +1 -0
  9. package/lib/BtcOld.d.ts +114 -0
  10. package/lib/BtcOld.d.ts.map +1 -0
  11. package/lib/BtcOld.js +138 -0
  12. package/lib/BtcOld.js.map +1 -0
  13. package/lib/bip32.d.ts +8 -0
  14. package/lib/bip32.d.ts.map +1 -1
  15. package/lib/bip32.js +32 -3
  16. package/lib/bip32.js.map +1 -1
  17. package/lib/buffertools.d.ts +28 -0
  18. package/lib/buffertools.d.ts.map +1 -0
  19. package/lib/buffertools.js +100 -0
  20. package/lib/buffertools.js.map +1 -0
  21. package/lib/createTransaction.d.ts.map +1 -1
  22. package/lib/createTransaction.js +16 -16
  23. package/lib/createTransaction.js.map +1 -1
  24. package/lib/finalizeInput.js +1 -1
  25. package/lib/finalizeInput.js.map +1 -1
  26. package/lib/getAppAndVersion.js +1 -1
  27. package/lib/getAppAndVersion.js.map +1 -1
  28. package/lib/getTrustedInput.js +6 -6
  29. package/lib/getTrustedInput.js.map +1 -1
  30. package/lib/getTrustedInputBIP143.js +2 -2
  31. package/lib/getTrustedInputBIP143.js.map +1 -1
  32. package/lib/getWalletPublicKey.d.ts +1 -1
  33. package/lib/getWalletPublicKey.d.ts.map +1 -1
  34. package/lib/getWalletPublicKey.js +1 -1
  35. package/lib/getWalletPublicKey.js.map +1 -1
  36. package/lib/hashPublicKey.d.ts +1 -1
  37. package/lib/hashPublicKey.d.ts.map +1 -1
  38. package/lib/hashPublicKey.js +1 -1
  39. package/lib/hashPublicKey.js.map +1 -1
  40. package/lib/index.d.ts +3 -0
  41. package/lib/index.d.ts.map +1 -0
  42. package/lib/index.js +8 -0
  43. package/lib/index.js.map +1 -0
  44. package/lib/newops/appClient.d.ts +14 -0
  45. package/lib/newops/appClient.d.ts.map +1 -0
  46. package/lib/newops/appClient.js +242 -0
  47. package/lib/newops/appClient.js.map +1 -0
  48. package/lib/newops/clientCommands.d.ts +61 -0
  49. package/lib/newops/clientCommands.d.ts.map +1 -0
  50. package/lib/newops/clientCommands.js +331 -0
  51. package/lib/newops/clientCommands.js.map +1 -0
  52. package/lib/newops/merkelizedPsbt.d.ts +15 -0
  53. package/lib/newops/merkelizedPsbt.d.ts.map +1 -0
  54. package/lib/newops/merkelizedPsbt.js +91 -0
  55. package/lib/newops/merkelizedPsbt.js.map +1 -0
  56. package/lib/newops/merkle.d.ts +29 -0
  57. package/lib/newops/merkle.d.ts.map +1 -0
  58. package/lib/newops/merkle.js +133 -0
  59. package/lib/newops/merkle.js.map +1 -0
  60. package/lib/newops/merkleMap.d.ts +15 -0
  61. package/lib/newops/merkleMap.d.ts.map +1 -0
  62. package/lib/newops/merkleMap.js +37 -0
  63. package/lib/newops/merkleMap.js.map +1 -0
  64. package/lib/newops/policy.d.ts +14 -0
  65. package/lib/newops/policy.d.ts.map +1 -0
  66. package/lib/newops/policy.js +40 -0
  67. package/lib/newops/policy.js.map +1 -0
  68. package/lib/newops/psbtExtractor.d.ts +4 -0
  69. package/lib/newops/psbtExtractor.d.ts.map +1 -0
  70. package/lib/newops/psbtExtractor.js +36 -0
  71. package/lib/newops/psbtExtractor.js.map +1 -0
  72. package/lib/newops/psbtFinalizer.d.ts +7 -0
  73. package/lib/newops/psbtFinalizer.d.ts.map +1 -0
  74. package/lib/newops/psbtFinalizer.js +111 -0
  75. package/lib/newops/psbtFinalizer.js.map +1 -0
  76. package/lib/newops/psbtv2.d.ts +129 -0
  77. package/lib/newops/psbtv2.d.ts.map +1 -0
  78. package/lib/newops/psbtv2.js +478 -0
  79. package/lib/newops/psbtv2.js.map +1 -0
  80. package/lib/serializeTransaction.js +4 -4
  81. package/lib/serializeTransaction.js.map +1 -1
  82. package/lib/signP2SHTransaction.js +5 -5
  83. package/lib/signP2SHTransaction.js.map +1 -1
  84. package/lib/signTransaction.js +1 -1
  85. package/lib/signTransaction.js.map +1 -1
  86. package/lib/splitTransaction.js +7 -7
  87. package/lib/splitTransaction.js.map +1 -1
  88. package/lib/startUntrustedHashTransactionInput.js +2 -2
  89. package/lib/startUntrustedHashTransactionInput.js.map +1 -1
  90. package/lib/varint.d.ts.map +1 -1
  91. package/lib/varint.js +1 -0
  92. package/lib/varint.js.map +1 -1
  93. package/lib-es/Btc.d.ts +7 -3
  94. package/lib-es/Btc.d.ts.map +1 -1
  95. package/lib-es/Btc.js +92 -26
  96. package/lib-es/Btc.js.map +1 -1
  97. package/lib-es/BtcNew.d.ts +70 -0
  98. package/lib-es/BtcNew.d.ts.map +1 -0
  99. package/lib-es/BtcNew.js +370 -0
  100. package/lib-es/BtcNew.js.map +1 -0
  101. package/lib-es/BtcOld.d.ts +114 -0
  102. package/lib-es/BtcOld.d.ts.map +1 -0
  103. package/lib-es/BtcOld.js +136 -0
  104. package/lib-es/BtcOld.js.map +1 -0
  105. package/lib-es/bip32.d.ts +8 -0
  106. package/lib-es/bip32.d.ts.map +1 -1
  107. package/lib-es/bip32.js +26 -2
  108. package/lib-es/bip32.js.map +1 -1
  109. package/lib-es/buffertools.d.ts +28 -0
  110. package/lib-es/buffertools.d.ts.map +1 -0
  111. package/lib-es/buffertools.js +94 -0
  112. package/lib-es/buffertools.js.map +1 -0
  113. package/lib-es/createTransaction.d.ts.map +1 -1
  114. package/lib-es/getWalletPublicKey.d.ts +1 -1
  115. package/lib-es/getWalletPublicKey.d.ts.map +1 -1
  116. package/lib-es/getWalletPublicKey.js.map +1 -1
  117. package/lib-es/hashPublicKey.d.ts +1 -1
  118. package/lib-es/hashPublicKey.d.ts.map +1 -1
  119. package/lib-es/index.d.ts +3 -0
  120. package/lib-es/index.d.ts.map +1 -0
  121. package/lib-es/index.js +3 -0
  122. package/lib-es/index.js.map +1 -0
  123. package/lib-es/newops/appClient.d.ts +14 -0
  124. package/lib-es/newops/appClient.d.ts.map +1 -0
  125. package/lib-es/newops/appClient.js +239 -0
  126. package/lib-es/newops/appClient.js.map +1 -0
  127. package/lib-es/newops/clientCommands.d.ts +61 -0
  128. package/lib-es/newops/clientCommands.d.ts.map +1 -0
  129. package/lib-es/newops/clientCommands.js +328 -0
  130. package/lib-es/newops/clientCommands.js.map +1 -0
  131. package/lib-es/newops/merkelizedPsbt.d.ts +15 -0
  132. package/lib-es/newops/merkelizedPsbt.d.ts.map +1 -0
  133. package/lib-es/newops/merkelizedPsbt.js +88 -0
  134. package/lib-es/newops/merkelizedPsbt.js.map +1 -0
  135. package/lib-es/newops/merkle.d.ts +29 -0
  136. package/lib-es/newops/merkle.d.ts.map +1 -0
  137. package/lib-es/newops/merkle.js +129 -0
  138. package/lib-es/newops/merkle.js.map +1 -0
  139. package/lib-es/newops/merkleMap.d.ts +15 -0
  140. package/lib-es/newops/merkleMap.d.ts.map +1 -0
  141. package/lib-es/newops/merkleMap.js +34 -0
  142. package/lib-es/newops/merkleMap.js.map +1 -0
  143. package/lib-es/newops/policy.d.ts +14 -0
  144. package/lib-es/newops/policy.d.ts.map +1 -0
  145. package/lib-es/newops/policy.js +36 -0
  146. package/lib-es/newops/policy.js.map +1 -0
  147. package/lib-es/newops/psbtExtractor.d.ts +4 -0
  148. package/lib-es/newops/psbtExtractor.d.ts.map +1 -0
  149. package/lib-es/newops/psbtExtractor.js +32 -0
  150. package/lib-es/newops/psbtExtractor.js.map +1 -0
  151. package/lib-es/newops/psbtFinalizer.d.ts +7 -0
  152. package/lib-es/newops/psbtFinalizer.d.ts.map +1 -0
  153. package/lib-es/newops/psbtFinalizer.js +107 -0
  154. package/lib-es/newops/psbtFinalizer.js.map +1 -0
  155. package/lib-es/newops/psbtv2.d.ts +129 -0
  156. package/lib-es/newops/psbtv2.d.ts.map +1 -0
  157. package/lib-es/newops/psbtv2.js +475 -0
  158. package/lib-es/newops/psbtv2.js.map +1 -0
  159. package/lib-es/varint.d.ts.map +1 -1
  160. package/lib-es/varint.js +1 -0
  161. package/lib-es/varint.js.map +1 -1
  162. package/package.json +7 -4
  163. package/src/Btc.ts +42 -25
  164. package/src/BtcNew.ts +326 -0
  165. package/src/BtcOld.ts +156 -0
  166. package/src/bip32.ts +34 -2
  167. package/src/buffertools.ts +102 -0
  168. package/src/createTransaction.ts +2 -2
  169. package/src/getWalletPublicKey.ts +6 -1
  170. package/src/hashPublicKey.ts +1 -1
  171. package/src/index.ts +2 -0
  172. package/src/newops/appClient.ts +178 -0
  173. package/src/newops/clientCommands.ts +312 -0
  174. package/src/newops/merkelizedPsbt.ts +55 -0
  175. package/src/newops/merkle.ts +123 -0
  176. package/src/newops/merkleMap.ts +39 -0
  177. package/src/newops/policy.ts +52 -0
  178. package/src/newops/psbtExtractor.ts +33 -0
  179. package/src/newops/psbtFinalizer.ts +110 -0
  180. package/src/newops/psbtv2.ts +548 -0
  181. package/src/varint.ts +2 -0
  182. package/tests/Btc.integration.test.ts +89 -0
  183. package/tests/Btc.test.ts +6 -0
  184. package/tests/newops/BtcNew.test.ts +646 -0
  185. package/tests/newops/common.ts +25 -0
  186. package/tests/newops/merkle.test.ts +97 -0
  187. package/tests/trustedInputs.test.ts +4 -0
@@ -0,0 +1,370 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ var __generator = (this && this.__generator) || function (thisArg, body) {
11
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
12
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
13
+ function verb(n) { return function (v) { return step([n, v]); }; }
14
+ function step(op) {
15
+ if (f) throw new TypeError("Generator is already executing.");
16
+ while (_) try {
17
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
18
+ if (y = 0, t) op = [op[0] & 2, t.value];
19
+ switch (op[0]) {
20
+ case 0: case 1: t = op; break;
21
+ case 4: _.label++; return { value: op[1], done: false };
22
+ case 5: _.label++; y = op[1]; op = [0]; continue;
23
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
24
+ default:
25
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
26
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
27
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
28
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
29
+ if (t[2]) _.ops.pop();
30
+ _.trys.pop(); continue;
31
+ }
32
+ op = body.call(thisArg, _);
33
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
34
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
35
+ }
36
+ };
37
+ import { crypto } from "bitcoinjs-lib";
38
+ import { getXpubComponents, pathStringToArray, pubkeyFromXpub } from "./bip32";
39
+ import { BufferReader } from "./buffertools";
40
+ import { hashPublicKey } from "./hashPublicKey";
41
+ import { createKey, WalletPolicy } from "./newops/policy";
42
+ import { extract } from "./newops/psbtExtractor";
43
+ import { finalize } from "./newops/psbtFinalizer";
44
+ import { psbtIn, PsbtV2 } from "./newops/psbtv2";
45
+ import { serializeTransaction } from "./serializeTransaction";
46
+ import { pointCompress } from "tiny-secp256k1";
47
+ var BtcNew = /** @class */ (function () {
48
+ function BtcNew(client) {
49
+ this.client = client;
50
+ }
51
+ BtcNew.prototype.getWalletPublicKey = function (path, opts) {
52
+ var _a, _b;
53
+ return __awaiter(this, void 0, void 0, function () {
54
+ var pathElements, xpub, display, address, components, uncompressedPubkey;
55
+ return __generator(this, function (_c) {
56
+ switch (_c.label) {
57
+ case 0:
58
+ pathElements = pathStringToArray(path);
59
+ return [4 /*yield*/, this.client.getPubkey(false, pathElements)];
60
+ case 1:
61
+ xpub = _c.sent();
62
+ display = (_a = opts === null || opts === void 0 ? void 0 : opts.verify) !== null && _a !== void 0 ? _a : false;
63
+ return [4 /*yield*/, this.getWalletAddress(pathElements, accountTypeFrom((_b = opts === null || opts === void 0 ? void 0 : opts.format) !== null && _b !== void 0 ? _b : "legacy"), display)];
64
+ case 2:
65
+ address = _c.sent();
66
+ components = getXpubComponents(xpub);
67
+ uncompressedPubkey = Buffer.from(pointCompress(components.pubkey, false));
68
+ return [2 /*return*/, {
69
+ publicKey: uncompressedPubkey.toString("hex"),
70
+ bitcoinAddress: address,
71
+ chainCode: components.chaincode.toString("hex")
72
+ }];
73
+ }
74
+ });
75
+ });
76
+ };
77
+ /**
78
+ * Get an address for the specified path.
79
+ *
80
+ * If display is true, we must get the address from the device, which would require
81
+ * us to determine WalletPolicy. This requires two *extra* queries to the device, one
82
+ * for the account xpub and one for master key fingerprint.
83
+ *
84
+ * If display is false we *could* generate the address ourselves, but chose to
85
+ * get it from the device to save development time. However, it shouldn't take
86
+ * more than a few hours to implement local address generation.
87
+ *
88
+ * Moreover, if the path is not for a leaf, ie accountPath+/X/Y, there is no
89
+ * way to get the address from the device. In this case we have to create it
90
+ * ourselves, but we don't at this time, and instead return an empty ("") address.
91
+ */
92
+ BtcNew.prototype.getWalletAddress = function (pathElements, accountType, display) {
93
+ return __awaiter(this, void 0, void 0, function () {
94
+ var accountPathLength, accountPath, accountXpub, masterFingerprint, policy, changeAndIndex;
95
+ return __generator(this, function (_a) {
96
+ switch (_a.label) {
97
+ case 0:
98
+ accountPathLength = this.accountPathLength(pathElements);
99
+ if (accountPathLength + 2 != pathElements.length) {
100
+ return [2 /*return*/, ""];
101
+ }
102
+ accountPath = pathElements.slice(0, accountPathLength);
103
+ return [4 /*yield*/, this.client.getPubkey(false, accountPath)];
104
+ case 1:
105
+ accountXpub = _a.sent();
106
+ return [4 /*yield*/, this.client.getMasterFingerprint()];
107
+ case 2:
108
+ masterFingerprint = _a.sent();
109
+ policy = new WalletPolicy(accountType, createKey(masterFingerprint, accountPath, accountXpub));
110
+ changeAndIndex = pathElements.slice(-2, pathElements.length);
111
+ return [2 /*return*/, this.client.getWalletAddress(policy, Buffer.alloc(32, 0), changeAndIndex[0], changeAndIndex[1], display)];
112
+ }
113
+ });
114
+ });
115
+ };
116
+ BtcNew.prototype.accountPathLength = function (pathElements) {
117
+ for (var i = pathElements.length - 1; i >= 0; i--) {
118
+ if (pathElements[i] >= 0x80000000) {
119
+ return i + 1;
120
+ }
121
+ }
122
+ return 0;
123
+ };
124
+ /**
125
+ * To sign a transaction involving standard (P2PKH) inputs, call createTransaction with the following parameters
126
+ * @param inputs is an array of [ transaction, output_index, optional redeem script, optional sequence ] where
127
+ *
128
+ * * transaction is the previously computed transaction object for this UTXO
129
+ * * output_index is the output in the transaction used as input for this UTXO (counting from 0)
130
+ * * redeem script is the optional redeem script to use when consuming a Segregated Witness input
131
+ * * sequence is the sequence number to use for this input (when using RBF), or non present
132
+ * @param associatedKeysets is an array of BIP 32 paths pointing to the path to the private key used for each UTXO
133
+ * @param changePath is an optional BIP 32 path pointing to the path to the public key used to compute the change address
134
+ * @param outputScriptHex is the hexadecimal serialized outputs of the transaction to sign, including leading vararg voutCount
135
+ * @param lockTime is the optional lockTime of the transaction to sign, or default (0)
136
+ * @param sigHashType is the hash type of the transaction to sign, or default (all)
137
+ * @param segwit is an optional boolean indicating wether to use segwit or not. This includes wrapped segwit.
138
+ * @param initialTimestamp is an optional timestamp of the function call to use for coins that necessitate timestamps only, (not the one that the tx will include)
139
+ * @param additionals list of additionnal options
140
+ *
141
+ * - "bech32" for spending native segwit outputs
142
+ * - "bech32m" for spending segwit v1+ outptus
143
+ * - "abc" for bch
144
+ * - "gold" for btg
145
+ * - "bipxxx" for using BIPxxx
146
+ * - "sapling" to indicate a zec transaction is supporting sapling (to be set over block 419200)
147
+ * @param expiryHeight is an optional Buffer for zec overwinter / sapling Txs
148
+ * @param useTrustedInputForSegwit trust inputs for segwit transactions. If app version >= 1.4.0 this should be true.
149
+ * @return the signed transaction ready to be broadcast
150
+ * @example
151
+ btc.createTransaction({
152
+ inputs: [ [tx1, 1] ],
153
+ associatedKeysets: ["0'/0/0"],
154
+ outputScriptHex: "01905f0100000000001976a91472a5d75c8d2d0565b656a5232703b167d50d5a2b88ac"
155
+ }).then(res => ...);
156
+ */
157
+ BtcNew.prototype.createPaymentTransactionNew = function (arg) {
158
+ return __awaiter(this, void 0, void 0, function () {
159
+ var psbt, accountType, masterFp, accountXpub, accountPath, i, pathElems, outputsConcat, outputsBufferReader, outputCount, i, amount, outputScript, isChange, changePath, xpubBase58, pubkey, redeemScript, key, p;
160
+ return __generator(this, function (_a) {
161
+ switch (_a.label) {
162
+ case 0:
163
+ if (arg.inputs.length == 0) {
164
+ throw Error("No inputs");
165
+ }
166
+ psbt = new PsbtV2();
167
+ accountType = accountTypeFromArg(arg);
168
+ psbt.setGlobalTxVersion(2);
169
+ if (arg.lockTime) {
170
+ psbt.setGlobalFallbackLocktime(arg.lockTime);
171
+ }
172
+ psbt.setGlobalInputCount(arg.inputs.length);
173
+ psbt.setGlobalPsbtVersion(2);
174
+ psbt.setGlobalTxVersion(2);
175
+ return [4 /*yield*/, this.client.getMasterFingerprint()];
176
+ case 1:
177
+ masterFp = _a.sent();
178
+ accountXpub = "";
179
+ accountPath = [];
180
+ i = 0;
181
+ _a.label = 2;
182
+ case 2:
183
+ if (!(i < arg.inputs.length)) return [3 /*break*/, 7];
184
+ pathElems = pathStringToArray(arg.associatedKeysets[i]);
185
+ if (!(accountXpub == "")) return [3 /*break*/, 4];
186
+ // We assume all inputs belong to the same account so we set
187
+ // the account xpub and path based on the first input.
188
+ accountPath = pathElems.slice(0, -2);
189
+ return [4 /*yield*/, this.client.getPubkey(false, accountPath)];
190
+ case 3:
191
+ accountXpub = _a.sent();
192
+ _a.label = 4;
193
+ case 4: return [4 /*yield*/, this.setInput(psbt, i, arg.inputs[i], pathElems, accountType, masterFp)];
194
+ case 5:
195
+ _a.sent();
196
+ _a.label = 6;
197
+ case 6:
198
+ i++;
199
+ return [3 /*break*/, 2];
200
+ case 7:
201
+ outputsConcat = Buffer.from(arg.outputScriptHex, "hex");
202
+ outputsBufferReader = new BufferReader(outputsConcat);
203
+ outputCount = outputsBufferReader.readVarInt();
204
+ psbt.setGlobalOutputCount(outputCount);
205
+ i = 0;
206
+ _a.label = 8;
207
+ case 8:
208
+ if (!(i < outputCount)) return [3 /*break*/, 12];
209
+ amount = Number(outputsBufferReader.readUInt64());
210
+ outputScript = outputsBufferReader.readVarSlice();
211
+ isChange = arg.changePath && i == outputCount - 1;
212
+ if (!isChange) return [3 /*break*/, 10];
213
+ changePath = pathStringToArray(arg.changePath);
214
+ return [4 /*yield*/, this.client.getPubkey(false, changePath)];
215
+ case 9:
216
+ xpubBase58 = _a.sent();
217
+ pubkey = pubkeyFromXpub(xpubBase58);
218
+ if (accountType == AccountType.p2pkh) {
219
+ psbt.setOutputBip32Derivation(i, pubkey, masterFp, changePath);
220
+ }
221
+ else if (accountType == AccountType.p2wpkh) {
222
+ psbt.setOutputBip32Derivation(i, pubkey, masterFp, changePath);
223
+ }
224
+ else if (accountType == AccountType.p2wpkhWrapped) {
225
+ redeemScript = this.createRedeemScript(pubkey);
226
+ psbt.setOutputRedeemScript(i, redeemScript);
227
+ psbt.setOutputBip32Derivation(i, pubkey, masterFp, changePath);
228
+ }
229
+ else if (accountType == AccountType.p2tr) {
230
+ psbt.setOutputTapBip32Derivation(i, pubkey, [], masterFp, changePath);
231
+ }
232
+ _a.label = 10;
233
+ case 10:
234
+ psbt.setOutputAmount(i, amount);
235
+ psbt.setOutputScript(i, outputScript);
236
+ _a.label = 11;
237
+ case 11:
238
+ i++;
239
+ return [3 /*break*/, 8];
240
+ case 12:
241
+ key = createKey(masterFp, accountPath, accountXpub);
242
+ p = new WalletPolicy(accountType, key);
243
+ return [4 /*yield*/, this.signPsbt(psbt, p)];
244
+ case 13: return [2 /*return*/, _a.sent()];
245
+ }
246
+ });
247
+ });
248
+ };
249
+ BtcNew.prototype.setInput = function (psbt, i, input, pathElements, accountType, masterFP) {
250
+ return __awaiter(this, void 0, void 0, function () {
251
+ var inputTx, spentOutputIndex, redeemScript, sequence, inputTxBuffer, inputTxid, xpubBase58, pubkey, spentOutput, expectedRedeemScript;
252
+ return __generator(this, function (_a) {
253
+ switch (_a.label) {
254
+ case 0:
255
+ inputTx = input[0];
256
+ spentOutputIndex = input[1];
257
+ redeemScript = input[2];
258
+ sequence = input[3];
259
+ if (sequence) {
260
+ psbt.setInputSequence(i, sequence);
261
+ }
262
+ inputTxBuffer = serializeTransaction(inputTx, true);
263
+ inputTxid = crypto.hash256(inputTxBuffer);
264
+ return [4 /*yield*/, this.client.getPubkey(false, pathElements)];
265
+ case 1:
266
+ xpubBase58 = _a.sent();
267
+ pubkey = pubkeyFromXpub(xpubBase58);
268
+ if (!inputTx.outputs)
269
+ throw Error("Missing outputs array in transaction to sign");
270
+ spentOutput = inputTx.outputs[spentOutputIndex];
271
+ if (accountType == AccountType.p2pkh) {
272
+ psbt.setInputNonWitnessUtxo(i, inputTxBuffer);
273
+ psbt.setInputBip32Derivation(i, pubkey, masterFP, pathElements);
274
+ }
275
+ else if (accountType == AccountType.p2wpkh) {
276
+ psbt.setInputNonWitnessUtxo(i, inputTxBuffer);
277
+ psbt.setInputBip32Derivation(i, pubkey, masterFP, pathElements);
278
+ psbt.setInputWitnessUtxo(i, spentOutput.amount, spentOutput.script);
279
+ }
280
+ else if (accountType == AccountType.p2wpkhWrapped) {
281
+ psbt.setInputNonWitnessUtxo(i, inputTxBuffer);
282
+ psbt.setInputBip32Derivation(i, pubkey, masterFP, pathElements);
283
+ if (!redeemScript) {
284
+ throw new Error("Missing redeemScript for p2wpkhWrapped input");
285
+ }
286
+ expectedRedeemScript = this.createRedeemScript(pubkey);
287
+ if (redeemScript != expectedRedeemScript.toString("hex")) {
288
+ throw new Error("Unexpected redeemScript");
289
+ }
290
+ psbt.setInputRedeemScript(i, expectedRedeemScript);
291
+ psbt.setInputWitnessUtxo(i, spentOutput.amount, spentOutput.script);
292
+ }
293
+ else if (accountType == AccountType.p2tr) {
294
+ psbt.setInputTapBip32Derivation(i, pubkey, [], masterFP, pathElements);
295
+ psbt.setInputWitnessUtxo(i, spentOutput.amount, spentOutput.script);
296
+ }
297
+ psbt.setInputPreviousTxId(i, inputTxid);
298
+ psbt.setInputOutputIndex(i, spentOutputIndex);
299
+ return [2 /*return*/];
300
+ }
301
+ });
302
+ });
303
+ };
304
+ BtcNew.prototype.signPsbt = function (psbt, walletPolicy) {
305
+ return __awaiter(this, void 0, void 0, function () {
306
+ var sigs, serializedTx;
307
+ return __generator(this, function (_a) {
308
+ switch (_a.label) {
309
+ case 0: return [4 /*yield*/, this.client.signPsbt(psbt, walletPolicy, Buffer.alloc(32, 0))];
310
+ case 1:
311
+ sigs = _a.sent();
312
+ sigs.forEach(function (v, k) {
313
+ // Note: Looking at BIP32 derivation does not work in the generic case.
314
+ // some inputs might not have a BIP32-derived pubkey.
315
+ var pubkeys = psbt.getInputKeyDatas(k, psbtIn.BIP32_DERIVATION);
316
+ var pubkey;
317
+ if (pubkeys.length != 1) {
318
+ pubkey = psbt.getInputKeyDatas(k, psbtIn.TAP_BIP32_DERIVATION);
319
+ if (pubkey.length == 0) {
320
+ throw Error("Missing pubkey derivation for input " + k);
321
+ }
322
+ psbt.setInputTapKeySig(k, v);
323
+ }
324
+ else {
325
+ pubkey = pubkeys[0];
326
+ psbt.setInputPartialSig(k, pubkey, v);
327
+ }
328
+ });
329
+ finalize(psbt);
330
+ serializedTx = extract(psbt);
331
+ return [2 /*return*/, serializedTx.toString("hex")];
332
+ }
333
+ });
334
+ });
335
+ };
336
+ BtcNew.prototype.createRedeemScript = function (pubkey) {
337
+ var pubkeyHash = hashPublicKey(pubkey);
338
+ return Buffer.concat([Buffer.from("0014", "hex"), pubkeyHash]);
339
+ };
340
+ return BtcNew;
341
+ }());
342
+ export default BtcNew;
343
+ var AccountType;
344
+ (function (AccountType) {
345
+ AccountType["p2pkh"] = "pkh(@0)";
346
+ AccountType["p2wpkh"] = "wpkh(@0)";
347
+ AccountType["p2wpkhWrapped"] = "sh(wpkh(@0))";
348
+ AccountType["p2tr"] = "tr(@0)";
349
+ })(AccountType || (AccountType = {}));
350
+ function accountTypeFrom(addressFormat) {
351
+ if (addressFormat == "legacy")
352
+ return AccountType.p2pkh;
353
+ if (addressFormat == "p2sh")
354
+ return AccountType.p2wpkhWrapped;
355
+ if (addressFormat == "bech32")
356
+ return AccountType.p2wpkh;
357
+ if (addressFormat == "bech32m")
358
+ return AccountType.p2tr;
359
+ throw new Error("Unsupported address format " + addressFormat);
360
+ }
361
+ function accountTypeFromArg(arg) {
362
+ if (arg.additionals.includes("bech32m"))
363
+ return AccountType.p2tr;
364
+ if (arg.additionals.includes("bech32"))
365
+ return AccountType.p2wpkh;
366
+ if (arg.segwit)
367
+ return AccountType.p2wpkhWrapped;
368
+ return AccountType.p2pkh;
369
+ }
370
+ //# sourceMappingURL=BtcNew.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BtcNew.js","sourceRoot":"","sources":["../src/BtcNew.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,114 @@
1
+ import type Transport from "@ledgerhq/hw-transport";
2
+ import type { CreateTransactionArg } from "./createTransaction";
3
+ import type { AddressFormat } from "./getWalletPublicKey";
4
+ import type { SignP2SHTransactionArg } from "./signP2SHTransaction";
5
+ export type { AddressFormat };
6
+ /**
7
+ * Bitcoin API.
8
+ *
9
+ * @example
10
+ * import Btc from "@ledgerhq/hw-app-btc";
11
+ * const btc = new Btc(transport)
12
+ */
13
+ export default class BtcOld {
14
+ transport: Transport;
15
+ constructor(transport: Transport);
16
+ /**
17
+ * @param path a BIP 32 path
18
+ * @param options an object with optional these fields:
19
+ *
20
+ * - verify (boolean) will ask user to confirm the address on the device
21
+ *
22
+ * - format ("legacy" | "p2sh" | "bech32" | "cashaddr") to use different bitcoin address formatter.
23
+ *
24
+ * NB The normal usage is to use:
25
+ *
26
+ * - legacy format with 44' paths
27
+ *
28
+ * - p2sh format with 49' paths
29
+ *
30
+ * - bech32 format with 173' paths
31
+ *
32
+ * - cashaddr in case of Bitcoin Cash
33
+ *
34
+ * @example
35
+ * btc.getWalletPublicKey("44'/0'/0'/0/0").then(o => o.bitcoinAddress)
36
+ * btc.getWalletPublicKey("49'/0'/0'/0/0", { format: "p2sh" }).then(o => o.bitcoinAddress)
37
+ */
38
+ getWalletPublicKey(path: string, opts?: {
39
+ verify?: boolean;
40
+ format?: AddressFormat;
41
+ }): Promise<{
42
+ publicKey: string;
43
+ bitcoinAddress: string;
44
+ chainCode: string;
45
+ }>;
46
+ /**
47
+ * You can sign a message according to the Bitcoin Signature format and retrieve v, r, s given the message and the BIP 32 path of the account to sign.
48
+ * @example
49
+ btc.signMessageNew_async("44'/60'/0'/0'/0", Buffer.from("test").toString("hex")).then(function(result) {
50
+ var v = result['v'] + 27 + 4;
51
+ var signature = Buffer.from(v.toString(16) + result['r'] + result['s'], 'hex').toString('base64');
52
+ console.log("Signature : " + signature);
53
+ }).catch(function(ex) {console.log(ex);});
54
+ */
55
+ signMessageNew(path: string, messageHex: string): Promise<{
56
+ v: number;
57
+ r: string;
58
+ s: string;
59
+ }>;
60
+ /**
61
+ * To sign a transaction involving standard (P2PKH) inputs, call createTransaction with the following parameters
62
+ * @param inputs is an array of [ transaction, output_index, optional redeem script, optional sequence ] where
63
+ *
64
+ * * transaction is the previously computed transaction object for this UTXO
65
+ * * output_index is the output in the transaction used as input for this UTXO (counting from 0)
66
+ * * redeem script is the optional redeem script to use when consuming a Segregated Witness input
67
+ * * sequence is the sequence number to use for this input (when using RBF), or non present
68
+ * @param associatedKeysets is an array of BIP 32 paths pointing to the path to the private key used for each UTXO
69
+ * @param changePath is an optional BIP 32 path pointing to the path to the public key used to compute the change address
70
+ * @param outputScriptHex is the hexadecimal serialized outputs of the transaction to sign
71
+ * @param lockTime is the optional lockTime of the transaction to sign, or default (0)
72
+ * @param sigHashType is the hash type of the transaction to sign, or default (all)
73
+ * @param segwit is an optional boolean indicating wether to use segwit or not
74
+ * @param initialTimestamp is an optional timestamp of the function call to use for coins that necessitate timestamps only, (not the one that the tx will include)
75
+ * @param additionals list of additionnal options
76
+ *
77
+ * - "bech32" for spending native segwit outputs
78
+ * - "abc" for bch
79
+ * - "gold" for btg
80
+ * - "bipxxx" for using BIPxxx
81
+ * - "sapling" to indicate a zec transaction is supporting sapling (to be set over block 419200)
82
+ * @param expiryHeight is an optional Buffer for zec overwinter / sapling Txs
83
+ * @param useTrustedInputForSegwit trust inputs for segwit transactions
84
+ * @return the signed transaction ready to be broadcast
85
+ * @example
86
+ btc.createTransaction({
87
+ inputs: [ [tx1, 1] ],
88
+ associatedKeysets: ["0'/0/0"],
89
+ outputScriptHex: "01905f0100000000001976a91472a5d75c8d2d0565b656a5232703b167d50d5a2b88ac"
90
+ }).then(res => ...);
91
+ */
92
+ createPaymentTransactionNew(arg: CreateTransactionArg): Promise<string>;
93
+ /**
94
+ * To obtain the signature of multisignature (P2SH) inputs, call signP2SHTransaction_async with the folowing parameters
95
+ * @param inputs is an array of [ transaction, output_index, redeem script, optional sequence ] where
96
+ * * transaction is the previously computed transaction object for this UTXO
97
+ * * output_index is the output in the transaction used as input for this UTXO (counting from 0)
98
+ * * redeem script is the mandatory redeem script associated to the current P2SH input
99
+ * * sequence is the sequence number to use for this input (when using RBF), or non present
100
+ * @param associatedKeysets is an array of BIP 32 paths pointing to the path to the private key used for each UTXO
101
+ * @param outputScriptHex is the hexadecimal serialized outputs of the transaction to sign
102
+ * @param lockTime is the optional lockTime of the transaction to sign, or default (0)
103
+ * @param sigHashType is the hash type of the transaction to sign, or default (all)
104
+ * @return the signed transaction ready to be broadcast
105
+ * @example
106
+ btc.signP2SHTransaction({
107
+ inputs: [ [tx, 1, "52210289b4a3ad52a919abd2bdd6920d8a6879b1e788c38aa76f0440a6f32a9f1996d02103a3393b1439d1693b063482c04bd40142db97bdf139eedd1b51ffb7070a37eac321030b9a409a1e476b0d5d17b804fcdb81cf30f9b99c6f3ae1178206e08bc500639853ae"] ],
108
+ associatedKeysets: ["0'/0/0"],
109
+ outputScriptHex: "01905f0100000000001976a91472a5d75c8d2d0565b656a5232703b167d50d5a2b88ac"
110
+ }).then(result => ...);
111
+ */
112
+ signP2SHTransaction(arg: SignP2SHTransactionArg): Promise<string[]>;
113
+ }
114
+ //# sourceMappingURL=BtcOld.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BtcOld.d.ts","sourceRoot":"","sources":["../src/BtcOld.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,SAAS,MAAM,wBAAwB,CAAC;AACpD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAEhE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAG1D,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAEpE,YAAY,EAAE,aAAa,EAAE,CAAC;AAC9B;;;;;;GAMG;AAEH,MAAM,CAAC,OAAO,OAAO,MAAM;IACzB,SAAS,EAAE,SAAS,CAAC;gBAET,SAAS,EAAE,SAAS;IAIhC;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,kBAAkB,CAChB,IAAI,EAAE,MAAM,EACZ,IAAI,CAAC,EAAE;QACL,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,MAAM,CAAC,EAAE,aAAa,CAAC;KACxB,GACA,OAAO,CAAC;QACT,SAAS,EAAE,MAAM,CAAC;QAClB,cAAc,EAAE,MAAM,CAAC;QACvB,SAAS,EAAE,MAAM,CAAC;KACnB,CAAC;IAOF;;;;;;;;OAQG;IACH,cAAc,CACZ,IAAI,EAAE,MAAM,EACZ,UAAU,EAAE,MAAM,GACjB,OAAO,CAAC;QACT,CAAC,EAAE,MAAM,CAAC;QACV,CAAC,EAAE,MAAM,CAAC;QACV,CAAC,EAAE,MAAM,CAAC;KACX,CAAC;IAOF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACH,2BAA2B,CAAC,GAAG,EAAE,oBAAoB,GAAG,OAAO,CAAC,MAAM,CAAC;IASvE;;;;;;;;;;;;;;;;;;OAkBG;IACH,mBAAmB,CAAC,GAAG,EAAE,sBAAsB,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;CASpE"}
@@ -0,0 +1,136 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { createTransaction } from "./createTransaction";
13
+ import { getWalletPublicKey } from "./getWalletPublicKey";
14
+ import { signMessage } from "./signMessage";
15
+ import { signP2SHTransaction } from "./signP2SHTransaction";
16
+ /**
17
+ * Bitcoin API.
18
+ *
19
+ * @example
20
+ * import Btc from "@ledgerhq/hw-app-btc";
21
+ * const btc = new Btc(transport)
22
+ */
23
+ var BtcOld = /** @class */ (function () {
24
+ function BtcOld(transport) {
25
+ this.transport = transport;
26
+ }
27
+ /**
28
+ * @param path a BIP 32 path
29
+ * @param options an object with optional these fields:
30
+ *
31
+ * - verify (boolean) will ask user to confirm the address on the device
32
+ *
33
+ * - format ("legacy" | "p2sh" | "bech32" | "cashaddr") to use different bitcoin address formatter.
34
+ *
35
+ * NB The normal usage is to use:
36
+ *
37
+ * - legacy format with 44' paths
38
+ *
39
+ * - p2sh format with 49' paths
40
+ *
41
+ * - bech32 format with 173' paths
42
+ *
43
+ * - cashaddr in case of Bitcoin Cash
44
+ *
45
+ * @example
46
+ * btc.getWalletPublicKey("44'/0'/0'/0/0").then(o => o.bitcoinAddress)
47
+ * btc.getWalletPublicKey("49'/0'/0'/0/0", { format: "p2sh" }).then(o => o.bitcoinAddress)
48
+ */
49
+ BtcOld.prototype.getWalletPublicKey = function (path, opts) {
50
+ if ((opts === null || opts === void 0 ? void 0 : opts.format) === "bech32m") {
51
+ throw new Error("Unsupported address format bech32m");
52
+ }
53
+ return getWalletPublicKey(this.transport, __assign(__assign({}, opts), { path: path }));
54
+ };
55
+ /**
56
+ * You can sign a message according to the Bitcoin Signature format and retrieve v, r, s given the message and the BIP 32 path of the account to sign.
57
+ * @example
58
+ btc.signMessageNew_async("44'/60'/0'/0'/0", Buffer.from("test").toString("hex")).then(function(result) {
59
+ var v = result['v'] + 27 + 4;
60
+ var signature = Buffer.from(v.toString(16) + result['r'] + result['s'], 'hex').toString('base64');
61
+ console.log("Signature : " + signature);
62
+ }).catch(function(ex) {console.log(ex);});
63
+ */
64
+ BtcOld.prototype.signMessageNew = function (path, messageHex) {
65
+ return signMessage(this.transport, {
66
+ path: path,
67
+ messageHex: messageHex
68
+ });
69
+ };
70
+ /**
71
+ * To sign a transaction involving standard (P2PKH) inputs, call createTransaction with the following parameters
72
+ * @param inputs is an array of [ transaction, output_index, optional redeem script, optional sequence ] where
73
+ *
74
+ * * transaction is the previously computed transaction object for this UTXO
75
+ * * output_index is the output in the transaction used as input for this UTXO (counting from 0)
76
+ * * redeem script is the optional redeem script to use when consuming a Segregated Witness input
77
+ * * sequence is the sequence number to use for this input (when using RBF), or non present
78
+ * @param associatedKeysets is an array of BIP 32 paths pointing to the path to the private key used for each UTXO
79
+ * @param changePath is an optional BIP 32 path pointing to the path to the public key used to compute the change address
80
+ * @param outputScriptHex is the hexadecimal serialized outputs of the transaction to sign
81
+ * @param lockTime is the optional lockTime of the transaction to sign, or default (0)
82
+ * @param sigHashType is the hash type of the transaction to sign, or default (all)
83
+ * @param segwit is an optional boolean indicating wether to use segwit or not
84
+ * @param initialTimestamp is an optional timestamp of the function call to use for coins that necessitate timestamps only, (not the one that the tx will include)
85
+ * @param additionals list of additionnal options
86
+ *
87
+ * - "bech32" for spending native segwit outputs
88
+ * - "abc" for bch
89
+ * - "gold" for btg
90
+ * - "bipxxx" for using BIPxxx
91
+ * - "sapling" to indicate a zec transaction is supporting sapling (to be set over block 419200)
92
+ * @param expiryHeight is an optional Buffer for zec overwinter / sapling Txs
93
+ * @param useTrustedInputForSegwit trust inputs for segwit transactions
94
+ * @return the signed transaction ready to be broadcast
95
+ * @example
96
+ btc.createTransaction({
97
+ inputs: [ [tx1, 1] ],
98
+ associatedKeysets: ["0'/0/0"],
99
+ outputScriptHex: "01905f0100000000001976a91472a5d75c8d2d0565b656a5232703b167d50d5a2b88ac"
100
+ }).then(res => ...);
101
+ */
102
+ BtcOld.prototype.createPaymentTransactionNew = function (arg) {
103
+ if (arguments.length > 1) {
104
+ console.warn("@ledgerhq/hw-app-btc: createPaymentTransactionNew multi argument signature is deprecated. please switch to named parameters.");
105
+ }
106
+ return createTransaction(this.transport, arg);
107
+ };
108
+ /**
109
+ * To obtain the signature of multisignature (P2SH) inputs, call signP2SHTransaction_async with the folowing parameters
110
+ * @param inputs is an array of [ transaction, output_index, redeem script, optional sequence ] where
111
+ * * transaction is the previously computed transaction object for this UTXO
112
+ * * output_index is the output in the transaction used as input for this UTXO (counting from 0)
113
+ * * redeem script is the mandatory redeem script associated to the current P2SH input
114
+ * * sequence is the sequence number to use for this input (when using RBF), or non present
115
+ * @param associatedKeysets is an array of BIP 32 paths pointing to the path to the private key used for each UTXO
116
+ * @param outputScriptHex is the hexadecimal serialized outputs of the transaction to sign
117
+ * @param lockTime is the optional lockTime of the transaction to sign, or default (0)
118
+ * @param sigHashType is the hash type of the transaction to sign, or default (all)
119
+ * @return the signed transaction ready to be broadcast
120
+ * @example
121
+ btc.signP2SHTransaction({
122
+ inputs: [ [tx, 1, "52210289b4a3ad52a919abd2bdd6920d8a6879b1e788c38aa76f0440a6f32a9f1996d02103a3393b1439d1693b063482c04bd40142db97bdf139eedd1b51ffb7070a37eac321030b9a409a1e476b0d5d17b804fcdb81cf30f9b99c6f3ae1178206e08bc500639853ae"] ],
123
+ associatedKeysets: ["0'/0/0"],
124
+ outputScriptHex: "01905f0100000000001976a91472a5d75c8d2d0565b656a5232703b167d50d5a2b88ac"
125
+ }).then(result => ...);
126
+ */
127
+ BtcOld.prototype.signP2SHTransaction = function (arg) {
128
+ if (arguments.length > 1) {
129
+ console.warn("@ledgerhq/hw-app-btc: signP2SHTransaction multi argument signature is deprecated. please switch to named parameters.");
130
+ }
131
+ return signP2SHTransaction(this.transport, arg);
132
+ };
133
+ return BtcOld;
134
+ }());
135
+ export default BtcOld;
136
+ //# sourceMappingURL=BtcOld.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BtcOld.js","sourceRoot":"","sources":["../src/BtcOld.ts"],"names":[],"mappings":";;;;;;;;;;;AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D;;;;;;GAMG;AAEH;IAGE,gBAAY,SAAoB;QAC9B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;IAC7B,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,mCAAkB,GAAlB,UACE,IAAY,EACZ,IAGC;QAMD,IAAI,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,MAAM,MAAK,SAAS,EAAE;YAC9B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;SACvD;QACD,OAAO,kBAAkB,CAAC,IAAI,CAAC,SAAS,wBAAO,IAAI,KAAE,IAAI,MAAA,IAAG,CAAC;IAC/D,CAAC;IAED;;;;;;;;OAQG;IACH,+BAAc,GAAd,UACE,IAAY,EACZ,UAAkB;QAMlB,OAAO,WAAW,CAAC,IAAI,CAAC,SAAS,EAAE;YACjC,IAAI,MAAA;YACJ,UAAU,YAAA;SACX,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACH,4CAA2B,GAA3B,UAA4B,GAAyB;QACnD,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE;YACxB,OAAO,CAAC,IAAI,CACV,8HAA8H,CAC/H,CAAC;SACH;QACD,OAAO,iBAAiB,CAAC,IAAI,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC;IAChD,CAAC;IAED;;;;;;;;;;;;;;;;;;OAkBG;IACH,oCAAmB,GAAnB,UAAoB,GAA2B;QAC7C,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE;YACxB,OAAO,CAAC,IAAI,CACV,sHAAsH,CACvH,CAAC;SACH;QAED,OAAO,mBAAmB,CAAC,IAAI,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC;IAClD,CAAC;IACH,aAAC;AAAD,CAAC,AA1ID,IA0IC"}