@metamask-previews/earn-controller 0.14.0-preview-2e9de6b → 0.14.0-preview-7bb49dcb

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.
@@ -2,36 +2,64 @@ 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 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";
5
+ import { type LendingMarket, type PooledStake, type VaultData, type VaultDailyApy, type VaultApyAverages, type LendingPosition, type GasLimitParams } from "@metamask/stake-sdk";
6
+ import { type TransactionController, type TransactionControllerTransactionConfirmedEvent } from "@metamask/transaction-controller";
7
+ import type { RefreshLendingEligibilityOptions, RefreshLendingPositionsOptions, RefreshPooledStakesOptions, RefreshPooledStakingDataOptions, RefreshStakingEligibilityOptions } from "./types.mjs";
8
8
  export declare const controllerName = "EarnController";
9
9
  export type PooledStakingState = {
10
- pooledStakes: PooledStake;
11
- exchangeRate: string;
12
- vaultMetadata: VaultData;
13
- vaultDailyApys: VaultDailyApy[];
14
- vaultApyAverages: VaultApyAverages;
10
+ [chainId: number]: {
11
+ pooledStakes: PooledStake;
12
+ exchangeRate: string;
13
+ vaultMetadata: VaultData;
14
+ vaultDailyApys: VaultDailyApy[];
15
+ vaultApyAverages: VaultApyAverages;
16
+ };
15
17
  isEligible: boolean;
16
18
  };
17
- export type StablecoinLendingState = {
18
- vaults: StablecoinVault[];
19
+ export type LendingPositionWithMarket = LendingPosition & {
20
+ marketId: string;
21
+ marketAddress: string;
22
+ protocol: string;
19
23
  };
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;
24
+ export type LendingPositionWithMarketReference = Omit<LendingPosition, 'market'> & {
25
+ marketId: string;
26
+ marketAddress: string;
27
+ protocol: string;
28
+ };
29
+ export type LendingMarketWithPosition = LendingMarket & {
30
+ position: LendingPositionWithMarketReference;
31
+ };
32
+ export type LendingState = {
33
+ markets: LendingMarket[];
34
+ positions: LendingPositionWithMarketReference[];
35
+ isEligible: boolean;
29
36
  };
30
37
  export type EarnControllerState = {
31
38
  pooled_staking: PooledStakingState;
32
- stablecoin_lending?: StablecoinLendingState;
39
+ lending: LendingState;
33
40
  lastUpdated: number;
34
41
  };
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
+ };
35
63
  /**
36
64
  * Gets the default state for the EarnController.
37
65
  *
@@ -72,9 +100,10 @@ export type EarnControllerMessenger = RestrictedMessenger<typeof controllerName,
72
100
  */
