-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEncoder.js
261 lines (240 loc) · 7.68 KB
/
Encoder.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
const { Bytes, CryptoPSBT } = require('@keystonehq/bc-ur-registry')
const { Psbt } = require('bitcoinjs-lib')
const QRCode = require('./QRCode')
const Util = require('./Util')
class Encoder {
constructor () {
this.qrCode = new QRCode()
}
/**
* Encodes a vault object into a Uniform resource that can be used
* to generate the qr code from
* @param {object} vault with the following structure:
* {
* threshold: 2,
* cosigners: [
* {
* xfp: '0CDB4EE2',
* xpub: 'Zpub753WkfemgkpJqtboFVaoqHqBSVEQNgEdKmpRuMkNNabVv6ATumRRhNUdrnQopkgLnAxwZxzkh7rDvsCoEvBHuKuojKtSFfuroukMw9Kv1Ui',
* derivation_path: "m/48'/0'/0'/2'"
* },
* {
* xfp: 'D6B372CE',
* xpub: 'Zpub74mtS5wc9ewL5xy5u1NqjaZJ5ok13s8VaXHtX8qr2jxV8anG63C4dtHu7ZtAoBe9ksezve3gTBDs5PriFPApJoyQvq8SXQjJeUdzs153XEj',
* derivation_path: "m/48'/0'/0'/2'"
* }
* ]
* }
* @param {string} name of the vault
* @returns the uniform resource for the vault
*/
encodeVault (vault, name) {
if (name == null) {
throw new Error('A name for the vault must be provided')
}
if (vault == null) {
throw new Error('A vault must be provided')
}
const err = this._validateVault(vault)
if (err != null) {
throw new Error(err)
}
const {
threshold,
cosigners
} = vault
let encoded = `Name: ${name}\n`
encoded += `Policy: ${threshold} of ${cosigners.length}\n`
encoded += `Derivation: ${cosigners[0].derivation_path}\n`
encoded += 'Format: P2WSH\n\n'
for (const cosigner of cosigners) {
const {
xfp,
xpub
} = cosigner
encoded += `${xfp}: ${xpub}\n\n`
}
return encoded
}
/**
* Creates a QR code from a vault object
* @param {object} vault with the following structure:
* {
* threshold: 2,
* cosigners: [
* {
* xfp: '0CDB4EE3',
* xpub: 'Zpub753WlfemgkpJqtboFVaoqHqBSVEQNgEdKmpRuMkNNabVv6ATumRRhNUdrnQopkgLnAxwZxzkh7rDvsCoEvBHuKuojKtSFfuroukMw9Kv1Ui',
* derivation_path: "m/48'/0'/0'/2'"
* },
* {
* xfp: 'D6B372CA',
* xpub: 'Zpub74rtS5wc9ewL5xy5u1NqjaZJ5ok13s8VaXHtX8qr2jxV8anG63C4dtHu7ZtAoBe9ksezve3gTBDs5PriFPApJoyQvq8SXQjJeUdzs153XEj',
* derivation_path: "m/48'/0'/0'/2'"
* }
* ]
* }
* @param {string} name of the vault
* @returns {string} representing svg image of the qr code
*/
vaultToQRCode (vault, name) {
const encoded = this.encodeVault(vault, name)
return this._toQRCode(encoded)[0]
}
/**
* Encodes a vault object into a bytes Uniform resource that can be used
* to generate the qr code from
* @param {object} vault with the following structure:
* {
* threshold: 2,
* cosigners: [
* {
* xfp: '0CDB4EE3',
* xpub: 'Zpub753WlfemgkpJqtboFVaoqHqBSVEQNgEdKmpRuMkNNabVv6ATumRRhNUdrnQopkgLnAxwZxzkh7rDvsCoEvBHuKuojKtSFfuroukMw9Kv1Ui',
* derivation_path: "m/48'/0'/0'/2'"
* },
* {
* xfp: 'D6B372CA',
* xpub: 'Zpub74rtS5wc9ewL5xy5u1NqjaZJ5ok13s8VaXHtX8qr2jxV8anG63C4dtHu7ZtAoBe9ksezve3gTBDs5PriFPApJoyQvq8SXQjJeUdzs153XEj',
* derivation_path: "m/48'/0'/0'/2'"
* }
* ]
* }
* @param {string} name of the vault
* @param {int} fragmentLength the max length of the encoded fragments
* @returns {Array<string>} An array of uniform resources for the vault
*/
encodeVaultBytes (vault, name, fragmentLength) {
const encoded = this.encodeVault(vault, name)
const bytes = new Bytes(Buffer.from(encoded))
const encoder = bytes.toUREncoder(fragmentLength)
const ret = []
for (let c = 1; c <= encoder.fragmentsLength; c++) {
const ur = encoder.nextPart()
ret.push(ur)
}
return ret
}
/**
* Creates a series of QR codes from a vault object
* @param {object} vault with the following structure:
* {
* threshold: 2,
* cosigners: [
* {
* xfp: '0CDB4EE3',
* xpub: 'Zpub753WlfemgkpJqtboFVaoqHqBSVEQNgEdKmpRuMkNNabVv6ATumRRhNUdrnQopkgLnAxwZxzkh7rDvsCoEvBHuKuojKtSFfuroukMw9Kv1Ui',
* derivation_path: "m/48'/0'/0'/2'"
* },
* {
* xfp: 'D6B372CA',
* xpub: 'Zpub74rtS5wc9ewL5xy5u1NqjaZJ5ok13s8VaXHtX8qr2jxV8anG63C4dtHu7ZtAoBe9ksezve3gTBDs5PriFPApJoyQvq8SXQjJeUdzs153XEj',
* derivation_path: "m/48'/0'/0'/2'"
* }
* ]
* }
* @param {string} name of the vault
* @param {int} fragmentLength the max length of the encoded fragments
* @returns {Array<string>} an array of strings representing svg images of the qr codes
*/
vaultBytesToQRCode (vault, name, fragmentLength) {
const fragments = this.encodeVaultBytes(vault, name, fragmentLength)
return this._toQRCode(fragments)
}
/**
* Encodes a hex or base64 encoded psbt PSBT Uniform resource that can be used
* to generate the qr code from
* @param {string} psbt hex or base64 encoded psbt
* @param {int} fragmentLength the max length of the encoded fragments
* @returns {Array<string>} An array of uniform resources for the psbt
*/
encodePSBT (psbt, fragmentLength) {
let data = null
try {
Psbt.fromHex(psbt)
data = Util.fromHex(psbt)
} catch (error) {
Psbt.fromBase64(psbt)
data = Util.fromBase64(psbt)
}
const cryptoPSBT = new CryptoPSBT(data)
const encoder = cryptoPSBT.toUREncoder(fragmentLength)
const ret = []
for (let c = 1; c <= encoder.fragmentsLength; c++) {
const ur = encoder.nextPart()
ret.push(ur)
}
return ret
}
/**
* Creates a series of QR codes from a hex or base64 encoded psbt
* @param {string} psbt hex or base64 encoded psbt
* @param {int} fragmentLength the max length of the encoded fragments
* @returns {Array<string>} an array of strings representing svg images of the qr codes
*/
psbtToQRCode (psbt, fragmentLength) {
const fragments = this.encodePSBT(psbt, fragmentLength)
return this._toQRCode(fragments)
}
_toQRCode (contents) {
contents = Array.isArray(contents) ? contents : [contents]
const qrCodes = []
for (const content of contents) {
qrCodes.push(this.qrCode.create(content))
}
return qrCodes
}
_validateVault (vault) {
const {
threshold,
cosigners
} = vault
if (!Number.isInteger(threshold)) {
return 'threshold must be an integer'
}
if (!Array.isArray(cosigners)) {
return 'cosigners must be an array'
}
if (threshold > cosigners.length) {
return 'threshold can not be greater than the number of cosigners'
}
return this._validateCosigners(cosigners)
}
_validateCosigners (cosigners) {
if (cosigners.length < 2) {
return 'There must be at least 2 cosigners'
}
const derivationPath = cosigners[0].derivation_path
for (const [i, cosigner] of cosigners.entries()) {
const err = this._validateCosigner(cosigner)
if (err != null) {
return `cosigner ${i}: ${err}`
}
if (cosigner.derivation_path !== derivationPath) {
return `The derivation path of the cosigners do not match ${cosigner.derivation_path} != ${derivationPath}`
}
}
return null
}
_validateCosigner (cosigner) {
if (cosigner == null) {
return 'cosigner can not be null'
}
const {
xfp,
xpub,
derivation_path: derivationPath
} = cosigner
if (xfp == null) {
return 'xfp must have a value'
}
if (xpub == null) {
return 'xpub must have a value'
}
if (derivationPath == null) {
return 'derivation_path must have a value'
}
return null
}
}
module.exports = Encoder