-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathindex.ts
More file actions
667 lines (599 loc) · 20.5 KB
/
index.ts
File metadata and controls
667 lines (599 loc) · 20.5 KB
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
import ImportedEngine from '../Engine';
import TransactionTypes from '../TransactionTypes';
import {
CaipAccountId,
CaipChainId,
Hex,
KnownCaipNamespace,
parseCaipAccountId,
parseCaipChainId,
} from '@metamask/utils';
///: BEGIN:ONLY_INCLUDE_IF(tron)
import { TrxScope } from '@metamask/keyring-api';
///: END:ONLY_INCLUDE_IF
import { InternalAccount } from '@metamask/keyring-internal-api';
import {
Caip25CaveatType,
Caip25CaveatValue,
Caip25EndowmentPermissionName,
getAllScopesFromCaip25CaveatValue,
getCaipAccountIdsFromCaip25CaveatValue,
getEthAccounts,
getPermittedEthChainIds,
isInternalAccountInPermittedAccountIds,
setChainIdsInCaip25CaveatValue,
setNonSCACaipAccountIdsInCaip25CaveatValue,
} from '@metamask/chain-agnostic-permission';
import {
CaveatConstraint,
PermissionDoesNotExistError,
} from '@metamask/permission-controller';
import { captureException } from '@sentry/react-native';
import { getNetworkConfigurationsByCaipChainId } from '../../selectors/networkController';
import { areAddressesEqual } from '../../util/address';
import Logger from '../../util/Logger';
const INTERNAL_ORIGINS = [
process.env.MM_FOX_CODE,
TransactionTypes.MMM,
TransactionTypes.MMM_CARD,
];
// TODO: Replace "any" with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const Engine = ImportedEngine as any;
// Error indicating that there was no CAIP-25 endowment found for the target origin
class Caip25EndowmentMissingError extends Error {}
/**
* Checks that all accounts referenced have a matching InternalAccount. Sends
* an error to sentry for any accounts that were expected but are missing from the wallet.
*
* @param [internalAccounts] - The list of evm accounts the wallet knows about.
* @param [accounts] - The list of accounts addresses that should exist.
*/
const captureKeyringTypesWithMissingIdentities = (
internalAccounts: InternalAccount[] = [],
accounts: string[] = [],
) => {
const accountsMissingIdentities = accounts.filter(
(address) =>
!internalAccounts.some((account) =>
areAddressesEqual(account.address, address),
),
);
const keyringTypesWithMissingIdentities = accountsMissingIdentities.map(
(address) =>
Engine.context.KeyringController.getAccountKeyringType(address),
);
const internalAccountCount = internalAccounts.length;
const accountTrackerCount = Object.keys(
Engine.context.AccountTrackerController.state.accounts || {},
).length;
captureException(
new Error(
`Attempt to get permission specifications failed because there were ${accounts.length} accounts, but ${internalAccountCount} identities, and the ${keyringTypesWithMissingIdentities} keyrings included accounts with missing identities. Meanwhile, there are ${accountTrackerCount} accounts in the account tracker.`,
),
);
};
/**
* Sorts a list of addresses by most recently selected by using the lastSelected value for
* the matching InternalAccount object from the list of internalAccounts provided.
*/
const sortAddressesWithInternalAccounts = <T extends string>(
addresses: T[],
internalAccounts: InternalAccount[],
): T[] =>
[...addresses].sort((firstAddress, secondAddress) => {
const firstAccount = internalAccounts.find((internalAccount) =>
areAddressesEqual(internalAccount.address, firstAddress),
);
const secondAccount = internalAccounts.find((internalAccount) =>
areAddressesEqual(internalAccount.address, secondAddress),
);
if (!firstAccount) {
captureKeyringTypesWithMissingIdentities(internalAccounts, addresses);
throw new Error(`Missing identity for address: "${firstAddress}".`);
} else if (!secondAccount) {
captureKeyringTypesWithMissingIdentities(internalAccounts, addresses);
throw new Error(`Missing identity for address: "${secondAddress}".`);
} else if (
firstAccount.metadata.lastSelected === secondAccount.metadata.lastSelected
) {
return 0;
} else if (firstAccount.metadata.lastSelected === undefined) {
return 1;
} else if (secondAccount.metadata.lastSelected === undefined) {
return -1;
}
return (
secondAccount.metadata.lastSelected - firstAccount.metadata.lastSelected
);
});
/**
* Sorts a list of evm account addresses by most recently selected by using
* the lastSelected value for the matching InternalAccount object stored in state.
*/
export const sortEvmAccountsByLastSelected = (addresses: Hex[]): Hex[] => {
const internalAccounts = Engine.context.AccountsController.listAccounts();
return sortAddressesWithInternalAccounts(addresses, internalAccounts);
};
/**
* Sorts a list of caip account id by most recently selected by using the lastSelected value for
* the matching InternalAccount object from the list of internalAccounts provided.
*/
const sortCaipAccountIdsWithInternalAccounts = (
caipAccountIds: CaipAccountId[],
internalAccounts: InternalAccount[],
): CaipAccountId[] =>
[...caipAccountIds].sort((firstAccountId, secondAccountId) => {
const firstAccount = internalAccounts.find((internalAccount) =>
isInternalAccountInPermittedAccountIds(internalAccount, [firstAccountId]),
);
const secondAccount = internalAccounts.find((internalAccount) =>
isInternalAccountInPermittedAccountIds(internalAccount, [
secondAccountId,
]),
);
if (!firstAccount) {
captureKeyringTypesWithMissingIdentities(
internalAccounts,
caipAccountIds,
);
throw new Error(`Missing identity for address: "${firstAccountId}".`);
} else if (!secondAccount) {
captureKeyringTypesWithMissingIdentities(
internalAccounts,
caipAccountIds,
);
throw new Error(`Missing identity for address: "${secondAccountId}".`);
} else if (
firstAccount.metadata.lastSelected === secondAccount.metadata.lastSelected
) {
return 0;
} else if (firstAccount.metadata.lastSelected === undefined) {
return 1;
} else if (secondAccount.metadata.lastSelected === undefined) {
return -1;
}
return (
secondAccount.metadata.lastSelected - firstAccount.metadata.lastSelected
);
});
/**
* Sorts a list of multichain account ids by most recently selected by using
* the lastSelected value for the matching InternalAccount object stored in state.
*/
export const sortMultichainAccountsByLastSelected = (
caipAccountIds: CaipAccountId[],
) => {
const internalAccounts =
Engine.context.AccountsController.listMultichainAccounts();
return sortCaipAccountIdsWithInternalAccounts(
caipAccountIds,
internalAccounts,
);
};
/**
* Generic function to extract data from a subject using a provided extractor.
*
* @param subject - The subject object containing permissions and caveats.
* @param extractor - A function that extracts data from a caveat.
* @returns An array of data extracted from the subject.
*/
function getDataFromSubject<T>(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
subject: any,
extractor: (caveat: { type: string; value: Caip25CaveatValue }) => T[],
): T[] {
const caveats = subject.permissions?.[Caip25EndowmentPermissionName]?.caveats;
if (!caveats) {
return [];
}
const caveat = caveats.find(
({ type }: CaveatConstraint) => type === Caip25CaveatType,
);
return caveat ? extractor(caveat) : [];
}
/**
* Helper function to extract CAIP account IDs from a subject.
*
* @param subject - The subject object containing permissions and caveats.
* @returns An array of CAIP account IDs.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function getCaipAccountIdsFromSubject(subject: any): CaipAccountId[] {
return getDataFromSubject(subject, (caveat) =>
getCaipAccountIdsFromCaip25CaveatValue(caveat.value),
);
}
/**
* Helper function to extract EVM addresses from a subject.
*
* @param subject - The subject object containing permissions and caveats.
* @returns An array of EVM addresses.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function getEvmAddessesFromSubject(subject: any): Hex[] {
return getDataFromSubject(subject, (caveat) => {
const ethAccounts = getEthAccounts(caveat.value);
return sortEvmAccountsByLastSelected(ethAccounts);
});
}
/**
* Helper function to extract permitted scopes from a subject.
*
* @param subject - The subject object containing permissions and caveats.
* @returns An array of permitted CAIP chain IDs.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function getPermittedScopesFromSubject(subject: any): CaipChainId[] {
return getDataFromSubject(subject, (caveat) =>
getAllScopesFromCaip25CaveatValue(caveat.value),
);
}
export const getPermittedCaipAccountIdsByHostname = (
// eslint-disable-next-line @typescript-eslint/no-explicit-any
state: any,
hostname: string,
): CaipAccountId[] => {
const subject = state.subjects?.[hostname];
if (!subject) {
return [];
}
return getCaipAccountIdsFromSubject(subject);
};
export const getPermittedEvmAddressesByHostname = (
state: { subjects: Record<string, unknown> },
hostname: string,
): Hex[] => {
const subject = state.subjects[hostname];
if (!subject) {
return [];
}
return getEvmAddessesFromSubject(subject);
};
export const getPermittedCaipChainIdsByHostname = (
state: { subjects: Record<string, unknown> },
hostname: string,
): CaipChainId[] => {
const subject = state.subjects?.[hostname];
if (!subject) {
return [];
}
const permittedScopes = getPermittedScopesFromSubject(subject);
// our `endowment:caip25` permission can include a special class of `wallet` scopes,
// see https://github.com/ChainAgnostic/namespaces/tree/main/wallet &
// https://github.com/ChainAgnostic/namespaces/blob/main/wallet/caip2.md
// amongs the other chainId scopes. We want to exclude the `wallet` scopes here.
return permittedScopes.filter((caipChainId: CaipChainId) => {
try {
const { namespace } = parseCaipChainId(caipChainId);
return namespace !== KnownCaipNamespace.Wallet;
} catch (err) {
return false;
}
});
};
/**
* Returns a default CAIP-25 caveat value.
* Each chain appends its optional scope below (feature-flagged).
* @returns Default {@link Caip25CaveatValue}
*/
export const getDefaultCaip25CaveatValue = (): Caip25CaveatValue => {
const optionalScopes: Caip25CaveatValue['optionalScopes'] = {
'wallet:eip155': { accounts: [] },
};
///: BEGIN:ONLY_INCLUDE_IF(tron)
optionalScopes[TrxScope.Mainnet] = { accounts: [] };
///: END:ONLY_INCLUDE_IF
return {
requiredScopes: {},
optionalScopes,
sessionProperties: {},
isMultichainOrigin: false,
};
};
// Returns the CAIP-25 caveat or undefined if it does not exist
export const getCaip25Caveat = (origin: string) => {
let caip25Caveat;
try {
caip25Caveat = Engine.context.PermissionController.getCaveat(
origin,
Caip25EndowmentPermissionName,
Caip25CaveatType,
);
} catch (err) {
if (err instanceof PermissionDoesNotExistError) {
// suppress expected error in case that the origin
// does not have the target permission yet
} else {
throw err;
}
}
return caip25Caveat;
};
export const addPermittedAccounts = (
origin: string,
accounts: CaipAccountId[],
) => {
const caip25Caveat = getCaip25Caveat(origin);
if (!caip25Caveat) {
throw new Caip25EndowmentMissingError(
`Cannot add account permissions for origin "${origin}": no permission currently exists for this origin.`,
);
}
const existingPermittedAccountIds = getCaipAccountIdsFromCaip25CaveatValue(
caip25Caveat.value,
);
const existingPermittedChainIds = getAllScopesFromCaip25CaveatValue(
caip25Caveat.value,
);
const updatedAccountIds = Array.from(
new Set([...existingPermittedAccountIds, ...accounts]),
);
let updatedPermittedChainIds = [...existingPermittedChainIds];
const evmNetworkConfigurationsByChainId =
Engine.context.NetworkController.state.networkConfigurationsByChainId;
const nonEvmNetworkConfigurationsByChainId =
Engine.context.MultichainNetworkController.state
.multichainNetworkConfigurationsByChainId;
const networkConfigurations = getNetworkConfigurationsByCaipChainId(
evmNetworkConfigurationsByChainId,
nonEvmNetworkConfigurationsByChainId,
);
const allNetworksList = Object.keys(networkConfigurations) as CaipChainId[];
updatedAccountIds.forEach((caipAccountAddress) => {
const {
chain: { namespace: accountNamespace },
} = parseCaipAccountId(caipAccountAddress);
const existsSelectedChainForNamespace = updatedPermittedChainIds.some(
(caipChainId) => {
try {
const { namespace: chainNamespace } = parseCaipChainId(caipChainId);
return accountNamespace === chainNamespace;
} catch (err) {
return false;
}
},
);
if (!existsSelectedChainForNamespace) {
const chainIdsForNamespace = allNetworksList.filter((caipChainId) => {
try {
const { namespace: chainNamespace } = parseCaipChainId(caipChainId);
return accountNamespace === chainNamespace;
} catch (err) {
return false;
}
});
updatedPermittedChainIds = [
...updatedPermittedChainIds,
...chainIdsForNamespace,
];
}
});
const updatedCaveatValueWithChainIds = setChainIdsInCaip25CaveatValue(
caip25Caveat.value,
updatedPermittedChainIds,
);
const updatedCaveatValueWithAccountIds =
setNonSCACaipAccountIdsInCaip25CaveatValue(
updatedCaveatValueWithChainIds,
updatedAccountIds,
);
Engine.context.PermissionController.updateCaveat(
origin,
Caip25EndowmentPermissionName,
Caip25CaveatType,
updatedCaveatValueWithAccountIds,
);
};
export const removePermittedAccounts = (
origin: string,
addresses: string[],
) => {
const { PermissionController, AccountsController } = Engine.context;
const caip25Caveat = getCaip25Caveat(origin);
if (!caip25Caveat) {
throw new Caip25EndowmentMissingError(
`Cannot remove accounts "${addresses}": No permissions exist for origin "${origin}".`,
);
}
const internalAccounts = addresses.map((address) =>
AccountsController.getAccountByAddress(address),
) as InternalAccount[];
const existingCaipAccountIds = getCaipAccountIdsFromCaip25CaveatValue(
caip25Caveat.value,
);
const remainingAccountIds = existingCaipAccountIds.filter(
(existingCaipAccountId) =>
!internalAccounts.some((internalAccount) =>
isInternalAccountInPermittedAccountIds(internalAccount, [
existingCaipAccountId,
]),
),
);
if (remainingAccountIds.length === existingCaipAccountIds.length) {
return;
}
if (remainingAccountIds.length === 0) {
PermissionController.revokePermission(
origin,
Caip25EndowmentPermissionName,
);
} else {
const updatedCaveatValue = setNonSCACaipAccountIdsInCaip25CaveatValue(
caip25Caveat.value,
remainingAccountIds,
);
PermissionController.updateCaveat(
origin,
Caip25EndowmentPermissionName,
Caip25CaveatType,
updatedCaveatValue,
);
}
};
// The codebase needs to be refactored to use caipAccountIds so that this is easier to change
export const removeAccountsFromPermissions = (addresses: Hex[]) => {
const { PermissionController } = Engine.context;
for (const subject in PermissionController.state.subjects) {
try {
removePermittedAccounts(subject, addresses);
} catch (e) {
if (e instanceof Caip25EndowmentMissingError) {
continue;
}
Logger.log(
e,
'Failed to remove account from permissions after deleting account from wallet.',
);
}
}
};
export const updatePermittedChains = (
origin: string,
chainIds: CaipChainId[],
shouldReplaceExistingChainPermissions = false,
) => {
const caip25Caveat = getCaip25Caveat(origin);
if (!caip25Caveat) {
throw new Caip25EndowmentMissingError(
`Cannot add chain permissions for origin "${origin}": no permission currently exists for this origin.`,
);
}
const additionalChainIds = shouldReplaceExistingChainPermissions
? []
: getAllScopesFromCaip25CaveatValue(caip25Caveat.value);
const updatedChainIds = Array.from(
new Set([...additionalChainIds, ...chainIds]),
);
const caveatValueWithChainIds = setChainIdsInCaip25CaveatValue(
caip25Caveat.value,
updatedChainIds,
);
const permittedAccountIds = getCaipAccountIdsFromCaip25CaveatValue(
caip25Caveat.value,
);
// ensure that the list of permitted accounts is set for the newly added scopes
const caveatValueWithAccountsSynced =
setNonSCACaipAccountIdsInCaip25CaveatValue(
caveatValueWithChainIds,
permittedAccountIds,
);
Engine.context.PermissionController.updateCaveat(
origin,
Caip25EndowmentPermissionName,
Caip25CaveatType,
caveatValueWithAccountsSynced,
);
};
/**
* Remove a permitted chain for the given the host.
*
* @param hostname - Subject to remove permitted chain. Ex: A Dapp is a subject
* @param chainId - ChainId to remove.
*/
export const removePermittedChain = (
hostname: string,
chainId: CaipChainId,
) => {
const caip25Caveat = getCaip25Caveat(hostname);
if (!caip25Caveat) {
throw new Caip25EndowmentMissingError(
`Cannot remove chain permissions for origin "${hostname}": no permission currently exists for this origin.`,
);
}
const { PermissionController } = Engine.context;
const caveat = PermissionController.getCaveat(
hostname,
Caip25EndowmentPermissionName,
Caip25CaveatType,
);
const permittedChainIds = getAllScopesFromCaip25CaveatValue(caveat.value);
const newPermittedChains = permittedChainIds.filter(
(chain: string) => chain !== chainId,
);
if (newPermittedChains.length === permittedChainIds.length) {
return;
} else if (newPermittedChains.length === 0) {
PermissionController.revokePermission(
hostname,
Caip25EndowmentPermissionName,
);
} else {
updatePermittedChains(hostname, newPermittedChains, true);
}
};
/**
* Gets the sorted permitted accounts for the specified origin. Returns an empty
* array if no accounts are permitted or the wallet is locked. Returns any permitted
* accounts if the wallet is locked and `ignoreLock` is true. This lock bypass is needed
* for the `eth_requestAccounts` & `wallet_getPermission` handlers both of which
* return permitted accounts to the dapp when the wallet is locked.
*
* @param {string} origin - The origin whose exposed accounts to retrieve.
* @param {object} [options] - The options object
* @param {boolean} [options.ignoreLock] - If accounts should be returned even if the wallet is locked.
* @returns {string[]} The origin's permitted accounts, or an empty
* array.
*/
export const getPermittedAccounts = (
origin: string,
{ ignoreLock }: { ignoreLock?: boolean } = {},
) => {
const { AccountsController, PermissionController, KeyringController } =
Engine.context;
let caveat;
try {
if (INTERNAL_ORIGINS.includes(origin)) {
const selectedAccountAddress =
AccountsController.getSelectedAccount().address;
return [selectedAccountAddress];
}
caveat = PermissionController.getCaveat(
origin,
Caip25EndowmentPermissionName,
Caip25CaveatType,
);
} catch (err) {
if (err instanceof PermissionDoesNotExistError) {
// suppress expected error in case that the origin
// does not have the target permission yet
return [];
}
throw err;
}
if (!KeyringController.isUnlocked() && !ignoreLock) {
return [];
}
const ethAccounts = getEthAccounts(caveat.value);
return sortEvmAccountsByLastSelected(ethAccounts);
};
/**
* Get permitted chains for the given the host, across all namespaces.
* Returns all non-wallet scopes stored in the CAIP-25 caveat.
*
* @param hostname - Subject to check if permissions exists. Ex: A Dapp is a subject.
* @returns An array containing permitted CAIP chain IDs for the specified host.
*/
export const getPermittedChains = async (
hostname: string,
): Promise<CaipChainId[]> => {
const { PermissionController } = Engine.context;
const caveat = PermissionController.getCaveat(
hostname,
Caip25EndowmentPermissionName,
Caip25CaveatType,
);
if (caveat) {
return getAllScopesFromCaip25CaveatValue(caveat.value).filter(
(caipChainId: CaipChainId) => {
try {
const { namespace } = parseCaipChainId(caipChainId);
return namespace !== KnownCaipNamespace.Wallet;
} catch {
return false;
}
},
);
}
return [];
};