-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathAssetsService.ts
More file actions
350 lines (301 loc) · 11.4 KB
/
Copy pathAssetsService.ts
File metadata and controls
350 lines (301 loc) · 11.4 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
import type { Balance } from '@metamask/keyring-api';
import { KeyringEvent } from '@metamask/keyring-api';
import { emitSnapKeyringEvent } from '@metamask/keyring-snap-sdk';
import type { CaipAssetType } from '@metamask/utils';
import { Duration, parseCaipAssetType } from '@metamask/utils';
import { TOKEN_PROGRAM_ADDRESS } from '@solana-program/token';
import type { Address } from '@solana/kit';
import { address as asAddress } from '@solana/kit';
import { map, uniq } from 'lodash';
import type { SolanaKeyringAccount } from '../../../entities';
import type { ICache } from '../../caching/ICache';
import { useCache } from '../../caching/useCache';
import {
Network,
SolanaCaip19Tokens,
TOKEN_2022_PROGRAM_ADDRESS,
} from '../../constants/solana';
import type {
GetTokenAccountsByOwnerResponse,
TokenAccountInfoWithJsonData,
} from '../../sdk-extensions/rpc-api';
import type { Serializable } from '../../serialization/types';
import { diffArrays } from '../../utils/diffArrays';
import { diffObjects } from '../../utils/diffObjects';
import { fromTokenUnits } from '../../utils/fromTokenUnit';
import { getNetworkFromToken } from '../../utils/getNetworkFromToken';
import type { ILogger } from '../../utils/logger';
import { tokenAddressToCaip19 } from '../../utils/tokenAddressToCaip19';
import type { ConfigProvider } from '../config';
import type { SolanaConnection } from '../connection';
import type { IStateManager } from '../state/IStateManager';
import type { UnencryptedStateValue } from '../state/State';
import type { TokenMetadataService } from '../token-metadata/TokenMetadata';
/**
* Extends a token account as returned by the `getTokenAccountsByOwner` RPC method with the scope and the caip-19 asset type for convenience.
*/
type TokenAccountWithMetadata =
GetTokenAccountsByOwnerResponse<TokenAccountInfoWithJsonData>[number] & {
scope: Network;
assetType: CaipAssetType;
} & Serializable;
export class AssetsService {
readonly #logger: ILogger;
readonly #connection: SolanaConnection;
readonly #configProvider: ConfigProvider;
readonly #state: IStateManager<UnencryptedStateValue>;
readonly #tokenMetadataService: TokenMetadataService;
readonly #cache: ICache<Serializable>;
public static readonly cacheTtlsMilliseconds = {
tokenAccountsByOwner: 5 * Duration.Second,
};
constructor({
connection,
logger,
configProvider,
state,
tokenMetadataService,
cache,
}: {
connection: SolanaConnection;
logger: ILogger;
configProvider: ConfigProvider;
state: IStateManager<UnencryptedStateValue>;
tokenMetadataService: TokenMetadataService;
cache: ICache<Serializable>;
}) {
this.#logger = logger;
this.#connection = connection;
this.#configProvider = configProvider;
this.#state = state;
this.#tokenMetadataService = tokenMetadataService;
this.#cache = cache;
}
/**
* Fetches and returns the list of assets for the given account in all Solana networks. Includes native and token assets.
*
* @param account - The account to get the assets for.
* @returns CAIP-19 assets ids.
*/
async listAccountAssets(
account: SolanaKeyringAccount,
): Promise<CaipAssetType[]> {
const { activeNetworks } = this.#configProvider.get();
const nativeAssetTypes = activeNetworks.map(
(network) => `${network}/${SolanaCaip19Tokens.SOL}` as CaipAssetType,
);
const tokenAssetTypes = (
await this.#getTokenAccountsByOwnerMultiple(
asAddress(account.address),
[TOKEN_PROGRAM_ADDRESS, TOKEN_2022_PROGRAM_ADDRESS],
activeNetworks,
)
).flatMap((response) => response.assetType);
return [...nativeAssetTypes, ...tokenAssetTypes];
}
/**
* Matrix-fetches all token accounts owned by the given address on the specified networks and program ids,
* and merges the results into a single array. Each individual token is augmented with the scope and the caip-19 asset type for convenience.
*
* It caches the results for each pair of scope and program id.
*
* @param owner - The owner of the token accounts.
* @param programIds - The program ids to fetch the token accounts for.
* @param scopes - The networks to fetch the token accounts for.
* @returns The token accounts augmented with the scope and the caip-19 asset type for convenience.
*/
async #getTokenAccountsByOwnerMultiple(
owner: Address,
programIds: Address[] = [TOKEN_PROGRAM_ADDRESS, TOKEN_2022_PROGRAM_ADDRESS],
scopes: Network[] = [Network.Mainnet],
): Promise<TokenAccountWithMetadata[]> {
if (programIds.length === 0 || scopes.length === 0) {
return [];
}
// Create all pairs of scope and program id
const pairs = scopes.flatMap((scope) =>
programIds.map((programId) => ({ scope, programId })),
);
const getTokenAccountsByOwnerCached = useCache<
[Address, Address, Network],
TokenAccountWithMetadata[]
>(this.#getTokenAccountsByOwner.bind(this), this.#cache, {
functionName: 'AssetsService:getTokenAccountsByOwner',
ttlMilliseconds: AssetsService.cacheTtlsMilliseconds.tokenAccountsByOwner,
});
const responses = await Promise.all(
pairs.map(async ({ scope, programId }) => {
const response = await getTokenAccountsByOwnerCached(
owner,
programId,
scope,
);
return response;
}),
);
return responses.flat();
}
/**
* Fetches the token accounts for the given owner and program id on the specified scope.
*
* @param owner - The owner of the token accounts.
* @param programId - The program id to fetch the token accounts for.
* @param scope - The scope to fetch the token accounts for.
* @returns The token accounts augmented with the scope and the caip-19 asset type for convenience.
*/
async #getTokenAccountsByOwner(
owner: Address,
programId: Address = TOKEN_PROGRAM_ADDRESS,
scope: Network = Network.Mainnet,
): Promise<TokenAccountWithMetadata[]> {
const response = await this.#connection
.getRpc(scope)
.getTokenAccountsByOwner(owner, { programId }, { encoding: 'jsonParsed' })
.send();
const tokens = response.value;
// Attach the scope and the caip-19 asset type to each token account for easier future reference
return tokens.map(
(token) =>
({
...token,
scope,
assetType: tokenAddressToCaip19(
scope,
token.account.data.parsed.info.mint,
),
}) as TokenAccountWithMetadata,
);
}
/**
* Fetches and returns the balances and metadata of the given account for the given assets.
*
* @param account - The account to get the balances for.
* @param assetTypes - The asset types to get the balances for (CAIP-19 ids).
* @returns The balances and metadata of the account for the given assets.
*/
async getAccountBalances(
account: SolanaKeyringAccount,
assetTypes: CaipAssetType[],
): Promise<Record<CaipAssetType, Balance>> {
const accountAddress = asAddress(account.address);
const tokensMetadata =
await this.#tokenMetadataService.getTokensMetadata(assetTypes);
const scopes = uniq(map(assetTypes, getNetworkFromToken));
const programIds = [TOKEN_PROGRAM_ADDRESS, TOKEN_2022_PROGRAM_ADDRESS];
const tokenAccounts = await this.#getTokenAccountsByOwnerMultiple(
accountAddress,
programIds,
scopes,
);
const balances: Record<CaipAssetType, Balance> = {};
// For each requested asset type, retrieve the balance and metadata, and store that in the balances object
const promises = assetTypes.map(async (assetType) => {
const { chainId } = parseCaipAssetType(assetType);
const isNative = assetType.endsWith(SolanaCaip19Tokens.SOL);
let balance: bigint;
if (isNative) {
balance = (
await this.#connection
.getRpc(chainId as Network)
.getBalance(accountAddress)
.send()
).value;
} else {
const tokenAccount = tokenAccounts.find(
(item: any) => item.assetType === assetType,
);
balance = tokenAccount
? BigInt(tokenAccount.account.data.parsed.info.tokenAmount.amount)
: BigInt(0); // If the user has no token account linked to a requested mint, default to 0
}
const metadata = tokensMetadata[assetType];
const amount = fromTokenUnits(balance, metadata?.units[0]?.decimals ?? 9);
balances[assetType] = { amount, unit: metadata?.symbol ?? 'UNKNOWN' };
});
await Promise.all(promises);
const previousAssets = await this.#state.getKey<
UnencryptedStateValue['assets']
>(`assets.${account.id}`);
const updatedAssets = {
...previousAssets,
...balances,
};
await this.#state.setKey(`assets.${account.id}`, updatedAssets);
return balances;
}
/**
* Fetches the assets for the given accounts and updates the state accordingly. Also emits events for any changes.
*
* @param accounts - The accounts to refresh the assets for.
*/
async refreshAssets(accounts: SolanaKeyringAccount[]): Promise<void> {
if (accounts.length === 0) {
this.#logger.info('[AssetsService] No accounts found');
return;
}
this.#logger.log(
`[AssetsService] Refreshing assets for ${accounts.length} accounts`,
);
const assets =
(await this.#state.getKey<UnencryptedStateValue['assets']>('assets')) ??
{};
for (const account of accounts) {
this.#logger.log(
`[AssetsService] Fetching all assets for ${account.address} in all networks`,
);
const accountAssets = await this.listAccountAssets(account);
const previousAssets = assets[account.id];
const previousCaip19Assets = Object.keys(
previousAssets ?? {},
) as CaipAssetType[];
const currentCaip19Assets = accountAssets ?? {};
// Check if account assets have changed
const {
added: assetsAdded,
deleted: assetsDeleted,
hasDiff: assetsChanged,
} = diffArrays(previousCaip19Assets, currentCaip19Assets);
if (assetsChanged) {
this.#logger.info(
{ assetsAdded, assetsDeleted, assetsChanged },
`[refreshAssets] Found updated assets for ${account.address}`,
);
await emitSnapKeyringEvent(snap, KeyringEvent.AccountAssetListUpdated, {
assets: {
[account.id]: {
added: assetsAdded,
removed: assetsDeleted,
},
},
});
}
const accountBalances = await this.getAccountBalances(
account,
accountAssets,
);
const previousBalances = assets[account.id];
// Check if balances have changed
const {
added: balancesAdded,
deleted: balancesDeleted,
changed: balancesChanged,
hasDiff: balancesHaveChange,
} = diffObjects(previousBalances ?? {}, accountBalances);
if (balancesHaveChange) {
this.#logger.info(
{ balancesAdded, balancesDeleted, balancesChanged },
`[BalancesService] Found updated balances for ${account.address}`,
);
await emitSnapKeyringEvent(snap, KeyringEvent.AccountBalancesUpdated, {
balances: {
[account.id]: {
...balancesAdded,
...balancesChanged,
},
},
});
await this.#state.setKey(`assets.${account.id}`, accountBalances);
}
}
}
}