-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyring.tsx
466 lines (404 loc) · 14.9 KB
/
keyring.tsx
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
import type { MessageTypes, TypedMessage } from '@metamask/eth-sig-util';
import { SignTypedDataVersion } from '@metamask/eth-sig-util';
import type {
Keyring,
KeyringRequest,
SubmitRequestResponse,
} from '@metamask/keyring-api';
import {
emitSnapKeyringEvent,
EthAccountType,
EthMethod,
KeyringEvent,
KeyringRequestStruct,
} from '@metamask/keyring-api';
import { MethodNotFoundError } from '@metamask/snaps-sdk';
import { assert, string } from '@metamask/superstruct';
import { type Json } from '@metamask/utils';
import { v4 as uuid } from 'uuid';
import config from './config';
import { renderInfoMessage } from './features/info-message/rendex';
import { TOKEN_EXPIRED_EVENT } from './lib/custodian-types/constants';
import { custodianMetadata } from './lib/custodian-types/custodianMetadata';
import { SignedMessageHelper } from './lib/helpers/signedmessage';
import { TransactionHelper } from './lib/helpers/transaction';
import { CreateAccountOptions } from './lib/structs/CustodialKeyringStructs';
import type {
SignedMessageRequest,
CustodialSnapRequest,
TransactionRequest,
OnBoardingRpcRequest,
} from './lib/structs/CustodialKeyringStructs';
import type { CustodianDeepLink, IRefreshTokenChangeEvent } from './lib/types';
import type { CustodialKeyringAccount } from './lib/types/CustodialKeyringAccount';
import { CustodianApiMap } from './lib/types/CustodianType';
import type { EthSignTransactionRequest } from './lib/types/EthSignTransactionRequest';
import type { ICustodianApi } from './lib/types/ICustodianApi';
import logger from './logger';
import type { KeyringStateManager } from './stateManagement';
import { throwError } from './util';
import { convertHexChainIdToCaip2Decimal } from './util/convert-hex-chain-id-to-caip2-decimal';
import { isUniqueAddress } from './util/is-unique-address';
import { runSensitive } from './util/run-sensitive';
type RequestManagerFacade = {
upsertRequest: (
request: CustodialSnapRequest<SignedMessageRequest | TransactionRequest>,
) => Promise<void>;
listRequests: () => Promise<
CustodialSnapRequest<SignedMessageRequest | TransactionRequest>[]
>;
};
export class CustodialKeyring implements Keyring {
#custodianApi: Map<string, ICustodianApi>;
#requestManagerFacade: RequestManagerFacade;
#stateManager: KeyringStateManager;
constructor(
stateManager: KeyringStateManager,
requestManagerFacade: RequestManagerFacade,
) {
this.#stateManager = stateManager;
this.#custodianApi = new Map<string, ICustodianApi>();
this.#requestManagerFacade = requestManagerFacade;
}
async listAccounts(): Promise<CustodialKeyringAccount[]> {
return this.#stateManager.listAccounts();
}
async getAccount(id: string): Promise<CustodialKeyringAccount | undefined> {
return (await this.#stateManager.getAccount(id)) ?? undefined;
}
// NB: external input
async createAccount(
options: CreateAccountOptions,
): Promise<CustodialKeyringAccount> {
assert(options, CreateAccountOptions);
// Try to get the options from the custodian metadata
const custodian = custodianMetadata.find(
(item) => item.apiBaseUrl === options.details.custodianApiUrl,
);
const { address, name } = options;
const wallets = await this.#stateManager.listWallets();
if (!isUniqueAddress(address, wallets)) {
throw new Error(`Account address already in use: ${address}`);
}
// Some custodians (mostly ECA-1) still publish transactions
// If the custodian publishes transactions, we defer publication
// i.e. the client does not publish the transaction, it waits for the custodian to do it
let deferPublication = false; // ECA-3 default
if (custodian?.custodianPublishesTransaction) {
deferPublication = true;
}
try {
const account: CustodialKeyringAccount = {
id: uuid(),
options: {
custodian: {
displayName: options.details.custodianDisplayName,
deferPublication,
},
accountName: name,
},
address,
methods: [
EthMethod.SignTransaction,
EthMethod.PersonalSign,
EthMethod.SignTypedDataV3,
EthMethod.SignTypedDataV4,
],
type: EthAccountType.Eoa,
};
// This event actually *asks* the client to create the account
// If the client adds it, the account is now in the client and we should
// reflect it in the snap state
// If the client does not accept it, the following code is not reached
await this.#emitEvent(KeyringEvent.AccountCreated, {
account,
accountNameSuggestion: name ?? 'Custodial Account',
displayConfirmation: false, // This will only work when the snap is preinstalled
});
await this.#stateManager.addWallet({ account, details: options.details });
return account;
} catch (error) {
throw new Error((error as Error).message);
}
}
async filterAccountChains(id: string, chains: string[]): Promise<string[]> {
const account = await this.getAccount(id);
if (!account) {
throw new Error(`Account '${id}' not found`);
}
const custodianApi = await this.getCustodianApiForAddress(account.address);
const supportedChains = await custodianApi.getSupportedChains();
return chains.filter((chain) =>
supportedChains.includes(convertHexChainIdToCaip2Decimal(chain)),
);
}
async updateAccount(_account: CustodialKeyringAccount): Promise<void> {
throw new MethodNotFoundError() as Error;
}
async deleteAccount(id: string): Promise<void> {
try {
await this.#stateManager.withTransaction(async () => {
await this.#stateManager.removeAccounts([id]);
await this.#emitEvent(KeyringEvent.AccountDeleted, { id });
});
} catch (error) {
logger.error(error);
throwError((error as Error).message);
}
}
// Maintain compatibility with the keyring api, return the request in the original form that we received (i.e. the keyringRequest)
async listRequests(): Promise<KeyringRequest[]> {
if (config.dev) {
const requests = await this.#requestManagerFacade.listRequests();
return requests.map((request) => request.keyringRequest);
}
return [];
}
// Maintain compatibility with the keyring api, return the request in the original form that we received (i.e. the keyringRequest)
async getRequest(id: string): Promise<KeyringRequest> {
assert(id, string());
if (config.dev) {
const requests = await this.#requestManagerFacade.listRequests();
const request = requests.find((req) => req.keyringRequest.id === id);
if (!request) {
throw new Error(`Request '${id}' not found`);
}
return request.keyringRequest;
}
throw new Error('Method not implemented.'); // Not in permissions, but required by the keyring api
}
async submitRequest(request: KeyringRequest): Promise<SubmitRequestResponse> {
// These requests may come from dapps, so in production we should use runSensitive
if (config.dev) {
return this.#asyncSubmitRequest(request);
}
// Allow errors to be exposed here, because
// the issue is likely to be with the request
assert(request, KeyringRequestStruct);
// But not here, because the issue is likely to be with the snap or the custodian api
return runSensitive(
async () => this.#asyncSubmitRequest(request),
'An unexpected error occurred',
);
}
async approveRequest(_id: string): Promise<void> {
throw new Error('Method not implemented.'); // Not in permissions, but required by the keyring api
}
async rejectRequest(_id: string): Promise<void> {
throw new Error('Method not implemented.'); // Not in permissions, but required by the keyring api
}
async getCustodianApiForAddress(address: string): Promise<ICustodianApi> {
if (!this.#custodianApi.has(address)) {
const wallet = await this.#stateManager.getWalletByAddress(address);
if (!wallet) {
throw new Error(`Wallet for account ${address} does not exist`);
}
const custodianApi = this.#getCustodianApi(wallet.details);
this.#custodianApi.set(address, custodianApi);
custodianApi.on(
TOKEN_EXPIRED_EVENT,
(payload: IRefreshTokenChangeEvent) => {
this.#handleTokenChangedEvent(payload).catch(logger.error);
},
);
}
return this.#custodianApi.get(address) as ICustodianApi;
}
#getCustodianApi(details: OnBoardingRpcRequest): ICustodianApi {
const CustodianApiClass = CustodianApiMap[details.custodianType];
const custodianApi = new CustodianApiClass(
{ refreshToken: details.token, refreshTokenUrl: details.refreshTokenUrl },
details.custodianApiUrl,
1000,
);
return custodianApi;
}
async #handleTokenChangedEvent(
payload: IRefreshTokenChangeEvent,
): Promise<void> {
// Find all the wallets with the old refresh token
const wallets = await this.#stateManager.listWallets();
const walletsToUpdate = wallets.filter(
(wallet) =>
wallet.details.token === payload.oldRefreshToken &&
wallet.details.custodianApiUrl === payload.apiUrl,
);
for (const wallet of walletsToUpdate) {
// Create new details object with updated token
const updatedDetails = {
...wallet.details,
token: payload.newRefreshToken,
};
// Clear cache
this.#custodianApi.delete(wallet.account.address);
// Update state with new details
await this.#stateManager.updateWalletDetails(
wallet.account.id,
updatedDetails,
);
}
}
async #asyncSubmitRequest(
request: KeyringRequest,
): Promise<SubmitRequestResponse> {
const custodianId = await this.#handleSigningRequest(
request.request.method,
request.request.params ?? [],
request,
);
const account = await this.getAccount(request.account);
if (!account) {
throw new Error(`Account '${request.account}' not found`);
}
const { address } = account;
// Distinguish between a transaction link and a message link
let deepLink: CustodianDeepLink | null = null;
// Custodians may not support all methods
// but we don't store this anywhere, because they can implement them later
// We rely on the custodian api to throw an error if the deeplink method is not supported
// and generate a default message if that is the case
try {
if (request.request.method === EthMethod.SignTransaction) {
const custodianApi = await this.getCustodianApiForAddress(address);
deepLink = (await custodianApi.getTransactionLink(
custodianId,
)) as CustodianDeepLink;
} else {
const custodianApi = await this.getCustodianApiForAddress(address);
deepLink = (await custodianApi.getSignedMessageLink(
custodianId,
)) as CustodianDeepLink;
}
} catch (error) {
deepLink = {
text: 'Complete in Custodian App',
id: custodianId,
url: '',
action: 'view',
};
console.error('Error getting deep link', error);
}
await renderInfoMessage(`${deepLink.text} Transaction ID: ${deepLink.id}`);
return {
pending: true,
};
}
async #handleSigningRequest(
method: string,
params: Json,
keyringRequest: KeyringRequest,
): Promise<string> {
switch (method) {
case EthMethod.PersonalSign: {
const [message, from] = params as [string, string];
const custodianApi = await this.getCustodianApiForAddress(from);
const details = await SignedMessageHelper.signPersonalMessage(
from,
message,
custodianApi,
);
await this.#requestManagerFacade.upsertRequest({
keyringRequest,
type: 'message',
subType: 'personalSign',
fulfilled: false,
rejected: false,
message: details,
signature: null,
lastUpdated: Date.now(),
});
return details.id;
}
case EthMethod.SignTransaction: {
const [tx] = params as [EthSignTransactionRequest];
const result = await this.#signTransaction(tx, keyringRequest);
return result;
}
case EthMethod.SignTypedDataV3: {
const [from, data] = params as [string, TypedMessage<MessageTypes>];
const custodianApi = await this.getCustodianApiForAddress(from);
const details = await SignedMessageHelper.signTypedData(
from,
data,
custodianApi,
{ version: SignTypedDataVersion.V3 },
);
await this.#requestManagerFacade.upsertRequest({
keyringRequest,
type: 'message',
subType: 'v3',
fulfilled: false,
rejected: false,
message: details,
signature: null,
lastUpdated: Date.now(),
});
return details.id;
}
case EthMethod.SignTypedDataV4: {
const [from, data] = params as [string, TypedMessage<MessageTypes>];
const custodianApi = await this.getCustodianApiForAddress(from);
const details = await SignedMessageHelper.signTypedData(
from,
data,
custodianApi,
{ version: SignTypedDataVersion.V3 },
);
await this.#requestManagerFacade.upsertRequest({
keyringRequest,
type: 'message',
subType: 'v4',
fulfilled: false,
rejected: false,
message: details,
signature: null,
lastUpdated: Date.now(),
});
return details.id;
}
default: {
throw new Error(`EVM method '${method}' not supported`);
}
}
}
async #signTransaction(
tx: EthSignTransactionRequest,
keyringRequest: KeyringRequest,
): Promise<string> {
// validation happens at handleSigningRequest
try {
const custodianApi = await this.getCustodianApiForAddress(tx.from);
const payload = TransactionHelper.createTransactionPayload(tx);
const wallet = await this.#stateManager.getWalletByAddress(tx.from);
if (!wallet) {
throw new Error(`Account '${tx.from}' not found`);
}
const custodianPublishesTransaction =
wallet.account.options.custodian.deferPublication;
const response = await custodianApi.createTransaction(payload, {
chainId: tx.chainId,
custodianPublishesTransaction,
});
await this.#requestManagerFacade.upsertRequest({
keyringRequest,
type: 'transaction',
fulfilled: false,
rejected: false,
lastUpdated: Date.now(),
transaction: response,
});
return response.custodianTransactionId;
} catch (error) {
console.error('Transaction signing failed:', error);
throw new Error(
`Failed to sign transaction: ${(error as Error).message}`,
);
}
}
async #emitEvent(
event: KeyringEvent,
data: Record<string, Json>,
): Promise<void> {
await emitSnapKeyringEvent(snap, event, data);
}
}