@metamask-previews/earn-controller 0.14.0-preview-3c144344 → 0.14.0-preview-2723071f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +0 -30
- package/dist/EarnController.cjs +91 -438
- package/dist/EarnController.cjs.map +1 -1
- package/dist/EarnController.d.cts +25 -224
- package/dist/EarnController.d.cts.map +1 -1
- package/dist/EarnController.d.mts +25 -224
- package/dist/EarnController.d.mts.map +1 -1
- package/dist/EarnController.mjs +92 -439
- package/dist/EarnController.mjs.map +1 -1
- package/dist/index.cjs +1 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -3
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1 -3
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +0 -2
- package/dist/index.mjs.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +0 -8
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +0 -8
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs.map +1 -1
- package/package.json +3 -5
- package/dist/selectors.cjs +0 -106
- package/dist/selectors.cjs.map +0 -1
- package/dist/selectors.d.cts +0 -1484
- package/dist/selectors.d.cts.map +0 -1
- package/dist/selectors.d.mts +0 -1484
- package/dist/selectors.d.mts.map +0 -1
- package/dist/selectors.mjs +0 -97
- package/dist/selectors.mjs.map +0 -1
@@ -2,64 +2,36 @@ import type { AccountsControllerGetSelectedAccountAction, AccountsControllerSele
|
|
2
2
|
import type { ControllerGetStateAction, ControllerStateChangeEvent, RestrictedMessenger } from "@metamask/base-controller";
|
3
3
|
import { BaseController } from "@metamask/base-controller";
|
4
4
|
import type { NetworkControllerGetNetworkClientByIdAction, NetworkControllerGetStateAction, NetworkControllerStateChangeEvent } from "@metamask/network-controller";
|
5
|
-
import { type
|
6
|
-
import { type
|
7
|
-
import type {
|
5
|
+
import { type PooledStake, type VaultData, type VaultDailyApy, type VaultApyAverages } from "@metamask/stake-sdk";
|
6
|
+
import { type TransactionControllerTransactionConfirmedEvent } from "@metamask/transaction-controller";
|
7
|
+
import type { RefreshPooledStakesOptions, RefreshPooledStakingDataOptions, RefreshStakingEligibilityOptions } from "./types.mjs";
|
8
8
|
export declare const controllerName = "EarnController";
|
9
9
|
export type PooledStakingState = {
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
vaultApyAverages: VaultApyAverages;
|
16
|
-
};
|
10
|
+
pooledStakes: PooledStake;
|
11
|
+
exchangeRate: string;
|
12
|
+
vaultMetadata: VaultData;
|
13
|
+
vaultDailyApys: VaultDailyApy[];
|
14
|
+
vaultApyAverages: VaultApyAverages;
|
17
15
|
isEligible: boolean;
|
18
16
|
};
|
19
|
-
export type
|
20
|
-
|
21
|
-
marketAddress: string;
|
22
|
-
protocol: string;
|
17
|
+
export type StablecoinLendingState = {
|
18
|
+
vaults: StablecoinVault[];
|
23
19
|
};
|
24
|
-
export type
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
markets: LendingMarket[];
|
34
|
-
positions: LendingPositionWithMarketReference[];
|
35
|
-
isEligible: boolean;
|
20
|
+
export type StablecoinVault = {
|
21
|
+
symbol: string;
|
22
|
+
name: string;
|
23
|
+
chainId: number;
|
24
|
+
tokenAddress: string;
|
25
|
+
vaultAddress: string;
|
26
|
+
currentAPY: string;
|
27
|
+
supply: string;
|
28
|
+
liquidity: string;
|
36
29
|
};
|
37
30
|
export type EarnControllerState = {
|
38
31
|
pooled_staking: PooledStakingState;
|
39
|
-
|
32
|
+
stablecoin_lending?: StablecoinLendingState;
|
40
33
|
lastUpdated: number;
|
41
34
|
};
|
42
|
-
export declare const DEFAULT_LENDING_MARKET: LendingMarket;
|
43
|
-
export declare const DEFAULT_LENDING_POSITION: LendingPositionWithMarketReference;
|
44
|
-
export declare const DEFAULT_POOLED_STAKING_VAULT_APY_AVERAGES: VaultApyAverages;
|
45
|
-
export declare const DEFAULT_POOLED_STAKING_CHAIN_STATE: {
|
46
|
-
pooledStakes: {
|
47
|
-
account: string;
|
48
|
-
lifetimeRewards: string;
|
49
|
-
assets: string;
|
50
|
-
exitRequests: never[];
|
51
|
-
};
|
52
|
-
exchangeRate: string;
|
53
|
-
vaultMetadata: {
|
54
|
-
apy: string;
|
55
|
-
capacity: string;
|
56
|
-
feePercent: number;
|
57
|
-
totalAssets: string;
|
58
|
-
vaultAddress: string;
|
59
|
-
};
|
60
|
-
vaultDailyApys: never[];
|
61
|
-
vaultApyAverages: VaultApyAverages;
|
62
|
-
};
|
63
35
|
/**
|
64
36
|
* Gets the default state for the EarnController.
|
65
37
|
*
|
@@ -100,11 +72,9 @@ export type EarnControllerMessenger = RestrictedMessenger<typeof controllerName,
|
|
100
72
|
*/
|
101
73
|
export declare class EarnController extends BaseController<typeof controllerName, EarnControllerState, EarnControllerMessenger> {
|
102
74
|
#private;
|
103
|
-
constructor({ messenger, state,
|
75
|
+
constructor({ messenger, state, }: {
|
104
76
|
messenger: EarnControllerMessenger;
|
105
77
|
state?: Partial<EarnControllerState>;
|
106
|
-
addTransactionFn: typeof TransactionController.prototype.addTransaction;
|
107
|
-
env?: EarnEnvironments;
|
108
78
|
});
|
109
79
|
/**
|
110
80
|
* Refreshes the pooled stakes data for the current account.
|
@@ -114,10 +84,9 @@ export declare class EarnController extends BaseController<typeof controllerName
|
|
114
84
|
* @param options - Optional arguments
|
115
85
|
* @param [options.resetCache] - Control whether the BE cache should be invalidated (optional).
|
116
86
|
* @param [options.address] - The address to refresh pooled stakes for (optional).
|
117
|
-
* @param [options.chainId] - The chain id to refresh pooled stakes for (optional).
|
118
87
|
* @returns A promise that resolves when the stakes data has been updated
|
119
88
|
*/
|
120
|
-
refreshPooledStakes({ resetCache, address,
|
89
|
+
refreshPooledStakes({ resetCache, address, }?: RefreshPooledStakesOptions): Promise<void>;
|
121
90
|
/**
|
122
91
|
* Refreshes the staking eligibility status for the current account.
|
123
92
|
* Updates the eligibility status in the controller state based on the location and address blocklist for compliance.
|
@@ -132,28 +101,25 @@ export declare class EarnController extends BaseController<typeof controllerName
|
|
132
101
|
* Updates the vault metadata in the controller state including APY, capacity,
|
133
102
|
* fee percentage, total assets, and vault address.
|
134
103
|
*
|
135
|
-
* @param chainId - The chain id to refresh pooled staking vault metadata for (optional).
|
136
104
|
* @returns A promise that resolves when the vault metadata has been updated
|
137
105
|
*/
|
138
|
-
refreshPooledStakingVaultMetadata(
|
106
|
+
refreshPooledStakingVaultMetadata(): Promise<void>;
|
139
107
|
/**
|
140
108
|
* Refreshes pooled staking vault daily apys for the current chain.
|
141
109
|
* Updates the pooled staking vault daily apys controller state.
|
142
110
|
*
|
143
|
-
* @param chainId - The chain id to refresh pooled staking vault daily apys for (optional).
|
144
111
|
* @param days - The number of days to fetch pooled staking vault daily apys for (defaults to 365).
|
145
112
|
* @param order - The order in which to fetch pooled staking vault daily apys. Descending order fetches the latest N days (latest working backwards). Ascending order fetches the oldest N days (oldest working forwards) (defaults to 'desc').
|
146
113
|
* @returns A promise that resolves when the pooled staking vault daily apys have been updated.
|
147
114
|
*/
|
148
|
-
refreshPooledStakingVaultDailyApys(
|
115
|
+
refreshPooledStakingVaultDailyApys(days?: number, order?: 'asc' | 'desc'): Promise<void>;
|
149
116
|
/**
|
150
117
|
* Refreshes pooled staking vault apy averages for the current chain.
|
151
118
|
* Updates the pooled staking vault apy averages controller state.
|
152
119
|
*
|
153
|
-
* @param chainId - The chain id to refresh pooled staking vault apy averages for (optional).
|
154
120
|
* @returns A promise that resolves when the pooled staking vault apy averages have been updated.
|
155
121
|
*/
|
156
|
-
refreshPooledStakingVaultApyAverages(
|
122
|
+
refreshPooledStakingVaultApyAverages(): Promise<void>;
|
157
123
|
/**
|
158
124
|
* Refreshes all pooled staking related data including stakes, eligibility, and vault data.
|
159
125
|
* This method allows partial success, meaning some data may update while other requests fail.
|
@@ -166,170 +132,5 @@ export declare class EarnController extends BaseController<typeof controllerName
|
|
166
132
|
* @throws {Error} If any of the refresh operations fail, with concatenated error messages
|
167
133
|
*/
|
168
134
|
refreshPooledStakingData({ resetCache, address, }?: RefreshPooledStakingDataOptions): Promise<void>;
|
169
|
-
/**
|
170
|
-
* Refreshes the lending markets data for all chains.
|
171
|
-
* Updates the lending markets in the controller state.
|
172
|
-
*
|
173
|
-
* @returns A promise that resolves when the lending markets have been updated
|
174
|
-
*/
|
175
|
-
refreshLendingMarkets(): Promise<void>;
|
176
|
-
/**
|
177
|
-
* Refreshes the lending positions for the current account.
|
178
|
-
* Updates the lending positions in the controller state.
|
179
|
-
*
|
180
|
-
* @param options - Optional arguments
|
181
|
-
* @param [options.address] - The address to refresh lending positions for (optional).
|
182
|
-
* @returns A promise that resolves when the lending positions have been updated
|
183
|
-
*/
|
184
|
-
refreshLendingPositions({ address, }?: RefreshLendingPositionsOptions): Promise<void>;
|
185
|
-
/**
|
186
|
-
* Refreshes the lending eligibility status for the current account.
|
187
|
-
* Updates the eligibility status in the controller state based on the location and address blocklist for compliance.
|
188
|
-
*
|
189
|
-
* @param options - Optional arguments
|
190
|
-
* @param [options.address] - The address to refresh lending eligibility for (optional).
|
191
|
-
* @returns A promise that resolves when the eligibility status has been updated
|
192
|
-
*/
|
193
|
-
refreshLendingEligibility({ address, }?: RefreshLendingEligibilityOptions): Promise<void>;
|
194
|
-
/**
|
195
|
-
* Refreshes all lending related data including markets, positions, and eligibility.
|
196
|
-
* This method allows partial success, meaning some data may update while other requests fail.
|
197
|
-
* All errors are collected and thrown as a single error message.
|
198
|
-
*
|
199
|
-
* @returns A promise that resolves when all possible data has been updated
|
200
|
-
* @throws {Error} If any of the refresh operations fail, with concatenated error messages
|
201
|
-
*/
|
202
|
-
refreshLendingData(): Promise<void>;
|
203
|
-
/**
|
204
|
-
* Gets the lending position history for the current account.
|
205
|
-
*
|
206
|
-
* @param options - Optional arguments
|
207
|
-
* @param [options.address] - The address to get lending position history for (optional).
|
208
|
-
* @param [options.chainId] - The chain id to get lending position history for (optional).
|
209
|
-
* @param [options.positionId] - The position id to get lending position history for.
|
210
|
-
* @param [options.marketId] - The market id to get lending position history for.
|
211
|
-
* @param [options.marketAddress] - The market address to get lending position history for.
|
212
|
-
* @param [options.protocol] - The protocol to get lending position history for.
|
213
|
-
* @param [options.days] - The number of days to get lending position history for (optional).
|
214
|
-
* @returns A promise that resolves when the lending position history has been updated
|
215
|
-
*/
|
216
|
-
getLendingPositionHistory({ address, chainId, positionId, marketId, marketAddress, protocol, days, }: {
|
217
|
-
address?: string;
|
218
|
-
chainId?: number;
|
219
|
-
positionId: string;
|
220
|
-
marketId: string;
|
221
|
-
marketAddress: string;
|
222
|
-
protocol: string;
|
223
|
-
days?: number;
|
224
|
-
}): never[] | Promise<import("@metamask/stake-sdk").LendingPositionHistory[]>;
|
225
|
-
/**
|
226
|
-
* Gets the lending market daily apys and averages for the current chain.
|
227
|
-
*
|
228
|
-
* @param options - Optional arguments
|
229
|
-
* @param [options.chainId] - The chain id to get lending market daily apys and averages for (optional).
|
230
|
-
* @param [options.protocol] - The protocol to get lending market daily apys and averages for.
|
231
|
-
* @param [options.marketId] - The market id to get lending market daily apys and averages for.
|
232
|
-
* @param [options.days] - The number of days to get lending market daily apys and averages for (optional).
|
233
|
-
* @returns A promise that resolves when the lending market daily apys and averages have been updated
|
234
|
-
*/
|
235
|
-
getLendingMarketDailyApysAndAverages({ chainId, protocol, marketId, days, }: {
|
236
|
-
chainId?: number;
|
237
|
-
protocol: string;
|
238
|
-
marketId: string;
|
239
|
-
days?: number;
|
240
|
-
}): Promise<HistoricLendingMarketApys> | undefined;
|
241
|
-
/**
|
242
|
-
* Executes a lending deposit transaction.
|
243
|
-
*
|
244
|
-
* @param options - The options for the lending deposit transaction.
|
245
|
-
* @param options.amount - The amount to deposit.
|
246
|
-
* @param options.protocol - The protocol of the lending market.
|
247
|
-
* @param options.underlyingTokenAddress - The address of the underlying token.
|
248
|
-
* @param options.gasOptions - The gas options for the transaction.
|
249
|
-
* @param options.gasOptions.gasLimit - The gas limit for the transaction.
|
250
|
-
* @param options.gasOptions.gasBufferPct - The gas buffer percentage for the transaction.
|
251
|
-
* @param options.txOptions - The transaction options for the transaction.
|
252
|
-
* @returns A promise that resolves to the transaction hash.
|
253
|
-
*/
|
254
|
-
executeLendingDeposit({ amount, protocol, underlyingTokenAddress, gasOptions, txOptions, }: {
|
255
|
-
amount: string;
|
256
|
-
protocol: LendingMarket['protocol'];
|
257
|
-
underlyingTokenAddress: string;
|
258
|
-
gasOptions: {
|
259
|
-
gasLimit?: GasLimitParams;
|
260
|
-
gasBufferPct?: number;
|
261
|
-
};
|
262
|
-
txOptions: Parameters<typeof TransactionController.prototype.addTransaction>[1];
|
263
|
-
}): Promise<import("@metamask/transaction-controller").Result>;
|
264
|
-
/**
|
265
|
-
* Executes a lending withdraw transaction.
|
266
|
-
*
|
267
|
-
* @param options - The options for the lending withdraw transaction.
|
268
|
-
* @param options.amount - The amount to withdraw.
|
269
|
-
* @param options.protocol - The protocol of the lending market.
|
270
|
-
* @param options.underlyingTokenAddress - The address of the underlying token.
|
271
|
-
* @param options.gasOptions - The gas options for the transaction.
|
272
|
-
* @param options.gasOptions.gasLimit - The gas limit for the transaction.
|
273
|
-
* @param options.gasOptions.gasBufferPct - The gas buffer percentage for the transaction.
|
274
|
-
* @param options.txOptions - The transaction options for the transaction.
|
275
|
-
* @returns A promise that resolves to the transaction hash.
|
276
|
-
*/
|
277
|
-
executeLendingWithdraw({ amount, protocol, underlyingTokenAddress, gasOptions, txOptions, }: {
|
278
|
-
amount: string;
|
279
|
-
protocol: LendingMarket['protocol'];
|
280
|
-
underlyingTokenAddress: string;
|
281
|
-
gasOptions: {
|
282
|
-
gasLimit?: GasLimitParams;
|
283
|
-
gasBufferPct?: number;
|
284
|
-
};
|
285
|
-
txOptions: Parameters<typeof TransactionController.prototype.addTransaction>[1];
|
286
|
-
}): Promise<import("@metamask/transaction-controller").Result>;
|
287
|
-
/**
|
288
|
-
* Executes a lending token approve transaction.
|
289
|
-
*
|
290
|
-
* @param options - The options for the lending token approve transaction.
|
291
|
-
* @param options.amount - The amount to approve.
|
292
|
-
* @param options.protocol - The protocol of the lending market.
|
293
|
-
* @param options.underlyingTokenAddress - The address of the underlying token.
|
294
|
-
* @param options.gasOptions - The gas options for the transaction.
|
295
|
-
* @param options.gasOptions.gasLimit - The gas limit for the transaction.
|
296
|
-
* @param options.gasOptions.gasBufferPct - The gas buffer percentage for the transaction.
|
297
|
-
* @param options.txOptions - The transaction options for the transaction.
|
298
|
-
* @returns A promise that resolves to the transaction hash.
|
299
|
-
*/
|
300
|
-
executeLendingTokenApprove({ protocol, amount, underlyingTokenAddress, gasOptions, txOptions, }: {
|
301
|
-
protocol: LendingMarket['protocol'];
|
302
|
-
amount: string;
|
303
|
-
underlyingTokenAddress: string;
|
304
|
-
gasOptions: {
|
305
|
-
gasLimit?: GasLimitParams;
|
306
|
-
gasBufferPct?: number;
|
307
|
-
};
|
308
|
-
txOptions: Parameters<typeof TransactionController.prototype.addTransaction>[1];
|
309
|
-
}): Promise<import("@metamask/transaction-controller").Result>;
|
310
|
-
/**
|
311
|
-
* Gets the allowance for a lending token.
|
312
|
-
*
|
313
|
-
* @param protocol - The protocol of the lending market.
|
314
|
-
* @param underlyingTokenAddress - The address of the underlying token.
|
315
|
-
* @returns A promise that resolves to the allowance.
|
316
|
-
*/
|
317
|
-
getLendingTokenAllowance(protocol: LendingMarket['protocol'], underlyingTokenAddress: string): Promise<import("@ethersproject/bignumber").BigNumber | undefined>;
|
318
|
-
/**
|
319
|
-
* Gets the maximum withdraw amount for a lending token's output token or shares if no output token.
|
320
|
-
*
|
321
|
-
* @param protocol - The protocol of the lending market.
|
322
|
-
* @param underlyingTokenAddress - The address of the underlying token.
|
323
|
-
* @returns A promise that resolves to the maximum withdraw amount.
|
324
|
-
*/
|
325
|
-
getLendingTokenMaxWithdraw(protocol: LendingMarket['protocol'], underlyingTokenAddress: string): Promise<import("@ethersproject/bignumber").BigNumber | undefined>;
|
326
|
-
/**
|
327
|
-
* Gets the maximum deposit amount for a lending token.
|
328
|
-
*
|
329
|
-
* @param protocol - The protocol of the lending market.
|
330
|
-
* @param underlyingTokenAddress - The address of the underlying token.
|
331
|
-
* @returns A promise that resolves to the maximum deposit amount.
|
332
|
-
*/
|
333
|
-
getLendingTokenMaxDeposit(protocol: LendingMarket['protocol'], underlyingTokenAddress: string): Promise<import("@ethersproject/bignumber").BigNumber | undefined>;
|
334
135
|
}
|
335
136
|
//# sourceMappingURL=EarnController.d.mts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"EarnController.d.mts","sourceRoot":"","sources":["../src/EarnController.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,0CAA0C,EAC1C,4CAA4C,EAC7C,sCAAsC;AACvC,OAAO,KAAK,EACV,wBAAwB,EACxB,0BAA0B,EAC1B,mBAAmB,EAEpB,kCAAkC;AACnC,OAAO,EAAE,cAAc,EAAE,kCAAkC;AAE3D,OAAO,KAAK,EACV,2CAA2C,EAC3C,+BAA+B,EAC/B,iCAAiC,EAClC,qCAAqC;AACtC,OAAO,
|
1
|
+
{"version":3,"file":"EarnController.d.mts","sourceRoot":"","sources":["../src/EarnController.ts"],"names":[],"mappings":"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"}
|