forked from MetaMask/eth-ledger-bridge-keyring
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
517 lines (452 loc) · 14.3 KB
/
index.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
const { EventEmitter } = require('events')
const HDKey = require('hdkey')
const ethUtil = require('ethereumjs-util')
const sigUtil = require('eth-sig-util')
const pathBase = 'm'
const hdPathString = `${pathBase}/44'/60'/0'`
const type = 'Ledger Hardware'
const BRIDGE_URL = 'https://metamask.github.io/eth-ledger-bridge-keyring'
const MAX_INDEX = 1000
const NETWORK_API_URLS = {
ropsten: 'http://api-ropsten.etherscan.io',
kovan: 'http://api-kovan.etherscan.io',
rinkeby: 'https://api-rinkeby.etherscan.io',
mainnet: 'https://api.etherscan.io',
}
class LedgerBridgeKeyring extends EventEmitter {
constructor (opts = {}) {
super()
this.accountDetails = {}
this.bridgeUrl = null
this.type = type
this.page = 0
this.perPage = 5
this.unlockedAccount = 0
this.hdk = new HDKey()
this.paths = {}
this.iframe = null
this.network = 'mainnet'
this.implementFullBIP44 = false
this.deserialize(opts)
this.iframeLoaded = false
this._setupIframe()
}
serialize () {
return Promise.resolve({
hdPath: this.hdPath,
accounts: this.accounts,
accountDetails: this.accountDetails,
bridgeUrl: this.bridgeUrl,
implementFullBIP44: false,
})
}
deserialize (opts = {}) {
this.hdPath = opts.hdPath || hdPathString
this.bridgeUrl = opts.bridgeUrl || BRIDGE_URL
this.accounts = opts.accounts || []
this.accountDetails = opts.accountDetails || {}
if (!opts.accountDetails) {
this._migrateAccountDetails(opts)
}
this.implementFullBIP44 = opts.implementFullBIP44 || false
// Remove accounts that don't have corresponding account details
this.accounts = this.accounts
.filter((account) => Object.keys(this.accountDetails).includes(ethUtil.toChecksumAddress(account)))
return Promise.resolve()
}
_migrateAccountDetails (opts) {
if (this._isLedgerLiveHdPath() && opts.accountIndexes) {
for (const account of Object.keys(opts.accountIndexes)) {
this.accountDetails[account] = {
bip44: true,
hdPath: this._getPathForIndex(opts.accountIndexes[account]),
}
}
}
// try to migrate non-LedgerLive accounts too
if (!this._isLedgerLiveHdPath()) {
this.accounts
.filter((account) => !Object.keys(this.accountDetails).includes(ethUtil.toChecksumAddress(account)))
.forEach((account) => {
try {
this.accountDetails[ethUtil.toChecksumAddress(account)] = {
bip44: false,
hdPath: this._pathFromAddress(account),
}
} catch (e) {
console.log(`failed to migrate account ${account}`)
}
})
}
}
isUnlocked () {
return Boolean(this.hdk && this.hdk.publicKey)
}
setAccountToUnlock (index) {
this.unlockedAccount = parseInt(index, 10)
}
setHdPath (hdPath) {
// Reset HDKey if the path changes
if (this.hdPath !== hdPath) {
this.hdk = new HDKey()
}
this.hdPath = hdPath
}
unlock (hdPath) {
if (this.isUnlocked() && !hdPath) {
return Promise.resolve('already unlocked')
}
const path = hdPath ? this._toLedgerPath(hdPath) : this.hdPath
return new Promise((resolve, reject) => {
this._sendMessage({
action: 'ledger-unlock',
params: {
hdPath: path,
},
},
({ success, payload }) => {
if (success) {
this.hdk.publicKey = Buffer.from(payload.publicKey, 'hex')
this.hdk.chainCode = Buffer.from(payload.chainCode, 'hex')
resolve(payload.address)
} else {
reject(payload.error || 'Unknown error')
}
})
})
}
addAccounts (n = 1) {
return new Promise((resolve, reject) => {
this.unlock()
.then(async (_) => {
const from = this.unlockedAccount
const to = from + n
for (let i = from; i < to; i++) {
const path = this._getPathForIndex(i)
let address
if (this._isLedgerLiveHdPath()) {
address = await this.unlock(path)
} else {
address = this._addressFromIndex(pathBase, i)
}
this.accountDetails[ethUtil.toChecksumAddress(address)] = {
// TODO: consider renaming this property, as the current name is misleading
// It's currently used to represent whether an account uses the Ledger Live path.
bip44: this._isLedgerLiveHdPath(),
hdPath: path,
}
if (!this.accounts.includes(address)) {
this.accounts.push(address)
}
this.page = 0
}
resolve(this.accounts)
})
.catch(reject)
})
}
getFirstPage () {
this.page = 0
return this.__getPage(1)
}
getNextPage () {
return this.__getPage(1)
}
getPreviousPage () {
return this.__getPage(-1)
}
getAccounts () {
return Promise.resolve(this.accounts.slice())
}
removeAccount (address) {
if (!this.accounts.map((a) => a.toLowerCase()).includes(address.toLowerCase())) {
throw new Error(`Address ${address} not found in this keyring`)
}
this.accounts = this.accounts.filter((a) => a.toLowerCase() !== address.toLowerCase())
delete this.accountDetails[ethUtil.toChecksumAddress(address)]
}
updateTransportMethod (useLedgerLive = false) {
return new Promise((resolve, reject) => {
// If the iframe isn't loaded yet, let's store the desired useLedgerLive value and
// optimistically return a successful promise
if (!this.iframeLoaded) {
this.delayedPromise = {
resolve,
reject,
useLedgerLive,
}
return
}
this._sendMessage({
action: 'ledger-update-transport',
params: { useLedgerLive },
}, ({ success }) => {
if (success) {
resolve(true)
} else {
reject(new Error('Ledger transport could not be updated'))
}
})
})
}
// tx is an instance of the ethereumjs-transaction class.
signTransaction (address, tx) {
return new Promise((resolve, reject) => {
this.unlockAccountByAddress(address)
.then((hdPath) => {
tx.v = ethUtil.bufferToHex(tx.getChainId())
tx.r = '0x00'
tx.s = '0x00'
this._sendMessage({
action: 'ledger-sign-transaction',
params: {
tx: tx.serialize().toString('hex'),
hdPath,
to: ethUtil.bufferToHex(tx.to).toLowerCase(),
},
},
({ success, payload }) => {
if (success) {
tx.v = Buffer.from(payload.v, 'hex')
tx.r = Buffer.from(payload.r, 'hex')
tx.s = Buffer.from(payload.s, 'hex')
const valid = tx.verifySignature()
if (valid) {
resolve(tx)
} else {
reject(new Error('Ledger: The transaction signature is not valid'))
}
} else {
reject(new Error(payload.error || 'Ledger: Unknown error while signing transaction'))
}
})
})
.catch(reject)
})
}
signMessage (withAccount, data) {
return this.signPersonalMessage(withAccount, data)
}
// For personal_sign, we need to prefix the message:
signPersonalMessage (withAccount, message) {
return new Promise((resolve, reject) => {
this.unlockAccountByAddress(withAccount)
.then((hdPath) => {
this._sendMessage({
action: 'ledger-sign-personal-message',
params: {
hdPath,
message: ethUtil.stripHexPrefix(message),
},
},
({ success, payload }) => {
if (success) {
let v = payload.v - 27
v = v.toString(16)
if (v.length < 2) {
v = `0${v}`
}
const signature = `0x${payload.r}${payload.s}${v}`
const addressSignedWith = sigUtil.recoverPersonalSignature({ data: message, sig: signature })
if (ethUtil.toChecksumAddress(addressSignedWith) !== ethUtil.toChecksumAddress(withAccount)) {
reject(new Error('Ledger: The signature doesnt match the right address'))
}
resolve(signature)
} else {
reject(new Error(payload.error || 'Ledger: Uknown error while signing message'))
}
})
})
.catch(reject)
})
}
async unlockAccountByAddress (address) {
const checksummedAddress = ethUtil.toChecksumAddress(address)
if (!Object.keys(this.accountDetails).includes(checksummedAddress)) {
throw new Error(`Ledger: Account for address '${checksummedAddress}' not found`)
}
const { hdPath } = this.accountDetails[checksummedAddress]
const unlockedAddress = await this.unlock(hdPath)
// unlock resolves to the address for the given hdPath as reported by the ledger device
// if that address is not the requested address, then this account belongs to a different device or seed
if (unlockedAddress.toLowerCase() !== address.toLowerCase()) {
throw new Error(`Ledger: Account ${address} does not belong to the connected device`)
}
return hdPath
}
signTypedData () {
throw new Error('Not supported on this device')
}
exportAccount () {
throw new Error('Not supported on this device')
}
forgetDevice () {
this.accounts = []
this.page = 0
this.unlockedAccount = 0
this.paths = {}
this.accountDetails = {}
this.hdk = new HDKey()
}
/* PRIVATE METHODS */
_setupIframe () {
this.iframe = document.createElement('iframe')
this.iframe.src = this.bridgeUrl
this.iframe.onload = async () => {
// If the ledger live preference was set before the iframe is loaded,
// set it after the iframe has loaded
this.iframeLoaded = true
if (this.delayedPromise) {
try {
const result = await this.updateTransportMethod(
this.delayedPromise.useLedgerLive,
)
this.delayedPromise.resolve(result)
} catch (e) {
this.delayedPromise.reject(e)
} finally {
delete this.delayedPromise
}
}
}
document.head.appendChild(this.iframe)
}
_getOrigin () {
const tmp = this.bridgeUrl.split('/')
tmp.splice(-1, 1)
return tmp.join('/')
}
_sendMessage (msg, cb) {
msg.target = 'LEDGER-IFRAME'
this.iframe.contentWindow.postMessage(msg, '*')
const eventListener = ({ origin, data }) => {
if (origin !== this._getOrigin()) {
return false
}
if (data && data.action && data.action === `${msg.action}-reply` && cb) {
cb(data)
return undefined
}
window.removeEventListener('message', eventListener)
return undefined
}
window.addEventListener('message', eventListener)
}
async __getPage (increment) {
this.page += increment
if (this.page <= 0) {
this.page = 1
}
const from = (this.page - 1) * this.perPage
const to = from + this.perPage
await this.unlock()
let accounts
if (this._isLedgerLiveHdPath()) {
accounts = await this._getAccountsBIP44(from, to)
} else {
accounts = this._getAccountsLegacy(from, to)
}
return accounts
}
async _getAccountsBIP44 (from, to) {
const accounts = []
for (let i = from; i < to; i++) {
const path = this._getPathForIndex(i)
const address = await this.unlock(path)
const valid = this.implementFullBIP44 ? await this._hasPreviousTransactions(address) : true
accounts.push({
address,
balance: null,
index: i,
})
// PER BIP44
// "Software should prevent a creation of an account if
// a previous account does not have a transaction history
// (meaning none of its addresses have been used before)."
if (!valid) {
break
}
}
return accounts
}
_getAccountsLegacy (from, to) {
const accounts = []
for (let i = from; i < to; i++) {
const address = this._addressFromIndex(pathBase, i)
accounts.push({
address,
balance: null,
index: i,
})
this.paths[ethUtil.toChecksumAddress(address)] = i
}
return accounts
}
_padLeftEven (hex) {
return hex.length % 2 === 0 ? hex : `0${hex}`
}
_normalize (buf) {
return this._padLeftEven(ethUtil.bufferToHex(buf).toLowerCase())
}
// eslint-disable-next-line no-shadow
_addressFromIndex (pathBase, i) {
const dkey = this.hdk.derive(`${pathBase}/${i}`)
const address = ethUtil
.publicToAddress(dkey.publicKey, true)
.toString('hex')
return ethUtil.toChecksumAddress(`0x${address}`)
}
_pathFromAddress (address) {
const checksummedAddress = ethUtil.toChecksumAddress(address)
let index = this.paths[checksummedAddress]
if (typeof index === 'undefined') {
for (let i = 0; i < MAX_INDEX; i++) {
if (checksummedAddress === this._addressFromIndex(pathBase, i)) {
index = i
break
}
}
}
if (typeof index === 'undefined') {
throw new Error('Unknown address')
}
return this._getPathForIndex(index)
}
_toAscii (hex) {
let str = ''
let i = 0
const l = hex.length
if (hex.substring(0, 2) === '0x') {
i = 2
}
for (; i < l; i += 2) {
const code = parseInt(hex.substr(i, 2), 16)
str += String.fromCharCode(code)
}
return str
}
_getPathForIndex (index) {
// Check if the path is BIP 44 (Ledger Live)
return this._isLedgerLiveHdPath() ? `m/44'/60'/${index}'/0/0` : `${this.hdPath}/${index}`
}
_isLedgerLiveHdPath () {
return this.hdPath === `m/44'/60'/0'/0/0`
}
_toLedgerPath (path) {
return path.toString().replace('m/', '')
}
async _hasPreviousTransactions (address) {
const apiUrl = this._getApiUrl()
const response = await window.fetch(`${apiUrl}/api?module=account&action=txlist&address=${address}&tag=latest&page=1&offset=1`)
const parsedResponse = await response.json()
if (parsedResponse.status !== '0' && parsedResponse.result.length > 0) {
return true
}
return false
}
_getApiUrl () {
return NETWORK_API_URLS[this.network] || NETWORK_API_URLS.mainnet
}
}
LedgerBridgeKeyring.type = type
module.exports = LedgerBridgeKeyring