forked from MetaMask/core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCurrencyRateController.ts
More file actions
245 lines (222 loc) · 6.89 KB
/
CurrencyRateController.ts
File metadata and controls
245 lines (222 loc) · 6.89 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
import type {
RestrictedControllerMessenger,
ControllerGetStateAction,
ControllerStateChangeEvent,
} from '@metamask/base-controller';
import {
TESTNET_TICKER_SYMBOLS,
FALL_BACK_VS_CURRENCY,
} from '@metamask/controller-utils';
import type {
NetworkClientId,
NetworkControllerGetNetworkClientByIdAction,
} from '@metamask/network-controller';
import { StaticIntervalPollingController } from '@metamask/polling-controller';
import { Mutex } from 'async-mutex';
import { fetchExchangeRate as defaultFetchExchangeRate } from './crypto-compare-service';
/**
* @type CurrencyRateState
* @property currencyRates - Object keyed by native currency
* @property currencyRates.conversionDate - Timestamp of conversion rate expressed in ms since UNIX epoch
* @property currencyRates.conversionRate - Conversion rate from current base asset to the current currency
* @property currentCurrency - Currently-active ISO 4217 currency code
* @property usdConversionRate - Conversion rate from usd to the current currency
*/
export type CurrencyRateState = {
currentCurrency: string;
currencyRates: Record<
string,
{
conversionDate: number | null;
conversionRate: number | null;
usdConversionRate: number | null;
}
>;
};
const name = 'CurrencyRateController';
export type CurrencyRateStateChange = ControllerStateChangeEvent<
typeof name,
CurrencyRateState
>;
export type CurrencyRateControllerEvents = CurrencyRateStateChange;
export type GetCurrencyRateState = ControllerGetStateAction<
typeof name,
CurrencyRateState
>;
export type CurrencyRateControllerActions = GetCurrencyRateState;
type AllowedActions = NetworkControllerGetNetworkClientByIdAction;
type CurrencyRateMessenger = RestrictedControllerMessenger<
typeof name,
CurrencyRateControllerActions | AllowedActions,
CurrencyRateControllerEvents,
AllowedActions['type'],
never
>;
const metadata = {
currentCurrency: { persist: true, anonymous: true },
currencyRates: { persist: true, anonymous: true },
};
const defaultState = {
currentCurrency: 'usd',
currencyRates: {
ETH: {
conversionDate: 0,
conversionRate: 0,
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 StaticIntervalPollingController<
typeof name,
CurrencyRateState,
CurrencyRateMessenger
> {
private readonly mutex = new Mutex();
private readonly fetchExchangeRate;
private readonly includeUsdRate;
/**
* 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.setIntervalLength(interval);
this.fetchExchangeRate = fetchExchangeRate;
}
/**
* Sets a currency to track.
*
* @param currentCurrency - ISO 4217 currency code.
*/
async setCurrentCurrency(currentCurrency: string) {
const releaseLock = await this.mutex.acquire();
const nativeCurrencies = Object.keys(this.state.currencyRates);
try {
this.update(() => {
return {
...defaultState,
currentCurrency,
};
});
} finally {
releaseLock();
}
nativeCurrencies.forEach(this.updateExchangeRate.bind(this));
}
/**
* Updates the exchange rate for the current currency and native currency pair.
*
* @param nativeCurrency - The ticker symbol for the chain.
*/
async updateExchangeRate(nativeCurrency: string): Promise<void> {
const releaseLock = await this.mutex.acquire();
const { currentCurrency, currencyRates } = this.state;
let conversionDate: number | null = null;
let conversionRate: number | null = null;
let usdConversionRate: number | null = null;
// 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 {
currencyRates: {
...currencyRates,
[nativeCurrency]: {
conversionDate,
conversionRate,
usdConversionRate,
},
},
currentCurrency,
};
});
} finally {
releaseLock();
}
}
}
/**
* Prepare to discard this controller.
*
* This stops any active polling.
*/
override destroy() {
super.destroy();
this.stopAllPolling();
}
/**
* Updates exchange rate for the current currency.
*
* @param networkClientId - The network client ID used to get a ticker value.
* @returns The controller state.
*/
async _executePoll(networkClientId: NetworkClientId): Promise<void> {
const networkClient = this.messagingSystem.call(
'NetworkController:getNetworkClientById',
networkClientId,
);
await this.updateExchangeRate(networkClient.configuration.ticker);
}
}
export default CurrencyRateController;