@defisaver/positions-sdk 0.0.184 → 0.0.185-dev
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/cjs/aaveV3/index.js +1 -1
- package/cjs/compoundV3/index.js +11 -1
- package/cjs/config/contracts.d.ts +446 -216
- package/cjs/config/contracts.js +22 -0
- package/cjs/contracts.d.ts +1 -0
- package/cjs/contracts.js +2 -1
- package/cjs/markets/aave/marketAssets.js +1 -1
- package/cjs/markets/compound/index.d.ts +4 -0
- package/cjs/markets/compound/index.js +41 -1
- package/cjs/markets/compound/marketsAssets.d.ts +14 -0
- package/cjs/markets/compound/marketsAssets.js +17 -3
- package/cjs/markets/morphoBlue/index.d.ts +8 -0
- package/cjs/markets/morphoBlue/index.js +70 -1
- package/cjs/services/priceService.d.ts +1 -0
- package/cjs/services/priceService.js +23 -1
- package/cjs/types/compound.d.ts +3 -1
- package/cjs/types/compound.js +2 -0
- package/cjs/types/contracts/generated/CUSDSv3.d.ts +441 -0
- package/cjs/types/contracts/generated/CUSDSv3.js +5 -0
- package/cjs/types/contracts/generated/CWstETHv3.d.ts +441 -0
- package/cjs/types/contracts/generated/CWstETHv3.js +5 -0
- package/cjs/types/contracts/generated/WstETHPriceFeed.d.ts +39 -0
- package/cjs/types/contracts/generated/WstETHPriceFeed.js +5 -0
- package/cjs/types/contracts/generated/index.d.ts +3 -0
- package/cjs/types/morphoBlue.d.ts +5 -1
- package/cjs/types/morphoBlue.js +4 -0
- package/esm/aaveV3/index.js +1 -1
- package/esm/compoundV3/index.js +12 -2
- package/esm/config/contracts.d.ts +446 -216
- package/esm/config/contracts.js +22 -0
- package/esm/contracts.d.ts +1 -0
- package/esm/contracts.js +1 -0
- package/esm/markets/aave/marketAssets.js +1 -1
- package/esm/markets/compound/index.d.ts +4 -0
- package/esm/markets/compound/index.js +39 -1
- package/esm/markets/compound/marketsAssets.d.ts +14 -0
- package/esm/markets/compound/marketsAssets.js +16 -2
- package/esm/markets/morphoBlue/index.d.ts +8 -0
- package/esm/markets/morphoBlue/index.js +64 -0
- package/esm/services/priceService.d.ts +1 -0
- package/esm/services/priceService.js +22 -1
- package/esm/types/compound.d.ts +3 -1
- package/esm/types/compound.js +2 -0
- package/esm/types/contracts/generated/CUSDSv3.d.ts +441 -0
- package/esm/types/contracts/generated/CUSDSv3.js +4 -0
- package/esm/types/contracts/generated/CWstETHv3.d.ts +441 -0
- package/esm/types/contracts/generated/CWstETHv3.js +4 -0
- package/esm/types/contracts/generated/WstETHPriceFeed.d.ts +39 -0
- package/esm/types/contracts/generated/WstETHPriceFeed.js +4 -0
- package/esm/types/contracts/generated/index.d.ts +3 -0
- package/esm/types/morphoBlue.d.ts +5 -1
- package/esm/types/morphoBlue.js +4 -0
- package/package.json +2 -2
- package/src/aaveV3/index.ts +1 -1
- package/src/compoundV3/index.ts +15 -2
- package/src/config/contracts.js +22 -0
- package/src/contracts.ts +1 -0
- package/src/markets/aave/marketAssets.ts +1 -1
- package/src/markets/compound/index.ts +42 -2
- package/src/markets/compound/marketsAssets.ts +20 -2
- package/src/markets/morphoBlue/index.ts +69 -0
- package/src/services/priceService.ts +32 -1
- package/src/types/compound.ts +2 -0
- package/src/types/contracts/generated/CUSDSv3.ts +685 -0
- package/src/types/contracts/generated/CWstETHv3.ts +685 -0
- package/src/types/contracts/generated/WstETHPriceFeed.ts +59 -0
- package/src/types/contracts/generated/index.ts +3 -0
- package/src/types/morphoBlue.ts +4 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type BN from "bn.js";
|
|
6
|
+
import type { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import type { EventLog } from "web3-core";
|
|
8
|
+
import type { EventEmitter } from "events";
|
|
9
|
+
import type {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface WstETHPriceFeed extends BaseContract {
|
|
25
|
+
constructor(
|
|
26
|
+
jsonInterface: any[],
|
|
27
|
+
address?: string,
|
|
28
|
+
options?: ContractOptions
|
|
29
|
+
): WstETHPriceFeed;
|
|
30
|
+
clone(): WstETHPriceFeed;
|
|
31
|
+
methods: {
|
|
32
|
+
decimals(): NonPayableTransactionObject<string>;
|
|
33
|
+
|
|
34
|
+
description(): NonPayableTransactionObject<string>;
|
|
35
|
+
|
|
36
|
+
latestRoundData(): NonPayableTransactionObject<
|
|
37
|
+
[string, string, string, string, string] & {
|
|
38
|
+
roundId: string;
|
|
39
|
+
answer: string;
|
|
40
|
+
startedAt: string;
|
|
41
|
+
updatedAt: string;
|
|
42
|
+
answeredInRound: string;
|
|
43
|
+
}
|
|
44
|
+
>;
|
|
45
|
+
|
|
46
|
+
stETHToETHPriceFeedDecimals(): NonPayableTransactionObject<string>;
|
|
47
|
+
|
|
48
|
+
stETHtoETHPriceFeed(): NonPayableTransactionObject<string>;
|
|
49
|
+
|
|
50
|
+
version(): NonPayableTransactionObject<string>;
|
|
51
|
+
|
|
52
|
+
wstETH(): NonPayableTransactionObject<string>;
|
|
53
|
+
|
|
54
|
+
wstETHScale(): NonPayableTransactionObject<string>;
|
|
55
|
+
};
|
|
56
|
+
events: {
|
|
57
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
58
|
+
};
|
|
59
|
+
}
|
|
@@ -61,11 +61,14 @@ export type { SparkView } from "./SparkView";
|
|
|
61
61
|
export type { TroveManager } from "./TroveManager";
|
|
62
62
|
export type { USDCPriceFeed } from "./USDCPriceFeed";
|
|
63
63
|
export type { UniMulticall } from "./UniMulticall";
|
|
64
|
+
export type { WstETHPriceFeed } from "./WstETHPriceFeed";
|
|
64
65
|
export type { CETHv3 } from "./CETHv3";
|
|
65
66
|
export type { CUSDCev3 } from "./CUSDCev3";
|
|
66
67
|
export type { CUSDCv3 } from "./CUSDCv3";
|
|
68
|
+
export type { CUSDSv3 } from "./CUSDSv3";
|
|
67
69
|
export type { CUSDTv3 } from "./CUSDTv3";
|
|
68
70
|
export type { CUSDbCv3 } from "./CUSDbCv3";
|
|
71
|
+
export type { CWstETHv3 } from "./CWstETHv3";
|
|
69
72
|
export type { CrvUSDETHAmm } from "./CrvUSDETHAmm";
|
|
70
73
|
export type { CrvUSDETHController } from "./CrvUSDETHController";
|
|
71
74
|
export type { CrvUSDFactory } from "./CrvUSDFactory";
|
package/src/types/morphoBlue.ts
CHANGED
|
@@ -21,6 +21,7 @@ export enum MorphoBlueVersions {
|
|
|
21
21
|
MorphoBlueCbBTCEth_915 = 'morphobluecbbtceth', // cbBTC/Eth
|
|
22
22
|
MorphoBlueCbBTCUSDC_860 = 'morphobluecbbtcusdc', // cbBTC/USDC
|
|
23
23
|
MorphoBlueSUSDeUSDC_915 = 'morphobluesusdeusdc_915', // sUSDe/USDC
|
|
24
|
+
MorphoBlueLBTVWBTC_945 = 'morphobluelbtcwbtc_945', // LBTC/WBTC
|
|
24
25
|
// ezETH/ETH
|
|
25
26
|
MorphoBlueEzEthEth_860 = 'morphoblueezetheth_860',
|
|
26
27
|
MorphoBlueEzEthEth_945 = 'morphoblueezetheth_945',
|
|
@@ -57,6 +58,9 @@ export enum MorphoBlueVersions {
|
|
|
57
58
|
MorphoBlueCbBTCEth_915_Base = 'morphobluecbbtceth_915_base',
|
|
58
59
|
MorphoBlueCbBTCUSDC_860_Base = 'morphobluecbbtcusdc_860_base',
|
|
59
60
|
MorphoBlueWsuperOETHbWETH_915_Base = 'morphobluewsuperoethbweth_915_base',
|
|
61
|
+
MorphoBlueLBTCCbBTC_945_Base = 'morphobluelbtccbbtc_945_base', // LBTC/cbBTC
|
|
62
|
+
MorphoBlueWstEthEURC_860_Base = 'morphobluewstetheurc_860_base', // wstETH/EURC
|
|
63
|
+
MorphoBlueCbBTCEURC_860_Base = 'morphobluecbbtceurc_860_base', // cbBTC/EURC
|
|
60
64
|
}
|
|
61
65
|
|
|
62
66
|
export enum MorphoBlueOracleType {
|