forked from MetaMask/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCurrencyRateController.ts
291 lines (260 loc) · 8.13 KB
/
CurrencyRateController.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
import { Mutex } from 'async-mutex';
import type { Patch } from 'immer';
import {
BaseControllerV2,
RestrictedControllerMessenger,
} from '@metamask/base-controller';
import {
TESTNET_TICKER_SYMBOLS,
FALL_BACK_VS_CURRENCY,
safelyExecute,
} from '@metamask/controller-utils';
import { fetchExchangeRate as defaultFetchExchangeRate } from './crypto-compare';
/**
* @type CurrencyRateState
* @property conversionDate - Timestamp of conversion rate expressed in ms since UNIX epoch
* @property conversionRate - Conversion rate from current base asset to the current currency
* @property currentCurrency - Currently-active ISO 4217 currency code
* @property nativeCurrency - Symbol for the base asset used for conversion
* @property pendingCurrentCurrency - The currency being switched to
* @property pendingNativeCurrency - The base asset currency being switched to
* @property usdConversionRate - Conversion rate from usd to the current currency
*/
export type CurrencyRateState = {
conversionDate: number | null;
conversionRate: number | null;
currentCurrency: string;
nativeCurrency: string;
pendingCurrentCurrency: string | null;
pendingNativeCurrency: string | null;
usdConversionRate: number | null;
};
const name = 'CurrencyRateController';
export type CurrencyRateStateChange = {
type: `${typeof name}:stateChange`;
payload: [CurrencyRateState, Patch[]];
};
export type GetCurrencyRateState = {
type: `${typeof name}:getState`;
handler: () => CurrencyRateState;
};
type CurrencyRateMessenger = RestrictedControllerMessenger<
typeof name,
GetCurrencyRateState,
CurrencyRateStateChange,
never,
never
>;
const metadata = {
conversionDate: { persist: true, anonymous: true },
conversionRate: { persist: true, anonymous: true },
currentCurrency: { persist: true, anonymous: true },
nativeCurrency: { persist: true, anonymous: true },
pendingCurrentCurrency: { persist: false, anonymous: true },
pendingNativeCurrency: { persist: false, anonymous: true },
usdConversionRate: { persist: true, anonymous: true },
};
const defaultState = {
conversionDate: 0,
conversionRate: 0,
currentCurrency: 'usd',
nativeCurrency: 'ETH',
pendingCurrentCurrency: null,
pendingNativeCurrency: null,
usdConversionRate: null,
};
/**
* Controller that passively polls on a set interval for an exchange rate from the current network
* asset to the user's preferred currency.
*/
export class CurrencyRateController extends BaseControllerV2<
typeof name,
CurrencyRateState,
CurrencyRateMessenger
> {
private mutex = new Mutex();
private intervalId?: ReturnType<typeof setTimeout>;
private intervalDelay;
private fetchExchangeRate;
private includeUsdRate;
/**
* A boolean that controls whether or not network requests can be made by the controller
*/
#enabled;
/**
* Creates a CurrencyRateController instance.
*
* @param options - Constructor options.
* @param options.includeUsdRate - Keep track of the USD rate in addition to the current currency rate.
* @param options.interval - The polling interval, in milliseconds.
* @param options.messenger - A reference to the messaging system.
* @param options.state - Initial state to set on this controller.
* @param options.fetchExchangeRate - Fetches the exchange rate from an external API. This option is primarily meant for use in unit tests.
*/
constructor({
includeUsdRate = false,
interval = 180000,
messenger,
state,
fetchExchangeRate = defaultFetchExchangeRate,
}: {
includeUsdRate?: boolean;
interval?: number;
messenger: CurrencyRateMessenger;
state?: Partial<CurrencyRateState>;
fetchExchangeRate?: typeof defaultFetchExchangeRate;
}) {
super({
name,
metadata,
messenger,
state: { ...defaultState, ...state },
});
this.includeUsdRate = includeUsdRate;
this.intervalDelay = interval;
this.fetchExchangeRate = fetchExchangeRate;
this.#enabled = false;
}
/**
* Start polling for the currency rate.
*/
async start() {
this.#enabled = true;
await this.startPolling();
}
/**
* Stop polling for the currency rate.
*/
stop() {
this.#enabled = false;
this.stopPolling();
}
/**
* Prepare to discard this controller.
*
* This stops any active polling.
*/
override destroy() {
super.destroy();
this.stopPolling();
}
/**
* Sets a currency to track.
*
* @param currentCurrency - ISO 4217 currency code.
*/
async setCurrentCurrency(currentCurrency: string) {
this.update((state) => {
state.pendingCurrentCurrency = currentCurrency;
});
await this.updateExchangeRate();
}
/**
* Sets a new native currency.
*
* @param symbol - Symbol for the base asset.
*/
async setNativeCurrency(symbol: string) {
this.update((state) => {
state.pendingNativeCurrency = symbol;
});
await this.updateExchangeRate();
}
private stopPolling() {
if (this.intervalId) {
clearInterval(this.intervalId);
}
}
/**
* Starts a new polling interval.
*/
private async startPolling(): Promise<void> {
this.stopPolling();
// TODO: Expose polling currency rate update errors
await safelyExecute(async () => await this.updateExchangeRate());
this.intervalId = setInterval(async () => {
await safelyExecute(async () => await this.updateExchangeRate());
}, this.intervalDelay);
}
/**
* Updates exchange rate for the current currency.
*
* @returns The controller state.
*/
async updateExchangeRate(): Promise<CurrencyRateState | void> {
if (!this.#enabled) {
console.info(
'[CurrencyRateController] Not updating exchange rate since network requests have been disabled',
);
return this.state;
}
const releaseLock = await this.mutex.acquire();
const {
currentCurrency: stateCurrentCurrency,
nativeCurrency: stateNativeCurrency,
pendingCurrentCurrency,
pendingNativeCurrency,
} = this.state;
let conversionDate: number | null = null;
let conversionRate: number | null = null;
let usdConversionRate: number | null = null;
const currentCurrency = pendingCurrentCurrency ?? stateCurrentCurrency;
const nativeCurrency = pendingNativeCurrency ?? stateNativeCurrency;
// For preloaded testnets (Goerli, Sepolia) we want to fetch exchange rate for real ETH.
const nativeCurrencyForExchangeRate = Object.values(
TESTNET_TICKER_SYMBOLS,
).includes(nativeCurrency)
? FALL_BACK_VS_CURRENCY // ETH
: nativeCurrency;
try {
if (
currentCurrency &&
nativeCurrency &&
// if either currency is an empty string we can skip the comparison
// because it will result in an error from the api and ultimately
// a null conversionRate either way.
currentCurrency !== '' &&
nativeCurrency !== ''
) {
const fetchExchangeRateResponse = await this.fetchExchangeRate(
currentCurrency,
nativeCurrencyForExchangeRate,
this.includeUsdRate,
);
conversionRate = fetchExchangeRateResponse.conversionRate;
usdConversionRate = fetchExchangeRateResponse.usdConversionRate;
conversionDate = Date.now() / 1000;
}
} catch (error) {
if (
!(
error instanceof Error &&
error.message.includes('market does not exist for this coin pair')
)
) {
throw error;
}
} finally {
try {
this.update(() => {
return {
conversionDate,
conversionRate,
// we currently allow and handle an empty string as a valid nativeCurrency
// in cases where a user has not entered a native ticker symbol for a custom network
// currentCurrency is not from user input but this protects us from unexpected changes.
nativeCurrency,
currentCurrency,
pendingCurrentCurrency: null,
pendingNativeCurrency: null,
usdConversionRate,
};
});
} finally {
releaseLock();
}
}
return this.state;
}
}
export default CurrencyRateController;