-
-
Notifications
You must be signed in to change notification settings - Fork 200
/
AccountTrackerController.ts
476 lines (431 loc) · 14.1 KB
/
AccountTrackerController.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
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
import type {
AccountsControllerSelectedEvmAccountChangeEvent,
AccountsControllerGetSelectedAccountAction,
AccountsControllerListAccountsAction,
AccountsControllerSelectedAccountChangeEvent,
} from '@metamask/accounts-controller';
import type {
ControllerStateChangeEvent,
ControllerGetStateAction,
RestrictedControllerMessenger,
} from '@metamask/base-controller';
import {
query,
safelyExecuteWithTimeout,
toChecksumHexAddress,
} from '@metamask/controller-utils';
import EthQuery from '@metamask/eth-query';
import type {
NetworkClientId,
NetworkControllerGetNetworkClientByIdAction,
NetworkControllerGetStateAction,
} from '@metamask/network-controller';
import { StaticIntervalPollingController } from '@metamask/polling-controller';
import type { PreferencesControllerGetStateAction } from '@metamask/preferences-controller';
import { type Hex, assert } from '@metamask/utils';
import { Mutex } from 'async-mutex';
import { cloneDeep } from 'lodash';
import type {
AssetsContractController,
StakedBalance,
} from './AssetsContractController';
/**
* The name of the {@link AccountTrackerController}.
*/
const controllerName = 'AccountTrackerController';
/**
* @type AccountInformation
*
* Account information object
* @property balance - Hex string of an account balance in wei
* @property stakedBalance - Hex string of an account staked balance in wei
*/
export type AccountInformation = {
balance: string;
stakedBalance?: string;
};
/**
* @type AccountTrackerControllerState
*
* Account tracker controller state
* @property accounts - Map of addresses to account information
*/
export type AccountTrackerControllerState = {
accounts: { [address: string]: AccountInformation };
accountsByChainId: Record<string, { [address: string]: AccountInformation }>;
};
const accountTrackerMetadata = {
accounts: {
persist: true,
anonymous: false,
},
accountsByChainId: {
persist: true,
anonymous: false,
},
};
/**
* The action that can be performed to get the state of the {@link AccountTrackerController}.
*/
export type AccountTrackerControllerGetStateAction = ControllerGetStateAction<
typeof controllerName,
AccountTrackerControllerState
>;
/**
* The actions that can be performed using the {@link AccountTrackerController}.
*/
export type AccountTrackerControllerActions =
AccountTrackerControllerGetStateAction;
/**
* The messenger of the {@link AccountTrackerController} for communication.
*/
export type AllowedActions =
| AccountsControllerListAccountsAction
| PreferencesControllerGetStateAction
| AccountsControllerGetSelectedAccountAction
| NetworkControllerGetStateAction
| NetworkControllerGetNetworkClientByIdAction;
/**
* The event that {@link AccountTrackerController} can emit.
*/
export type AccountTrackerControllerStateChangeEvent =
ControllerStateChangeEvent<
typeof controllerName,
AccountTrackerControllerState
>;
/**
* The events that {@link AccountTrackerController} can emit.
*/
export type AccountTrackerControllerEvents =
AccountTrackerControllerStateChangeEvent;
/**
* The external events available to the {@link AccountTrackerController}.
*/
export type AllowedEvents =
| AccountsControllerSelectedEvmAccountChangeEvent
| AccountsControllerSelectedAccountChangeEvent;
/**
* The messenger of the {@link AccountTrackerController}.
*/
export type AccountTrackerControllerMessenger = RestrictedControllerMessenger<
typeof controllerName,
AccountTrackerControllerActions | AllowedActions,
AccountTrackerControllerEvents | AllowedEvents,
AllowedActions['type'],
AllowedEvents['type']
>;
/** The input to start polling for the {@link AccountTrackerController} */
type AccountTrackerPollingInput = {
networkClientId: NetworkClientId;
};
/**
* Controller that tracks the network balances for all user accounts.
*/
export class AccountTrackerController extends StaticIntervalPollingController<AccountTrackerPollingInput>()<
typeof controllerName,
AccountTrackerControllerState,
AccountTrackerControllerMessenger
> {
readonly #refreshMutex = new Mutex();
readonly #includeStakedAssets: boolean;
readonly #getStakedBalanceForChain: AssetsContractController['getStakedBalanceForChain'];
#handle?: ReturnType<typeof setTimeout>;
/**
* Creates an AccountTracker instance.
*
* @param options - The controller options.
* @param options.interval - Polling interval used to fetch new account balances.
* @param options.state - Initial state to set on this controller.
* @param options.messenger - The controller messaging system.
* @param options.getStakedBalanceForChain - The function to get the staked native asset balance for a chain.
* @param options.includeStakedAssets - Whether to include staked assets in the account balances.
*/
constructor({
interval = 10000,
state,
messenger,
getStakedBalanceForChain,
includeStakedAssets = false,
}: {
interval?: number;
state?: Partial<AccountTrackerControllerState>;
messenger: AccountTrackerControllerMessenger;
getStakedBalanceForChain: AssetsContractController['getStakedBalanceForChain'];
includeStakedAssets?: boolean;
}) {
const { selectedNetworkClientId } = messenger.call(
'NetworkController:getState',
);
const {
configuration: { chainId },
} = messenger.call(
'NetworkController:getNetworkClientById',
selectedNetworkClientId,
);
super({
name: controllerName,
messenger,
state: {
accounts: {},
accountsByChainId: {
[chainId]: {},
},
...state,
},
metadata: accountTrackerMetadata,
});
this.#getStakedBalanceForChain = getStakedBalanceForChain;
this.#includeStakedAssets = includeStakedAssets;
this.setIntervalLength(interval);
// TODO: Either fix this lint violation or explain why it's necessary to ignore.
// eslint-disable-next-line @typescript-eslint/no-floating-promises
this.poll();
this.messagingSystem.subscribe(
'AccountsController:selectedEvmAccountChange',
// TODO: Either fix this lint violation or explain why it's necessary to ignore.
// eslint-disable-next-line @typescript-eslint/no-misused-promises
() => this.refresh(),
);
}
/**
* Gets the current chain ID.
* @returns The current chain ID.
*/
#getCurrentChainId(): Hex {
const { selectedNetworkClientId } = this.messagingSystem.call(
'NetworkController:getState',
);
const {
configuration: { chainId },
} = this.messagingSystem.call(
'NetworkController:getNetworkClientById',
selectedNetworkClientId,
);
return chainId;
}
private syncAccounts(newChainId: string) {
const accounts = { ...this.state.accounts };
const accountsByChainId = cloneDeep(this.state.accountsByChainId);
const existing = Object.keys(accounts);
if (!accountsByChainId[newChainId]) {
accountsByChainId[newChainId] = {};
existing.forEach((address) => {
accountsByChainId[newChainId][address] = { balance: '0x0' };
});
}
// Note: The address from the preferences controller are checksummed
// The addresses from the accounts controller are lowercased
const addresses = Object.values(
this.messagingSystem
.call('AccountsController:listAccounts')
.map((internalAccount) =>
toChecksumHexAddress(internalAccount.address),
),
);
const newAddresses = addresses.filter(
(address) => !existing.includes(address),
);
const oldAddresses = existing.filter(
(address) => !addresses.includes(address),
);
newAddresses.forEach((address) => {
accounts[address] = { balance: '0x0' };
});
Object.keys(accountsByChainId).forEach((chainId) => {
newAddresses.forEach((address) => {
accountsByChainId[chainId][address] = {
balance: '0x0',
};
});
});
oldAddresses.forEach((address) => {
delete accounts[address];
});
Object.keys(accountsByChainId).forEach((chainId) => {
oldAddresses.forEach((address) => {
delete accountsByChainId[chainId][address];
});
});
this.update((state) => {
state.accounts = accounts;
state.accountsByChainId = accountsByChainId;
});
}
/**
* Resolves a networkClientId to a network client config
* or globally selected network config if not provided
*
* @param networkClientId - Optional networkClientId to fetch a network client with
* @returns network client config
*/
#getCorrectNetworkClient(networkClientId?: NetworkClientId): {
chainId: string;
ethQuery?: EthQuery;
} {
const selectedNetworkClientId =
networkClientId ??
this.messagingSystem.call('NetworkController:getState')
.selectedNetworkClientId;
const {
configuration: { chainId },
provider,
} = this.messagingSystem.call(
'NetworkController:getNetworkClientById',
selectedNetworkClientId,
);
return {
chainId,
ethQuery: new EthQuery(provider),
};
}
/**
* Starts a new polling interval.
*
* @param interval - Polling interval trigger a 'refresh'.
*/
async poll(interval?: number): Promise<void> {
if (interval) {
this.setIntervalLength(interval);
}
if (this.#handle) {
clearTimeout(this.#handle);
}
await this.refresh();
this.#handle = setTimeout(() => {
// TODO: Either fix this lint violation or explain why it's necessary to ignore.
// eslint-disable-next-line @typescript-eslint/no-floating-promises
this.poll(this.getIntervalLength());
}, this.getIntervalLength());
}
/**
* Refreshes the balances of the accounts using the networkClientId
*
* @param input - The input for the poll.
* @param input.networkClientId - The network client ID used to get balances.
*/
async _executePoll({
networkClientId,
}: AccountTrackerPollingInput): Promise<void> {
// TODO: Either fix this lint violation or explain why it's necessary to ignore.
// eslint-disable-next-line @typescript-eslint/no-floating-promises
this.refresh(networkClientId);
}
/**
* Refreshes the balances of the accounts depending on the multi-account setting.
* If multi-account is disabled, only updates the selected account balance.
* If multi-account is enabled, updates balances for all accounts.
*
* @param networkClientId - Optional networkClientId to fetch a network client with
*/
async refresh(networkClientId?: NetworkClientId) {
const selectedAccount = this.messagingSystem.call(
'AccountsController:getSelectedAccount',
);
const releaseLock = await this.#refreshMutex.acquire();
try {
const { chainId, ethQuery } =
this.#getCorrectNetworkClient(networkClientId);
this.syncAccounts(chainId);
const { accounts, accountsByChainId } = this.state;
const { isMultiAccountBalancesEnabled } = this.messagingSystem.call(
'PreferencesController:getState',
);
const accountsToUpdate = isMultiAccountBalancesEnabled
? Object.keys(accounts)
: [toChecksumHexAddress(selectedAccount.address)];
const accountsForChain = { ...accountsByChainId[chainId] };
for (const address of accountsToUpdate) {
const balance = await this.#getBalanceFromChain(address, ethQuery);
if (balance) {
accountsForChain[address] = {
balance,
};
}
if (this.#includeStakedAssets) {
const stakedBalance = await this.#getStakedBalanceForChain(
address,
networkClientId,
);
if (stakedBalance) {
accountsForChain[address] = {
...accountsForChain[address],
stakedBalance,
};
}
}
}
this.update((state) => {
if (chainId === this.#getCurrentChainId()) {
state.accounts = accountsForChain;
}
state.accountsByChainId[chainId] = accountsForChain;
});
} finally {
releaseLock();
}
}
/**
* Fetches the balance of a given address from the blockchain.
*
* @param address - The account address to fetch the balance for.
* @param ethQuery - The EthQuery instance to query getBalnce with.
* @returns A promise that resolves to the balance in a hex string format.
*/
async #getBalanceFromChain(
address: string,
ethQuery?: EthQuery,
): Promise<string | undefined> {
return await safelyExecuteWithTimeout(async () => {
assert(ethQuery, 'Provider not set.');
return await query(ethQuery, 'getBalance', [address]);
});
}
/**
* Sync accounts balances with some additional addresses.
*
* @param addresses - the additional addresses, may be hardware wallet addresses.
* @param networkClientId - Optional networkClientId to fetch a network client with.
* @returns accounts - addresses with synced balance
*/
async syncBalanceWithAddresses(
addresses: string[],
networkClientId?: NetworkClientId,
): Promise<
Record<string, { balance: string; stakedBalance?: StakedBalance }>
> {
const { ethQuery } = this.#getCorrectNetworkClient(networkClientId);
return await Promise.all(
addresses.map(
(address): Promise<[string, string, StakedBalance] | undefined> => {
return safelyExecuteWithTimeout(async () => {
assert(ethQuery, 'Provider not set.');
const balance = await query(ethQuery, 'getBalance', [address]);
let stakedBalance: StakedBalance;
if (this.#includeStakedAssets) {
stakedBalance = await this.#getStakedBalanceForChain(
address,
networkClientId,
);
}
return [address, balance, stakedBalance];
});
},
),
).then((value) => {
return value.reduce((obj, item) => {
if (!item) {
return obj;
}
const [address, balance, stakedBalance] = item;
return {
...obj,
[address]: {
balance,
stakedBalance,
},
};
}, {});
});
}
}
export default AccountTrackerController;