73
101
  export declare class EarnController extends BaseController<typeof controllerName, EarnControllerState, EarnControllerMessenger> {
74
102
  #private;
75
- constructor({ messenger, state, }: {
103
+ constructor({ messenger, state, addTransactionFn, }: {
76
104
  messenger: EarnControllerMessenger;
77
105
  state?: Partial<EarnControllerState>;
106
+ addTransactionFn: typeof TransactionController.prototype.addTransaction;
78
107
  });
79
108
  /**
80
109
  * Refreshes the pooled stakes data for the current account.
@@ -84,9 +113,10 @@ export declare class EarnController extends BaseController<typeof controllerName
84
113
  * @param options - Optional arguments
85
114
  * @param [options.resetCache] - Control whether the BE cache should be invalidated (optional).
86
115
  * @param [options.address] - The address to refresh pooled stakes for (optional).
116
+ * @param [options.chainId] - The chain id to refresh pooled stakes for (optional).
87
117
  * @returns A promise that resolves when the stakes data has been updated
88
118
  */
89
- refreshPooledStakes({ resetCache, address, }?: RefreshPooledStakesOptions): Promise<void>;
119
+ refreshPooledStakes({ resetCache, address, chainId, }?: RefreshPooledStakesOptions): Promise<void>;
90
120
  /**
91
121
  * Refreshes the staking eligibility status for the current account.
92
122
  * Updates the eligibility status in the controller state based on the location and address blocklist for compliance.
@@ -101,25 +131,28 @@ export declare class EarnController extends BaseController<typeof controllerName
101
131
  * Updates the vault metadata in the controller state including APY, capacity,
102
132
  * fee percentage, total assets, and vault address.
103
133
  *
134
+ * @param chainId - The chain id to refresh pooled staking vault metadata for (optional).
104
135
  * @returns A promise that resolves when the vault metadata has been updated
105
136
  */
106
- refreshPooledStakingVaultMetadata(): Promise<void>;
137
+ refreshPooledStakingVaultMetadata(chainId?: number): Promise<void>;
107
138
  /**
108
139
  * Refreshes pooled staking vault daily apys for the current chain.
109
140
  * Updates the pooled staking vault daily apys controller state.
110
141
  *
142
+ * @param chainId - The chain id to refresh pooled staking vault daily apys for (optional).
111
143
  * @param days - The number of days to fetch pooled staking vault daily apys for (defaults to 365).
112
144
  * @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').
113
145
  * @returns A promise that resolves when the pooled staking vault daily apys have been updated.
114
146
  */
115
- refreshPooledStakingVaultDailyApys(days?: number, order?: 'asc' | 'desc'): Promise<void>;
147
+ refreshPooledStakingVaultDailyApys(chainId?: number, days?: number, order?: 'asc' | 'desc'): Promise<void>;
116
148
  /**
117
149
  * Refreshes pooled staking vault apy averages for the current chain.
118
150
  * Updates the pooled staking vault apy averages controller state.
119
151
  *
152
+ * @param chainId - The chain id to refresh pooled staking vault apy averages for (optional).
120
153
  * @returns A promise that resolves when the pooled staking vault apy averages have been updated.
121
154
  */
122
- refreshPooledStakingVaultApyAverages(): Promise<void>;
155
+ refreshPooledStakingVaultApyAverages(chainId?: number): Promise<void>;
123
156
  /**
124
157
  * Refreshes all pooled staking related data including stakes, eligibility, and vault data.
125
158
  * This method allows partial success, meaning some data may update while other requests fail.
@@ -132,5 +165,170 @@ export declare class EarnController extends BaseController<typeof controllerName
132
165
  * @throws {Error} If any of the refresh operations fail, with concatenated error messages
133
166
  */
134
167
  refreshPooledStakingData({ resetCache, address, }?: RefreshPooledStakingDataOptions): Promise<void>;
168
+ /**
169
+ * Refreshes the lending markets data for all chains.
170
+ * Updates the lending markets in the controller state.
171
+ *
172
+ * @returns A promise that resolves when the lending markets have been updated
173
+ */
174
+ refreshLendingMarkets(): Promise<void>;
175
+ /**
176
+ * Refreshes the lending positions for the current account.
177
+ * Updates the lending positions in the controller state.
178
+ *
179
+ * @param options - Optional arguments
180
+ * @param [options.address] - The address to refresh lending positions for (optional).
181
+ * @returns A promise that resolves when the lending positions have been updated
182
+ */
183
+ refreshLendingPositions({ address, }?: RefreshLendingPositionsOptions): Promise<void>;
184
+ /**
185
+ * Refreshes the lending eligibility status for the current account.
186
+ * Updates the eligibility status in the controller state based on the location and address blocklist for compliance.
187
+ *
188
+ * @param options - Optional arguments
189
+ * @param [options.address] - The address to refresh lending eligibility for (optional).
190
+ * @returns A promise that resolves when the eligibility status has been updated
191
+ */
192
+ refreshLendingEligibility({ address, }?: RefreshLendingEligibilityOptions): Promise<void>;
193
+ /**
194
+ * Refreshes all lending related data including markets, positions, and eligibility.
195
+ * This method allows partial success, meaning some data may update while other requests fail.
196
+ * All errors are collected and thrown as a single error message.
197
+ *
198
+ * @returns A promise that resolves when all possible data has been updated
199
+ * @throws {Error} If any of the refresh operations fail, with concatenated error messages
200
+ */
201
+ refreshLendingData(): Promise<void>;
202
+ /**
203
+ * Gets the lending position history for the current account.
204
+ *
205
+ * @param options - Optional arguments
206
+ * @param [options.address] - The address to get lending position history for (optional).
207
+ * @param [options.chainId] - The chain id to get lending position history for (optional).
208
+ * @param [options.positionId] - The position id to get lending position history for.
209
+ * @param [options.marketId] - The market id to get lending position history for.
210
+ * @param [options.marketAddress] - The market address to get lending position history for.
211
+ * @param [options.protocol] - The protocol to get lending position history for.
212
+ * @param [options.days] - The number of days to get lending position history for (optional).
213
+ * @returns A promise that resolves when the lending position history has been updated
214
+ */
215
+ getLendingPositionHistory({ address, chainId, positionId, marketId, marketAddress, protocol, days, }: {
216
+ address?: string;
217
+ chainId?: number;
218
+ positionId: string;
219
+ marketId: string;
220
+ marketAddress: string;
221
+ protocol: string;
222
+ days?: number;
223
+ }): never[] | Promise<import("@metamask/stake-sdk").LendingPositionHistory[]>;
224
+ /**
225
+ * Gets the lending market daily apys and averages for the current chain.
226
+ *
227
+ * @param options - Optional arguments
228
+ * @param [options.chainId] - The chain id to get lending market daily apys and averages for (optional).
229
+ * @param [options.protocol] - The protocol to get lending market daily apys and averages for.
230
+ * @param [options.marketId] - The market id to get lending market daily apys and averages for.
231
+ * @param [options.days] - The number of days to get lending market daily apys and averages for (optional).
232
+ * @returns A promise that resolves when the lending market daily apys and averages have been updated
233
+ */
234
+ getLendingMarketDailyApysAndAverages({ chainId, protocol, marketId, days, }: {
235
+ chainId?: number;
236
+ protocol: string;
237
+ marketId: string;
238
+ days?: number;
239
+ }): Promise<import("@metamask/stake-sdk").HistoricLendingMarketApys>;
240
+ /**
241
+ * Executes a lending deposit transaction.
242
+ *
243
+ * @param options - The options for the lending deposit transaction.
244
+ * @param options.amount - The amount to deposit.
245
+ * @param options.protocol - The protocol of the lending market.
246
+ * @param options.underlyingTokenAddress - The address of the underlying token.
247
+ * @param options.gasOptions - The gas options for the transaction.
248
+ * @param options.gasOptions.gasLimit - The gas limit for the transaction.
249
+ * @param options.gasOptions.gasBufferPct - The gas buffer percentage for the transaction.
250
+ * @param options.txOptions - The transaction options for the transaction.
251
+ * @returns A promise that resolves to the transaction hash.
252
+ */
253
+ executeLendingDeposit({ amount, protocol, underlyingTokenAddress, gasOptions, txOptions, }: {
254
+ amount: string;
255
+ protocol: LendingMarket['protocol'];
256
+ underlyingTokenAddress: string;
257
+ gasOptions: {
258
+ gasLimit?: GasLimitParams;
259
+ gasBufferPct?: number;
260
+ };
261
+ txOptions: Parameters<typeof TransactionController.prototype.addTransaction>[1];
262
+ }): Promise<import("@metamask/transaction-controller").Result>;
263
+ /**
264
+ * Executes a lending withdraw transaction.
265
+ *
266
+ * @param options - The options for the lending withdraw transaction.
267
+ * @param options.amount - The amount to withdraw.
268
+ * @param options.protocol - The protocol of the lending market.
269
+ * @param options.underlyingTokenAddress - The address of the underlying token.
270
+ * @param options.gasOptions - The gas options for the transaction.
271
+ * @param options.gasOptions.gasLimit - The gas limit for the transaction.
272
+ * @param options.gasOptions.gasBufferPct - The gas buffer percentage for the transaction.
273
+ * @param options.txOptions - The transaction options for the transaction.
274
+ * @returns A promise that resolves to the transaction hash.
275
+ */
276
+ executeLendingWithdraw({ amount, protocol, underlyingTokenAddress, gasOptions, txOptions, }: {
277
+ amount: string;
278
+ protocol: LendingMarket['protocol'];
279
+ underlyingTokenAddress: string;
280
+ gasOptions: {
281
+ gasLimit?: GasLimitParams;
282
+ gasBufferPct?: number;
283
+ };
284
+ txOptions: Parameters<typeof TransactionController.prototype.addTransaction>[1];
285
+ }): Promise<import("@metamask/transaction-controller").Result>;
286
+ /**
287
+ * Executes a lending token approve transaction.
288
+ *
289
+ * @param options - The options for the lending token approve transaction.
290
+ * @param options.amount - The amount to approve.
291
+ * @param options.protocol - The protocol of the lending market.
292
+ * @param options.underlyingTokenAddress - The address of the underlying token.
293
+ * @param options.gasOptions - The gas options for the transaction.
294
+ * @param options.gasOptions.gasLimit - The gas limit for the transaction.
295
+ * @param options.gasOptions.gasBufferPct - The gas buffer percentage for the transaction.
296
+ * @param options.txOptions - The transaction options for the transaction.
297
+ * @returns A promise that resolves to the transaction hash.
298
+ */
299
+ executeLendingTokenApprove({ protocol, amount, underlyingTokenAddress, gasOptions, txOptions, }: {
300
+ protocol: LendingMarket['protocol'];
301
+ amount: string;
302
+ underlyingTokenAddress: string;
303
+ gasOptions: {
304
+ gasLimit?: GasLimitParams;
305
+ gasBufferPct?: number;
306
+ };
307
+ txOptions: Parameters<typeof TransactionController.prototype.addTransaction>[1];
308
+ }): Promise<import("@metamask/transaction-controller").Result>;
309
+ /**
310
+ * Gets the allowance for a lending token.
311
+ *
312
+ * @param protocol - The protocol of the lending market.
313
+ * @param underlyingTokenAddress - The address of the underlying token.
314
+ * @returns A promise that resolves to the allowance.
315
+ */
316
+ getLendingTokenAllowance(protocol: LendingMarket['protocol'], underlyingTokenAddress: string): Promise<import("@ethersproject/bignumber").BigNumber | undefined>;
317
+ /**
318
+ * Gets the maximum withdraw amount for a lending token's output token or shares if no output token.
319
+ *
320
+ * @param protocol - The protocol of the lending market.
321
+ * @param underlyingTokenAddress - The address of the underlying token.
322
+ * @returns A promise that resolves to the maximum withdraw amount.
323
+ */
324
+ getLendingTokenMaxWithdraw(protocol: LendingMarket['protocol'], underlyingTokenAddress: string): Promise<import("@ethersproject/bignumber").BigNumber | undefined>;
325
+ /**
326
+ * Gets the maximum deposit amount for a lending token.
327
+ *
328
+ * @param protocol - The protocol of the lending market.
329
+ * @param underlyingTokenAddress - The address of the underlying token.
330
+ * @returns A promise that resolves to the maximum deposit amount.
331
+ */
332
+ getLendingTokenMaxDeposit(protocol: LendingMarket['protocol'], underlyingTokenAddress: string): Promise<import("@ethersproject/bignumber").BigNumber | undefined>;
135
333
  }
136
334
  //# 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,EAGL,KAAK,WAAW,EAEhB,KAAK,SAAS,EACd,KAAK,aAAa,EAClB,KAAK,gBAAgB,EAEtB,4BAA4B;AAC7B,OAAO,EAEL,KAAK,8CAA8C,EACpD,yCAAyC;AAE1C,OAAO,KAAK,EACV,0BAA0B,EAC1B,+BAA+B,EAC/B,gCAAgC,EACjC,oBAAgB;AAEjB,eAAO,MAAM,cAAc,mBAAmB,CAAC;AAE/C,MAAM,MAAM,kBAAkB,GAAG;IAC/B,YAAY,EAAE,WAAW,CAAC;IAC1B,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,SAAS,CAAC;IACzB,cAAc,EAAE,aAAa,EAAE,CAAC;IAChC,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,UAAU,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG;IACnC,MAAM,EAAE,eAAe,EAAE,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAgCF,MAAM,MAAM,mBAAmB,GAAG;IAChC,cAAc,EAAE,kBAAkB,CAAC;IACnC,kBAAkB,CAAC,EAAE,sBAAsB,CAAC;IAC5C,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAuBF;;;;GAIG;AACH,wBAAgB,6BAA6B,IAAI,mBAAmB,CA0BnE;AAID;;GAEG;AACH,MAAM,MAAM,4BAA4B,GAAG,wBAAwB,CACjE,OAAO,cAAc,EACrB,mBAAmB,CACpB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,4BAA4B,CAAC;AAEjE;;GAEG;AACH,MAAM,MAAM,cAAc,GACtB,2CAA2C,GAC3C,+BAA+B,GAC/B,0CAA0C,CAAC;AAE/C;;GAEG;AACH,MAAM,MAAM,8BAA8B,GAAG,0BAA0B,CACrE,OAAO,cAAc,EACrB,mBAAmB,CACpB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG,8BAA8B,CAAC;AAElE;;GAEG;AACH,MAAM,MAAM,aAAa,GACrB,4CAA4C,GAC5C,iCAAiC,GACjC,8CAA8C,CAAC;AAEnD;;;GAGG;AACH,MAAM,MAAM,uBAAuB,GAAG,mBAAmB,CACvD,OAAO,cAAc,EACrB,qBAAqB,GAAG,cAAc,EACtC,oBAAoB,GAAG,aAAa,EACpC,cAAc,CAAC,MAAM,CAAC,EACtB,aAAa,CAAC,MAAM,CAAC,CACtB,CAAC;AAIF;;GAEG;AACH,qBAAa,cAAe,SAAQ,cAAc,CAChD,OAAO,cAAc,EACrB,mBAAmB,EACnB,uBAAuB,CACxB;;gBAOa,EACV,SAAS,EACT,KAAU,GACX,EAAE;QACD,SAAS,EAAE,uBAAuB,CAAC;QACnC,KAAK,CAAC,EAAE,OAAO,CAAC,mBAAmB,CAAC,CAAC;KACtC;IA0ID;;;;;;;;;OASG;IACG,mBAAmB,CAAC,EACxB,UAAkB,EAClB,OAAO,GACR,GAAE,0BAA+B,GAAG,OAAO,CAAC,IAAI,CAAC;IAsBlD;;;;;;;OAOG;IACG,yBAAyB,CAAC,EAC9B,OAAO,GACR,GAAE,gCAAqC,GAAG,OAAO,CAAC,IAAI,CAAC;IAiBxD;;;;;;OAMG;IACG,iCAAiC,IAAI,OAAO,CAAC,IAAI,CAAC;IASxD;;;;;;;OAOG;IACG,kCAAkC,CACtC,IAAI,SAAM,EACV,KAAK,GAAE,KAAK,GAAG,MAAe,GAC7B,OAAO,CAAC,IAAI,CAAC;IAahB;;;;;OAKG;IACG,oCAAoC;IAU1C;;;;;;;;;;OAUG;IACG,wBAAwB,CAAC,EAC7B,UAAU,EACV,OAAO,GACR,GAAE,+BAAoC,GAAG,OAAO,CAAC,IAAI,CAAC;CA6BxD"}
1
+ {"version":3,"file":"EarnController.d.mts","sourceRoot":"","sources":["../src/EarnController.ts"],"names":[],"mappings":"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"}