-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathindex.ts
443 lines (336 loc) · 11.8 KB
/
index.ts
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
import log from 'electron-log'
import { encode } from 'rlp'
import { Client, Utils, Constants } from 'gridplus-sdk'
import { padToEven, addHexPrefix } from '@ethereumjs/util'
import { TypedTransaction } from '@ethereumjs/tx'
import { SignTypedDataVersion } from '@metamask/eth-sig-util'
import Signer from '../../Signer'
import { sign, signerCompatibility, londonToLegacy } from '../../../transaction'
import { Derivation, getDerivationPath } from '../../Signer/derive'
import { hexToInt } from '../../../../resources/utils'
import type { TypedData, TypedMessage } from '../../../accounts/types'
import type { TransactionData } from '../../../../resources/domain/transaction'
const ADDRESS_LIMIT = 10
const HARDENED_OFFSET = 0x80000000
interface DeriveOptions {
retries: number
derivation?: Derivation
}
interface Signature {
r: Buffer
s: Buffer
v: Buffer
}
type LatticeResponseError = {
name: 'LatticeResponseError'
responseCode: number
errorMessage: string
}
type SigningPayload = Parameters<InstanceType<typeof Client>['sign']>[0]['data']
type SignProtocol = 'eip712' | 'signPersonal'
export const Status = {
OK: 'ok',
CONNECTING: 'connecting',
DERIVING: 'addresses',
READY_FOR_PAIRING: 'pair',
LOCKED: 'locked',
PAIRING: 'Pairing',
PAIRING_FAILED: 'Pairing Failed',
UNKNOWN_ERROR: 'Unknown Device Error',
DISCONNECTED: 'disconnected',
NEEDS_RECONNECTION: 'Please reload this Lattice1 device'
}
function devicePermission(tag: string) {
return tag ? `Frame-${tag}` : 'Frame'
}
function parseError(err: Error) {
return (err.message || '').replace(/Error from device: /, '')
}
function getStatusForError(err: Error) {
const errText = (err.message || '').toLowerCase()
if (errText.includes('device locked')) {
return Status.LOCKED
}
if (errText.includes('pairing failed')) {
return Status.PAIRING_FAILED
}
return Status.UNKNOWN_ERROR
}
export default class Lattice extends Signer {
deviceId: string
derivation: Derivation | undefined
connection: Client | null = null
accountLimit = 5
tag = ''
constructor(deviceId: string, name: string, tag: string) {
super()
this.id = 'lattice-' + deviceId
this.deviceId = deviceId
this.name = name
this.tag = tag
this.status = Status.DISCONNECTED
this.type = 'lattice'
this.model = 'Lattice1'
}
async connect(baseUrl: string, privateKey: string) {
this.status = Status.CONNECTING
this.emit('update')
log.info('connecting to Lattice', { name: this.name, baseUrl })
this.connection = new Client({
name: devicePermission(this.tag),
baseUrl,
privKey: privateKey
})
try {
const paired = await this.connection.connect(this.deviceId)
const { fix: patch, minor, major } = this.connection.getFwVersion() || { fix: 0, major: 0, minor: 0 }
log.info(
`Connected to Lattice with deviceId=${this.deviceId} paired=${paired}, firmware v${major}.${minor}.${patch}`
)
this.appVersion = { major, minor, patch }
if (!paired) {
this.status = Status.READY_FOR_PAIRING
this.emit('update')
}
this.emit('connect', paired)
return paired
} catch (e) {
const errorMessage = this.handleError('could not connect to Lattice', e as Error)
this.emit('error')
throw new Error(errorMessage)
}
}
disconnect() {
if (this.status === Status.OK) {
this.status = Status.DISCONNECTED
this.emit('update')
}
this.connection = null
this.addresses = []
}
close() {
this.emit('close')
this.removeAllListeners()
this.disconnect()
super.close()
}
async pair(pairingCode: string) {
log.info(`pairing to Lattice ${this.deviceId} with code`, pairingCode)
this.status = Status.PAIRING
this.emit('update')
try {
const connection = this.connection as Client
const hasActiveWallet = await connection.pair(pairingCode)
log.info(`successfully paired to Lattice ${this.deviceId}`)
this.emit('paired', hasActiveWallet)
return hasActiveWallet
} catch (e) {
const errorMessage = this.handleError('could not pair to Lattice', e as Error)
this.emit('error')
throw new Error(errorMessage)
}
}
async deriveAddresses(derivation?: Derivation, retries = 2) {
this.status = Status.DERIVING
this.emit('update')
log.info(`deriving addresses for Lattice ${(this.connection as Client).getAppName()}`)
try {
await this.derive({ derivation, retries })
} catch (e) {
this.emit('error', e)
}
}
private async derive(opts: DeriveOptions) {
const { derivation, retries } = opts
try {
this.derivation = derivation || this.derivation
const connection = this.connection as Client
const addressLimit = this.derivation === Derivation.live ? 1 : ADDRESS_LIMIT
while (this.addresses.length < this.accountLimit) {
const req = {
startPath: this.getPath(this.addresses.length),
n: Math.min(addressLimit, this.accountLimit - this.addresses.length)
}
const loadedAddresses = await connection.getAddresses(req)
this.addresses = [...this.addresses, ...loadedAddresses].map((addr) => addHexPrefix(addr.toString()))
}
this.status = 'ok'
this.emit('update')
return this.addresses
} catch (e) {
const err = e as Error
if (retries > 0) {
log.verbose(
`Deriving ${this.derivation} Lattice addresses failed, trying ${retries} more times, error:`,
err.message
)
return new Promise<string[]>((resolve) => {
setTimeout(() => {
resolve(this.derive({ ...opts, retries: retries - 1 }))
}, 3000)
})
}
const errorMessage = this.handleError('could not derive addresses', err)
throw new Error(errorMessage)
}
}
async verifyAddress(index: number, currentAddress: string, display = true, cb: Callback<boolean>) {
const connection = this.connection as Client
log.info(`verifying address ${currentAddress} for Lattice ${connection.getAppName()}`)
try {
const addresses = await this.derive({ retries: 0 })
const address = (addresses[index] || '').toLowerCase()
if (address !== currentAddress) {
throw new Error('Address does not match device')
}
log.info(`address ${currentAddress} matches device`)
cb(null, true)
} catch (e) {
const err = e as Error
this.handleError('could not verify address', err)
this.emit('error')
cb(err.message === 'Address does not match device' ? err : new Error('Verify Address Error'))
}
}
async signMessage(index: number, message: string, cb: Callback<string>) {
try {
const signature = await this.sign(index, 'signPersonal', message)
return cb(null, signature)
} catch (err) {
log.error('failed to sign message with Lattice', err)
const latticeErrorMessage = (err as LatticeResponseError).errorMessage
return cb(new Error(latticeErrorMessage))
}
}
async signTypedData(
index: number,
typedMessage: TypedMessage<SignTypedDataVersion.V4>,
cb: Callback<string>
) {
try {
const signature = await this.sign(index, 'eip712', typedMessage.data)
return cb(null, signature)
} catch (err) {
log.error('failed to sign typed data with Lattice', err)
const latticeErrorMessage = (err as LatticeResponseError).errorMessage
return cb(new Error(latticeErrorMessage))
}
}
async signTransaction(index: number, rawTx: TransactionData, cb: Callback<string>) {
try {
const connection = this.connection as Client
const compatibility = signerCompatibility(rawTx, this.summary())
const latticeTx = compatibility.compatible ? { ...rawTx } : londonToLegacy(rawTx)
const signedTx = await sign(latticeTx, async (tx) => {
const unsignedTx = this.createTransaction(index, rawTx.type, latticeTx.chainId, tx)
const signingOptions = await this.createTransactionSigningOptions(tx, unsignedTx)
const signedTx = await connection.sign(signingOptions)
const sig = signedTx?.sig as Signature
return {
v: sig.v.toString('hex'),
r: sig.r.toString('hex'),
s: sig.s.toString('hex')
}
})
const serializedTx = signedTx.serialize()
const txHex = addHexPrefix(Buffer.from(serializedTx).toString('hex'))
cb(null, txHex)
} catch (err) {
log.error('error signing transaction with Lattice', err)
const latticeErrorMessage = (err as LatticeResponseError).errorMessage
return cb(new Error(latticeErrorMessage))
}
}
summary() {
const summary = super.summary()
return {
...summary,
tag: this.tag,
addresses: this.addresses.slice(0, this.accountLimit || this.addresses.length)
}
}
private async sign(index: number, protocol: SignProtocol, payload: string | TypedData) {
const connection = this.connection as Client
const data = {
protocol,
payload,
curveType: Constants.SIGNING.CURVES.SECP256K1,
hashType: Constants.SIGNING.HASHES.KECCAK256,
signerPath: this.getPath(index)
} as SigningPayload
const signOpts = {
currency: 'ETH_MSG' as const,
data: data
}
const result = await connection.sign(signOpts)
const sig = result?.sig as Signature
const signature = [sig.r, sig.s, padToEven(sig.v.toString('hex'))].join('')
return addHexPrefix(signature)
}
private createTransaction(index: number, txType: string, chainId: string, tx: TypedTransaction) {
const { value, to, data, ...txJson } = tx.toJSON()
const type = hexToInt(txType)
const unsignedTx: any = {
to,
value,
data,
chainId,
nonce: hexToInt(txJson.nonce || ''),
gasLimit: hexToInt(txJson.gasLimit || ''),
useEIP155: true,
signerPath: this.getPath(index)
}
if (type) {
unsignedTx.type = type
}
const optionalFields = ['gasPrice', 'maxFeePerGas', 'maxPriorityFeePerGas']
optionalFields.forEach((field) => {
if (field in txJson) {
// @ts-ignore
unsignedTx[field] = hexToInt(txJson[field])
}
})
return unsignedTx
}
private async createTransactionSigningOptions(tx: TypedTransaction, unsignedTx: any) {
const fwVersion = (this.connection as Client).getFwVersion()
if (fwVersion && (fwVersion.major > 0 || fwVersion.minor >= 15)) {
const message = tx.getMessageToSign()
const payload = tx.type ? message : encode(message)
const to = tx.to?.toString() ?? undefined
const callDataDecoder = to
? await Utils.fetchCalldataDecoder(tx.data, to, unsignedTx.chainId)
: undefined
const data = {
payload,
curveType: Constants.SIGNING.CURVES.SECP256K1,
hashType: Constants.SIGNING.HASHES.KECCAK256,
encodingType: Constants.SIGNING.ENCODINGS.EVM,
signerPath: unsignedTx.signerPath,
decoder: callDataDecoder?.def
}
return { data, currency: unsignedTx.currency }
}
return { currency: 'ETH' as const, data: unsignedTx }
}
private getPath(index: number) {
if (!this.derivation) {
throw new Error('attempted to get base path with unknown derivation!')
}
const path = getDerivationPath(this.derivation, index)
return path.split('/').map((element) => {
if (element.endsWith("'")) {
return parseInt(element.substring(0, element.length - 1)) + HARDENED_OFFSET
}
return parseInt(element)
})
}
private handleError(message: string, err: Error) {
const status = getStatusForError(err)
const parsedErrorMessage = parseError(err)
const fullMessage = message + ': ' + parsedErrorMessage
log.error(fullMessage)
this.status = status
return fullMessage
}
}