@defisaver/positions-sdk 0.0.166-dev3-liquity-v2 → 0.0.166-dev4
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/.mocharc.json +4 -4
- package/.nvmrc +1 -1
- package/README.md +69 -69
- package/cjs/config/contracts.d.ts +32 -3
- package/cjs/config/contracts.js +3 -3
- package/cjs/contracts.d.ts +1 -1
- package/cjs/contracts.js +2 -2
- package/cjs/eulerV2/index.d.ts +41 -0
- package/cjs/eulerV2/index.js +218 -0
- package/cjs/helpers/eulerHelpers/index.d.ts +27 -0
- package/cjs/helpers/eulerHelpers/index.js +232 -0
- package/cjs/helpers/index.d.ts +1 -1
- package/cjs/helpers/index.js +2 -2
- package/cjs/index.d.ts +2 -2
- package/cjs/index.js +3 -3
- package/cjs/markets/euler/index.d.ts +8 -0
- package/cjs/markets/euler/index.js +30 -0
- package/cjs/markets/index.d.ts +1 -1
- package/cjs/markets/index.js +3 -3
- package/cjs/services/utils.d.ts +2 -0
- package/cjs/services/utils.js +4 -1
- package/cjs/types/contracts/generated/EulerV2View.d.ts +345 -0
- package/cjs/types/contracts/generated/index.d.ts +1 -1
- package/cjs/types/euler.d.ts +149 -0
- package/cjs/types/euler.js +14 -0
- package/cjs/types/index.d.ts +1 -1
- package/cjs/types/index.js +1 -1
- package/esm/config/contracts.d.ts +32 -3
- package/esm/config/contracts.js +3 -3
- package/esm/contracts.d.ts +1 -1
- package/esm/contracts.js +1 -1
- package/esm/eulerV2/index.d.ts +41 -0
- package/esm/eulerV2/index.js +210 -0
- package/esm/helpers/eulerHelpers/index.d.ts +27 -0
- package/esm/helpers/eulerHelpers/index.js +219 -0
- package/esm/helpers/index.d.ts +1 -1
- package/esm/helpers/index.js +1 -1
- package/esm/index.d.ts +2 -2
- package/esm/index.js +2 -2
- package/esm/markets/euler/index.d.ts +8 -0
- package/esm/markets/euler/index.js +24 -0
- package/esm/markets/index.d.ts +1 -1
- package/esm/markets/index.js +1 -1
- package/esm/services/utils.d.ts +2 -0
- package/esm/services/utils.js +2 -0
- package/esm/types/contracts/generated/EulerV2View.d.ts +345 -0
- package/esm/types/contracts/generated/index.d.ts +1 -1
- package/esm/types/euler.d.ts +149 -0
- package/esm/types/euler.js +11 -0
- package/esm/types/index.d.ts +1 -1
- package/esm/types/index.js +1 -1
- package/package.json +49 -49
- package/src/aaveV2/index.ts +227 -227
- package/src/aaveV3/index.ts +590 -590
- package/src/assets/index.ts +60 -60
- package/src/chickenBonds/index.ts +123 -123
- package/src/compoundV2/index.ts +219 -219
- package/src/compoundV3/index.ts +281 -281
- package/src/config/contracts.js +1040 -1040
- package/src/constants/index.ts +6 -6
- package/src/contracts.ts +130 -130
- package/src/curveUsd/index.ts +229 -229
- package/src/eulerV2/index.ts +301 -0
- package/src/exchange/index.ts +17 -17
- package/src/helpers/aaveHelpers/index.ts +194 -194
- package/src/helpers/chickenBondsHelpers/index.ts +23 -23
- package/src/helpers/compoundHelpers/index.ts +246 -246
- package/src/helpers/curveUsdHelpers/index.ts +40 -40
- package/src/helpers/eulerHelpers/index.ts +231 -0
- package/src/helpers/index.ts +9 -9
- package/src/helpers/llamaLendHelpers/index.ts +53 -53
- package/src/helpers/makerHelpers/index.ts +94 -94
- package/src/helpers/morphoBlueHelpers/index.ts +115 -115
- package/src/helpers/sparkHelpers/index.ts +150 -150
- package/src/index.ts +48 -48
- package/src/liquity/index.ts +116 -116
- package/src/llamaLend/index.ts +275 -275
- package/src/maker/index.ts +117 -117
- package/src/markets/aave/index.ts +152 -152
- package/src/markets/aave/marketAssets.ts +46 -46
- package/src/markets/compound/index.ts +173 -173
- package/src/markets/compound/marketsAssets.ts +64 -64
- package/src/markets/curveUsd/index.ts +69 -69
- package/src/markets/euler/index.ts +27 -0
- package/src/markets/index.ts +24 -23
- package/src/markets/llamaLend/contractAddresses.ts +141 -141
- package/src/markets/llamaLend/index.ts +235 -235
- package/src/markets/morphoBlue/index.ts +728 -728
- package/src/markets/spark/index.ts +29 -29
- package/src/markets/spark/marketAssets.ts +10 -10
- package/src/moneymarket/moneymarketCommonService.ts +80 -80
- package/src/morphoAaveV2/index.ts +256 -256
- package/src/morphoAaveV3/index.ts +630 -630
- package/src/morphoBlue/index.ts +171 -171
- package/src/multicall/index.ts +22 -22
- package/src/services/dsrService.ts +15 -15
- package/src/services/priceService.ts +21 -21
- package/src/services/utils.ts +57 -54
- package/src/setup.ts +8 -8
- package/src/spark/index.ts +424 -424
- package/src/staking/staking.ts +218 -218
- package/src/types/aave.ts +262 -262
- package/src/types/chickenBonds.ts +45 -45
- package/src/types/common.ts +84 -84
- package/src/types/compound.ts +129 -129
- package/src/types/contracts/generated/EulerV2View.ts +446 -0
- package/src/types/contracts/generated/index.ts +1 -1
- package/src/types/curveUsd.ts +118 -118
- package/src/types/euler.ts +172 -0
- package/src/types/index.ts +10 -10
- package/src/types/liquity.ts +30 -30
- package/src/types/llamaLend.ts +155 -155
- package/src/types/maker.ts +50 -50
- package/src/types/morphoBlue.ts +146 -146
- package/src/types/spark.ts +127 -127
- package/cjs/helpers/liquityV2Helpers/index.d.ts +0 -12
- package/cjs/helpers/liquityV2Helpers/index.js +0 -62
- package/cjs/liquityV2/index.d.ts +0 -10
- package/cjs/liquityV2/index.js +0 -98
- package/cjs/markets/liquityV2/index.d.ts +0 -8
- package/cjs/markets/liquityV2/index.js +0 -34
- package/cjs/types/contracts/generated/LiquityV2View.d.ts +0 -222
- package/cjs/types/liquityV2.d.ts +0 -83
- package/cjs/types/liquityV2.js +0 -8
- package/esm/helpers/liquityV2Helpers/index.d.ts +0 -12
- package/esm/helpers/liquityV2Helpers/index.js +0 -54
- package/esm/liquityV2/index.d.ts +0 -10
- package/esm/liquityV2/index.js +0 -90
- package/esm/markets/liquityV2/index.d.ts +0 -8
- package/esm/markets/liquityV2/index.js +0 -28
- package/esm/types/contracts/generated/LiquityV2View.d.ts +0 -222
- package/esm/types/liquityV2.d.ts +0 -83
- package/esm/types/liquityV2.js +0 -5
- package/src/helpers/liquityV2Helpers/index.ts +0 -79
- package/src/liquityV2/index.ts +0 -115
- package/src/markets/liquityV2/index.ts +0 -31
- package/src/types/contracts/generated/LiquityV2View.ts +0 -280
- package/src/types/liquityV2.ts +0 -89
- /package/cjs/types/contracts/generated/{LiquityV2View.js → EulerV2View.js} +0 -0
- /package/esm/types/contracts/generated/{LiquityV2View.js → EulerV2View.js} +0 -0
package/cjs/liquityV2/index.js
DELETED
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.getLiquityV2TroveData = exports.getLiquityV2MarketData = void 0;
|
|
16
|
-
const decimal_js_1 = __importDefault(require("decimal.js"));
|
|
17
|
-
const tokens_1 = require("@defisaver/tokens");
|
|
18
|
-
const contracts_1 = require("../contracts");
|
|
19
|
-
const types_1 = require("../types");
|
|
20
|
-
const staking_1 = require("../staking");
|
|
21
|
-
const liquityV2Helpers_1 = require("../helpers/liquityV2Helpers");
|
|
22
|
-
const utils_1 = require("../services/utils");
|
|
23
|
-
const getLiquityV2MarketData = (web3, network, selectedMarket, mainnetWeb3) => __awaiter(void 0, void 0, void 0, function* () {
|
|
24
|
-
const viewContract = (0, contracts_1.LiquityV2ViewContract)(web3, network);
|
|
25
|
-
const { marketAddress, debtToken, collateralToken } = selectedMarket;
|
|
26
|
-
const data = yield viewContract.methods.getMarketData(marketAddress).call();
|
|
27
|
-
const assetsData = {};
|
|
28
|
-
assetsData[debtToken] = {
|
|
29
|
-
symbol: debtToken,
|
|
30
|
-
address: (0, tokens_1.getAssetInfo)(debtToken, network).address,
|
|
31
|
-
price: '1',
|
|
32
|
-
totalSupply: '0',
|
|
33
|
-
totalBorrow: (0, tokens_1.assetAmountInEth)(data.entireSystemDebt),
|
|
34
|
-
canBeSupplied: false,
|
|
35
|
-
canBeBorrowed: true,
|
|
36
|
-
};
|
|
37
|
-
assetsData[collateralToken] = {
|
|
38
|
-
symbol: collateralToken,
|
|
39
|
-
address: (0, tokens_1.getAssetInfo)((0, utils_1.ethToWeth)(collateralToken), network).address,
|
|
40
|
-
price: (0, tokens_1.assetAmountInEth)(data.collPrice),
|
|
41
|
-
totalSupply: (0, tokens_1.assetAmountInEth)(data.entireSystemColl),
|
|
42
|
-
totalBorrow: '0',
|
|
43
|
-
canBeSupplied: true,
|
|
44
|
-
canBeBorrowed: false,
|
|
45
|
-
};
|
|
46
|
-
if (staking_1.STAKING_ASSETS.includes(collateralToken)) {
|
|
47
|
-
assetsData[collateralToken].incentiveSupplyApy = yield (0, staking_1.getStakingApy)(collateralToken, mainnetWeb3);
|
|
48
|
-
assetsData[collateralToken].incentiveSupplyToken = collateralToken;
|
|
49
|
-
}
|
|
50
|
-
const minCollRatio = new decimal_js_1.default(data.MCR).div(1e16).toString();
|
|
51
|
-
return { assetsData, marketData: { minCollRatio } };
|
|
52
|
-
});
|
|
53
|
-
exports.getLiquityV2MarketData = getLiquityV2MarketData;
|
|
54
|
-
const getLiquityV2TroveData = (web3, network, { selectedMarket, assetsData, marketData, troveId, }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
55
|
-
const viewContract = (0, contracts_1.LiquityV2ViewContract)(web3, network);
|
|
56
|
-
const { minCollRatio } = marketData;
|
|
57
|
-
const { collateralToken, marketAddress, debtToken } = selectedMarket;
|
|
58
|
-
const data = yield viewContract.methods.getTroveInfo(marketAddress, troveId).call();
|
|
59
|
-
const usedAssets = {};
|
|
60
|
-
const debtAssetData = assetsData[debtToken];
|
|
61
|
-
const borrowed = (0, tokens_1.assetAmountInEth)(data.debtAmount);
|
|
62
|
-
usedAssets[debtToken] = {
|
|
63
|
-
symbol: debtToken,
|
|
64
|
-
address: debtAssetData.address,
|
|
65
|
-
price: debtAssetData.price,
|
|
66
|
-
supplied: '0',
|
|
67
|
-
suppliedUsd: '0',
|
|
68
|
-
borrowed,
|
|
69
|
-
borrowedUsd: new decimal_js_1.default(borrowed).mul(debtAssetData.price).toString(),
|
|
70
|
-
isBorrowed: true,
|
|
71
|
-
isSupplied: false,
|
|
72
|
-
};
|
|
73
|
-
const collAssetData = assetsData[collateralToken];
|
|
74
|
-
const suppliedColl = (0, tokens_1.assetAmountInEth)(data.collAmount);
|
|
75
|
-
usedAssets[collateralToken] = {
|
|
76
|
-
symbol: collateralToken,
|
|
77
|
-
address: collAssetData.address,
|
|
78
|
-
price: collAssetData.price,
|
|
79
|
-
supplied: suppliedColl,
|
|
80
|
-
suppliedUsd: new decimal_js_1.default(suppliedColl).mul(collAssetData.price).toString(),
|
|
81
|
-
borrowed: '0',
|
|
82
|
-
borrowedUsd: '0',
|
|
83
|
-
isBorrowed: false,
|
|
84
|
-
isSupplied: true,
|
|
85
|
-
};
|
|
86
|
-
const collRatio = new decimal_js_1.default(data.TCRatio).div(1e16).toString();
|
|
87
|
-
const interestRate = new decimal_js_1.default(data.annualInterestRate).div(1e16).toString();
|
|
88
|
-
const interestBatchManager = data.interestBatchManager;
|
|
89
|
-
const payload = Object.assign({ usedAssets,
|
|
90
|
-
troveId,
|
|
91
|
-
collRatio,
|
|
92
|
-
interestRate,
|
|
93
|
-
interestBatchManager, troveStatus: types_1.LIQUITY_TROVE_STATUS_ENUM[parseInt(data.status, 10)] }, (0, liquityV2Helpers_1.getLiquityV2AggregatedPositionData)({
|
|
94
|
-
usedAssets, assetsData, minCollRatio, interestRate,
|
|
95
|
-
}));
|
|
96
|
-
return payload;
|
|
97
|
-
});
|
|
98
|
-
exports.getLiquityV2TroveData = getLiquityV2TroveData;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { NetworkNumber } from '../../types/common';
|
|
2
|
-
import { LiquityV2MarketInfo } from '../../types/liquityV2';
|
|
3
|
-
export declare const LIQUITY_V2_ETH_MARKET: (networkId?: NetworkNumber) => LiquityV2MarketInfo;
|
|
4
|
-
export declare const LIQUITY_V2_WSTETH_MARKET: (networkId?: NetworkNumber) => LiquityV2MarketInfo;
|
|
5
|
-
export declare const LiquityV2Markets: (networkId: NetworkNumber) => {
|
|
6
|
-
readonly liquityv2eth: LiquityV2MarketInfo;
|
|
7
|
-
readonly liquityv2wsteth: LiquityV2MarketInfo;
|
|
8
|
-
};
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LiquityV2Markets = exports.LIQUITY_V2_WSTETH_MARKET = exports.LIQUITY_V2_ETH_MARKET = void 0;
|
|
4
|
-
const common_1 = require("../../types/common");
|
|
5
|
-
const liquityV2_1 = require("../../types/liquityV2");
|
|
6
|
-
const LIQUITY_V2_ETH_MARKET = (networkId = common_1.NetworkNumber.Eth) => ({
|
|
7
|
-
chainIds: [1],
|
|
8
|
-
label: 'Liquity V2 ETH',
|
|
9
|
-
shortLabel: 'ETH',
|
|
10
|
-
value: liquityV2_1.LiquityV2Versions.LiquityV2Eth,
|
|
11
|
-
url: 'eth',
|
|
12
|
-
debtToken: 'BOLD',
|
|
13
|
-
collateralToken: 'ETH',
|
|
14
|
-
marketAddress: '0xd7199b16945f1ebaa0b301bf3d05bf489caa408b',
|
|
15
|
-
protocolName: 'liquity-v2',
|
|
16
|
-
});
|
|
17
|
-
exports.LIQUITY_V2_ETH_MARKET = LIQUITY_V2_ETH_MARKET;
|
|
18
|
-
const LIQUITY_V2_WSTETH_MARKET = (networkId = common_1.NetworkNumber.Eth) => ({
|
|
19
|
-
chainIds: [1],
|
|
20
|
-
label: 'Liquity V2 wstETH',
|
|
21
|
-
shortLabel: 'wstETH',
|
|
22
|
-
value: liquityV2_1.LiquityV2Versions.LiquityV2WstEth,
|
|
23
|
-
url: 'wsteth',
|
|
24
|
-
debtToken: 'BOLD',
|
|
25
|
-
collateralToken: 'wstETH',
|
|
26
|
-
marketAddress: '0x0d22113a543826eeaf2ae0fc9d10aea66efba156',
|
|
27
|
-
protocolName: 'liquity-v2',
|
|
28
|
-
});
|
|
29
|
-
exports.LIQUITY_V2_WSTETH_MARKET = LIQUITY_V2_WSTETH_MARKET;
|
|
30
|
-
const LiquityV2Markets = (networkId) => ({
|
|
31
|
-
[liquityV2_1.LiquityV2Versions.LiquityV2Eth]: (0, exports.LIQUITY_V2_ETH_MARKET)(networkId),
|
|
32
|
-
[liquityV2_1.LiquityV2Versions.LiquityV2WstEth]: (0, exports.LIQUITY_V2_WSTETH_MARKET)(networkId),
|
|
33
|
-
});
|
|
34
|
-
exports.LiquityV2Markets = LiquityV2Markets;
|
|
@@ -1,222 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import type BN from "bn.js";
|
|
3
|
-
import type { ContractOptions } from "web3-eth-contract";
|
|
4
|
-
import type { EventLog } from "web3-core";
|
|
5
|
-
import type { EventEmitter } from "events";
|
|
6
|
-
import type { Callback, NonPayableTransactionObject, BlockType, BaseContract } from "./types";
|
|
7
|
-
export interface EventOptions {
|
|
8
|
-
filter?: object;
|
|
9
|
-
fromBlock?: BlockType;
|
|
10
|
-
topics?: string[];
|
|
11
|
-
}
|
|
12
|
-
export declare namespace LiquityV2View {
|
|
13
|
-
type MarketDataStruct = [
|
|
14
|
-
string,
|
|
15
|
-
number | string | BN,
|
|
16
|
-
number | string | BN,
|
|
17
|
-
number | string | BN,
|
|
18
|
-
number | string | BN,
|
|
19
|
-
number | string | BN,
|
|
20
|
-
number | string | BN,
|
|
21
|
-
number | string | BN,
|
|
22
|
-
string,
|
|
23
|
-
string,
|
|
24
|
-
string,
|
|
25
|
-
string,
|
|
26
|
-
string,
|
|
27
|
-
string,
|
|
28
|
-
string,
|
|
29
|
-
string,
|
|
30
|
-
string,
|
|
31
|
-
number | string | BN,
|
|
32
|
-
boolean
|
|
33
|
-
] | {
|
|
34
|
-
market: string;
|
|
35
|
-
CCR: number | string | BN;
|
|
36
|
-
MCR: number | string | BN;
|
|
37
|
-
SCR: number | string | BN;
|
|
38
|
-
LIQUIDATION_PENALTY_SP: number | string | BN;
|
|
39
|
-
LIQUIDATION_PENALTY_REDISTRIBUTION: number | string | BN;
|
|
40
|
-
entireSystemColl: number | string | BN;
|
|
41
|
-
entireSystemDebt: number | string | BN;
|
|
42
|
-
collToken: string;
|
|
43
|
-
troveNFT: string;
|
|
44
|
-
borrowerOperations: string;
|
|
45
|
-
troveManager: string;
|
|
46
|
-
stabilityPool: string;
|
|
47
|
-
sortedTroves: string;
|
|
48
|
-
collSurplusPool: string;
|
|
49
|
-
hintHelpers: string;
|
|
50
|
-
priceFeed: string;
|
|
51
|
-
collPrice: number | string | BN;
|
|
52
|
-
isShutDown: boolean;
|
|
53
|
-
};
|
|
54
|
-
type MarketDataStructOutputArray = [
|
|
55
|
-
string,
|
|
56
|
-
string,
|
|
57
|
-
string,
|
|
58
|
-
string,
|
|
59
|
-
string,
|
|
60
|
-
string,
|
|
61
|
-
string,
|
|
62
|
-
string,
|
|
63
|
-
string,
|
|
64
|
-
string,
|
|
65
|
-
string,
|
|
66
|
-
string,
|
|
67
|
-
string,
|
|
68
|
-
string,
|
|
69
|
-
string,
|
|
70
|
-
string,
|
|
71
|
-
string,
|
|
72
|
-
string,
|
|
73
|
-
boolean
|
|
74
|
-
];
|
|
75
|
-
type MarketDataStructOutputStruct = {
|
|
76
|
-
market: string;
|
|
77
|
-
CCR: string;
|
|
78
|
-
MCR: string;
|
|
79
|
-
SCR: string;
|
|
80
|
-
LIQUIDATION_PENALTY_SP: string;
|
|
81
|
-
LIQUIDATION_PENALTY_REDISTRIBUTION: string;
|
|
82
|
-
entireSystemColl: string;
|
|
83
|
-
entireSystemDebt: string;
|
|
84
|
-
collToken: string;
|
|
85
|
-
troveNFT: string;
|
|
86
|
-
borrowerOperations: string;
|
|
87
|
-
troveManager: string;
|
|
88
|
-
stabilityPool: string;
|
|
89
|
-
sortedTroves: string;
|
|
90
|
-
collSurplusPool: string;
|
|
91
|
-
hintHelpers: string;
|
|
92
|
-
priceFeed: string;
|
|
93
|
-
collPrice: string;
|
|
94
|
-
isShutDown: boolean;
|
|
95
|
-
};
|
|
96
|
-
type MarketDataStructOutput = MarketDataStructOutputArray & MarketDataStructOutputStruct;
|
|
97
|
-
type TroveDataStruct = [
|
|
98
|
-
number | string | BN,
|
|
99
|
-
string,
|
|
100
|
-
string,
|
|
101
|
-
number | string | BN,
|
|
102
|
-
number | string | BN,
|
|
103
|
-
number | string | BN,
|
|
104
|
-
number | string | BN,
|
|
105
|
-
number | string | BN,
|
|
106
|
-
number | string | BN,
|
|
107
|
-
string,
|
|
108
|
-
number | string | BN
|
|
109
|
-
] | {
|
|
110
|
-
troveId: number | string | BN;
|
|
111
|
-
owner: string;
|
|
112
|
-
collToken: string;
|
|
113
|
-
status: number | string | BN;
|
|
114
|
-
collAmount: number | string | BN;
|
|
115
|
-
debtAmount: number | string | BN;
|
|
116
|
-
collPrice: number | string | BN;
|
|
117
|
-
TCRatio: number | string | BN;
|
|
118
|
-
annualInterestRate: number | string | BN;
|
|
119
|
-
interestBatchManager: string;
|
|
120
|
-
batchDebtShares: number | string | BN;
|
|
121
|
-
};
|
|
122
|
-
type TroveDataStructOutputArray = [
|
|
123
|
-
string,
|
|
124
|
-
string,
|
|
125
|
-
string,
|
|
126
|
-
string,
|
|
127
|
-
string,
|
|
128
|
-
string,
|
|
129
|
-
string,
|
|
130
|
-
string,
|
|
131
|
-
string,
|
|
132
|
-
string,
|
|
133
|
-
string
|
|
134
|
-
];
|
|
135
|
-
type TroveDataStructOutputStruct = {
|
|
136
|
-
troveId: string;
|
|
137
|
-
owner: string;
|
|
138
|
-
collToken: string;
|
|
139
|
-
status: string;
|
|
140
|
-
collAmount: string;
|
|
141
|
-
debtAmount: string;
|
|
142
|
-
collPrice: string;
|
|
143
|
-
TCRatio: string;
|
|
144
|
-
annualInterestRate: string;
|
|
145
|
-
interestBatchManager: string;
|
|
146
|
-
batchDebtShares: string;
|
|
147
|
-
};
|
|
148
|
-
type TroveDataStructOutput = TroveDataStructOutputArray & TroveDataStructOutputStruct;
|
|
149
|
-
}
|
|
150
|
-
export interface LiquityV2View extends BaseContract {
|
|
151
|
-
constructor(jsonInterface: any[], address?: string, options?: ContractOptions): LiquityV2View;
|
|
152
|
-
clone(): LiquityV2View;
|
|
153
|
-
methods: {
|
|
154
|
-
findInsertPosition(_market: string, _interestRate: number | string | BN, _prevId: number | string | BN, _nextId: number | string | BN): NonPayableTransactionObject<[
|
|
155
|
-
string,
|
|
156
|
-
string
|
|
157
|
-
] & {
|
|
158
|
-
prevId: string;
|
|
159
|
-
nextId: string;
|
|
160
|
-
}>;
|
|
161
|
-
getApproxHint(_market: string, _collIndex: number | string | BN, _interestRate: number | string | BN, _numTrials: number | string | BN, _inputRandomSeed: number | string | BN): NonPayableTransactionObject<[
|
|
162
|
-
string,
|
|
163
|
-
string,
|
|
164
|
-
string
|
|
165
|
-
] & {
|
|
166
|
-
hintId: string;
|
|
167
|
-
diff: string;
|
|
168
|
-
latestRandomSeed: string;
|
|
169
|
-
}>;
|
|
170
|
-
getDebtInFront(_market: string, _troveId: number | string | BN, _acc: number | string | BN, _iterations: number | string | BN): NonPayableTransactionObject<[
|
|
171
|
-
string,
|
|
172
|
-
string
|
|
173
|
-
] & {
|
|
174
|
-
next: string;
|
|
175
|
-
debt: string;
|
|
176
|
-
}>;
|
|
177
|
-
getDebtInFrontByInterestRate(_market: string, _troveId: number | string | BN, _acc: number | string | BN, _iterations: number | string | BN, _targetIR: number | string | BN): NonPayableTransactionObject<[
|
|
178
|
-
string,
|
|
179
|
-
string
|
|
180
|
-
] & {
|
|
181
|
-
next: string;
|
|
182
|
-
debt: string;
|
|
183
|
-
}>;
|
|
184
|
-
getDebtInFrontByTroveNum(_market: string, _numTroves: number | string | BN): NonPayableTransactionObject<string>;
|
|
185
|
-
getDepositorInfo(_market: string, _depositor: string): NonPayableTransactionObject<[
|
|
186
|
-
string,
|
|
187
|
-
string,
|
|
188
|
-
string
|
|
189
|
-
] & {
|
|
190
|
-
compoundedBOLD: string;
|
|
191
|
-
collGain: string;
|
|
192
|
-
boldGain: string;
|
|
193
|
-
}>;
|
|
194
|
-
getInsertPosition(_market: string, _collIndex: number | string | BN, _interestRate: number | string | BN, _numTrials: number | string | BN, _inputRandomSeed: number | string | BN): NonPayableTransactionObject<[
|
|
195
|
-
string,
|
|
196
|
-
string
|
|
197
|
-
] & {
|
|
198
|
-
prevId: string;
|
|
199
|
-
nextId: string;
|
|
200
|
-
}>;
|
|
201
|
-
getMarketData(_market: string): NonPayableTransactionObject<LiquityV2View.MarketDataStructOutput>;
|
|
202
|
-
getNumOfTrovesInFrontOfTrove(_market: string, _troveId: number | string | BN, _iterations: number | string | BN): NonPayableTransactionObject<[
|
|
203
|
-
string,
|
|
204
|
-
string
|
|
205
|
-
] & {
|
|
206
|
-
next: string;
|
|
207
|
-
numTroves: string;
|
|
208
|
-
}>;
|
|
209
|
-
getTroveInfo(_market: string, _troveId: number | string | BN): NonPayableTransactionObject<LiquityV2View.TroveDataStructOutput>;
|
|
210
|
-
getTrovePosition(_market: string, _collIndex: number | string | BN, _troveId: number | string | BN, _numTrials: number | string | BN, _inputRandomSeed: number | string | BN): NonPayableTransactionObject<[
|
|
211
|
-
string,
|
|
212
|
-
string
|
|
213
|
-
] & {
|
|
214
|
-
prevId: string;
|
|
215
|
-
nextId: string;
|
|
216
|
-
}>;
|
|
217
|
-
isShutDown(_market: string): NonPayableTransactionObject<boolean>;
|
|
218
|
-
};
|
|
219
|
-
events: {
|
|
220
|
-
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
221
|
-
};
|
|
222
|
-
}
|
package/cjs/types/liquityV2.d.ts
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import { EthAddress, NetworkNumber } from './common';
|
|
2
|
-
export declare enum LiquityV2Versions {
|
|
3
|
-
LiquityV2Eth = "liquityv2eth",
|
|
4
|
-
LiquityV2WstEth = "liquityv2wsteth"
|
|
5
|
-
}
|
|
6
|
-
export interface LiquityV2MarketInfo {
|
|
7
|
-
chainIds: NetworkNumber[];
|
|
8
|
-
label: string;
|
|
9
|
-
shortLabel: string;
|
|
10
|
-
url: string;
|
|
11
|
-
value: LiquityV2Versions;
|
|
12
|
-
debtToken: string;
|
|
13
|
-
collateralToken: string;
|
|
14
|
-
marketAddress: string;
|
|
15
|
-
protocolName: string;
|
|
16
|
-
}
|
|
17
|
-
export interface LiquityV2AssetData {
|
|
18
|
-
symbol: string;
|
|
19
|
-
address: string;
|
|
20
|
-
price: string;
|
|
21
|
-
incentiveSupplyApy?: string;
|
|
22
|
-
incentiveSupplyToken?: string;
|
|
23
|
-
totalSupply: string;
|
|
24
|
-
totalBorrow: string;
|
|
25
|
-
canBeSupplied: boolean;
|
|
26
|
-
canBeBorrowed: boolean;
|
|
27
|
-
}
|
|
28
|
-
export type LiquityV2AssetsData = {
|
|
29
|
-
[key: string]: LiquityV2AssetData;
|
|
30
|
-
};
|
|
31
|
-
export interface InnerLiquityV2MarketData {
|
|
32
|
-
minCollRatio: string;
|
|
33
|
-
}
|
|
34
|
-
export interface LiquityV2MarketData {
|
|
35
|
-
assetsData: LiquityV2AssetsData;
|
|
36
|
-
marketData: InnerLiquityV2MarketData;
|
|
37
|
-
}
|
|
38
|
-
export interface LiquityV2UsedAsset {
|
|
39
|
-
symbol: string;
|
|
40
|
-
address: string;
|
|
41
|
-
price: string;
|
|
42
|
-
supplied: string;
|
|
43
|
-
suppliedUsd: string;
|
|
44
|
-
borrowed: string;
|
|
45
|
-
borrowedUsd: string;
|
|
46
|
-
isSupplied: boolean;
|
|
47
|
-
isBorrowed: boolean;
|
|
48
|
-
}
|
|
49
|
-
export type LiquityV2UsedAssets = {
|
|
50
|
-
[key: string]: LiquityV2UsedAsset;
|
|
51
|
-
};
|
|
52
|
-
export interface LiquityV2AggregatedTroveData {
|
|
53
|
-
suppliedUsd: string;
|
|
54
|
-
borrowedUsd: string;
|
|
55
|
-
borrowLimitUsd: string;
|
|
56
|
-
leftToBorrowUsd: string;
|
|
57
|
-
netApy: string;
|
|
58
|
-
incentiveUsd: string;
|
|
59
|
-
totalInterestUsd: string;
|
|
60
|
-
leveragedType: string;
|
|
61
|
-
leveragedAsset: string;
|
|
62
|
-
liquidationPrice: string;
|
|
63
|
-
ratio: string;
|
|
64
|
-
}
|
|
65
|
-
export interface LiquityV2TroveData {
|
|
66
|
-
usedAssets: LiquityV2UsedAssets;
|
|
67
|
-
troveId: string;
|
|
68
|
-
ratio: string;
|
|
69
|
-
collRatio: string;
|
|
70
|
-
interestRate: string;
|
|
71
|
-
leftToBorrowUsd: string;
|
|
72
|
-
borrowLimitUsd: string;
|
|
73
|
-
suppliedUsd: string;
|
|
74
|
-
borrowedUsd: string;
|
|
75
|
-
netApy: string;
|
|
76
|
-
incentiveUsd: string;
|
|
77
|
-
totalInterestUsd: string;
|
|
78
|
-
interestBatchManager: EthAddress;
|
|
79
|
-
troveStatus: string;
|
|
80
|
-
leveragedType: string;
|
|
81
|
-
leveragedAsset: string;
|
|
82
|
-
liquidationPrice: string;
|
|
83
|
-
}
|
package/cjs/types/liquityV2.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LiquityV2Versions = void 0;
|
|
4
|
-
var LiquityV2Versions;
|
|
5
|
-
(function (LiquityV2Versions) {
|
|
6
|
-
LiquityV2Versions["LiquityV2Eth"] = "liquityv2eth";
|
|
7
|
-
LiquityV2Versions["LiquityV2WstEth"] = "liquityv2wsteth";
|
|
8
|
-
})(LiquityV2Versions || (exports.LiquityV2Versions = LiquityV2Versions = {}));
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { LiquityV2AggregatedTroveData, LiquityV2AssetsData, LiquityV2UsedAssets } from '../../types';
|
|
2
|
-
export declare const calculateNetApyLiquityV2: (usedAssets: LiquityV2UsedAssets, assetsData: LiquityV2AssetsData, interestRate: string) => {
|
|
3
|
-
netApy: string;
|
|
4
|
-
totalInterestUsd: string;
|
|
5
|
-
incentiveUsd: string;
|
|
6
|
-
};
|
|
7
|
-
export declare const getLiquityV2AggregatedPositionData: ({ usedAssets, assetsData, minCollRatio, interestRate, }: {
|
|
8
|
-
usedAssets: LiquityV2UsedAssets;
|
|
9
|
-
assetsData: LiquityV2AssetsData;
|
|
10
|
-
minCollRatio: string;
|
|
11
|
-
interestRate: string;
|
|
12
|
-
}) => LiquityV2AggregatedTroveData;
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import Dec from 'decimal.js';
|
|
2
|
-
import { calcLeverageLiqPrice, getAssetsTotal, isLeveragedPos } from '../../moneymarket';
|
|
3
|
-
import { calculateInterestEarned } from '../../staking';
|
|
4
|
-
export const calculateNetApyLiquityV2 = (usedAssets, assetsData, interestRate) => {
|
|
5
|
-
const sumValues = Object.values(usedAssets).reduce((_acc, usedAsset) => {
|
|
6
|
-
const acc = Object.assign({}, _acc);
|
|
7
|
-
const assetData = assetsData[usedAsset.symbol];
|
|
8
|
-
if (usedAsset.suppliedUsd) {
|
|
9
|
-
const amount = usedAsset.suppliedUsd;
|
|
10
|
-
acc.suppliedUsd = new Dec(acc.suppliedUsd).add(amount).toString();
|
|
11
|
-
if (assetData.incentiveSupplyApy) {
|
|
12
|
-
const incentiveInterest = calculateInterestEarned(amount, assetData.incentiveSupplyApy, 'year', true);
|
|
13
|
-
acc.incentiveUsd = new Dec(acc.incentiveUsd).add(incentiveInterest).toString();
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
if (usedAsset.borrowedUsd) {
|
|
17
|
-
const amount = usedAsset.borrowedUsd;
|
|
18
|
-
acc.borrowedUsd = new Dec(acc.borrowedUsd).add(amount).toString();
|
|
19
|
-
const rate = interestRate;
|
|
20
|
-
const borrowInterest = calculateInterestEarned(amount, rate, 'year', true);
|
|
21
|
-
acc.borrowInterest = new Dec(acc.borrowInterest).sub(borrowInterest.toString()).toString();
|
|
22
|
-
}
|
|
23
|
-
return acc;
|
|
24
|
-
}, {
|
|
25
|
-
borrowInterest: '0', supplyInterest: '0', incentiveUsd: '0', borrowedUsd: '0', suppliedUsd: '0',
|
|
26
|
-
});
|
|
27
|
-
const { borrowedUsd, suppliedUsd, borrowInterest, supplyInterest, incentiveUsd, } = sumValues;
|
|
28
|
-
const totalInterestUsd = new Dec(borrowInterest).add(supplyInterest).add(incentiveUsd).toString();
|
|
29
|
-
const balance = new Dec(suppliedUsd).sub(borrowedUsd);
|
|
30
|
-
const netApy = new Dec(totalInterestUsd).div(balance).times(100).toString();
|
|
31
|
-
return { netApy, totalInterestUsd, incentiveUsd };
|
|
32
|
-
};
|
|
33
|
-
export const getLiquityV2AggregatedPositionData = ({ usedAssets, assetsData, minCollRatio, interestRate, }) => {
|
|
34
|
-
const payload = {};
|
|
35
|
-
payload.suppliedUsd = getAssetsTotal(usedAssets, (usedAsset) => usedAsset, ({ suppliedUsd }) => suppliedUsd);
|
|
36
|
-
payload.borrowedUsd = getAssetsTotal(usedAssets, (usedAsset) => usedAsset, ({ borrowedUsd }) => borrowedUsd);
|
|
37
|
-
payload.borrowLimitUsd = new Dec(payload.suppliedUsd).div(minCollRatio).mul(100).toString();
|
|
38
|
-
const leftToBorrowUsd = new Dec(payload.borrowLimitUsd).sub(payload.borrowedUsd);
|
|
39
|
-
payload.leftToBorrowUsd = leftToBorrowUsd.lte('0') ? '0' : leftToBorrowUsd.toString();
|
|
40
|
-
payload.ratio = +payload.suppliedUsd ? new Dec(payload.borrowLimitUsd).div(payload.borrowedUsd).mul(100).toString() : '0';
|
|
41
|
-
const { netApy, incentiveUsd, totalInterestUsd } = calculateNetApyLiquityV2(usedAssets, assetsData, interestRate);
|
|
42
|
-
payload.netApy = netApy;
|
|
43
|
-
payload.incentiveUsd = incentiveUsd;
|
|
44
|
-
payload.totalInterestUsd = totalInterestUsd;
|
|
45
|
-
const { leveragedType, leveragedAsset } = isLeveragedPos(usedAssets);
|
|
46
|
-
payload.leveragedType = leveragedType;
|
|
47
|
-
payload.leveragedAsset = leveragedAsset;
|
|
48
|
-
payload.liquidationPrice = '';
|
|
49
|
-
if (leveragedType !== '') {
|
|
50
|
-
const assetPrice = assetsData[leveragedAsset].price;
|
|
51
|
-
payload.liquidationPrice = calcLeverageLiqPrice(leveragedType, assetPrice, payload.borrowedUsd, payload.borrowLimitUsd);
|
|
52
|
-
}
|
|
53
|
-
return payload;
|
|
54
|
-
};
|
package/esm/liquityV2/index.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import Web3 from 'web3';
|
|
2
|
-
import { NetworkNumber } from '../types/common';
|
|
3
|
-
import { InnerLiquityV2MarketData, LiquityV2AssetsData, LiquityV2MarketData, LiquityV2MarketInfo, LiquityV2TroveData } from '../types';
|
|
4
|
-
export declare const getLiquityV2MarketData: (web3: Web3, network: NetworkNumber, selectedMarket: LiquityV2MarketInfo, mainnetWeb3: Web3) => Promise<LiquityV2MarketData>;
|
|
5
|
-
export declare const getLiquityV2TroveData: (web3: Web3, network: NetworkNumber, { selectedMarket, assetsData, marketData, troveId, }: {
|
|
6
|
-
selectedMarket: LiquityV2MarketInfo;
|
|
7
|
-
assetsData: LiquityV2AssetsData;
|
|
8
|
-
marketData: InnerLiquityV2MarketData;
|
|
9
|
-
troveId: string;
|
|
10
|
-
}) => Promise<LiquityV2TroveData>;
|
package/esm/liquityV2/index.js
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
-
});
|
|
9
|
-
};
|
|
10
|
-
import Dec from 'decimal.js';
|
|
11
|
-
import { assetAmountInEth, getAssetInfo } from '@defisaver/tokens';
|
|
12
|
-
import { LiquityV2ViewContract } from '../contracts';
|
|
13
|
-
import { LIQUITY_TROVE_STATUS_ENUM, } from '../types';
|
|
14
|
-
import { getStakingApy, STAKING_ASSETS } from '../staking';
|
|
15
|
-
import { getLiquityV2AggregatedPositionData } from '../helpers/liquityV2Helpers';
|
|
16
|
-
import { ethToWeth } from '../services/utils';
|
|
17
|
-
export const getLiquityV2MarketData = (web3, network, selectedMarket, mainnetWeb3) => __awaiter(void 0, void 0, void 0, function* () {
|
|
18
|
-
const viewContract = LiquityV2ViewContract(web3, network);
|
|
19
|
-
const { marketAddress, debtToken, collateralToken } = selectedMarket;
|
|
20
|
-
const data = yield viewContract.methods.getMarketData(marketAddress).call();
|
|
21
|
-
const assetsData = {};
|
|
22
|
-
assetsData[debtToken] = {
|
|
23
|
-
symbol: debtToken,
|
|
24
|
-
address: getAssetInfo(debtToken, network).address,
|
|
25
|
-
price: '1',
|
|
26
|
-
totalSupply: '0',
|
|
27
|
-
totalBorrow: assetAmountInEth(data.entireSystemDebt),
|
|
28
|
-
canBeSupplied: false,
|
|
29
|
-
canBeBorrowed: true,
|
|
30
|
-
};
|
|
31
|
-
assetsData[collateralToken] = {
|
|
32
|
-
symbol: collateralToken,
|
|
33
|
-
address: getAssetInfo(ethToWeth(collateralToken), network).address,
|
|
34
|
-
price: assetAmountInEth(data.collPrice),
|
|
35
|
-
totalSupply: assetAmountInEth(data.entireSystemColl),
|
|
36
|
-
totalBorrow: '0',
|
|
37
|
-
canBeSupplied: true,
|
|
38
|
-
canBeBorrowed: false,
|
|
39
|
-
};
|
|
40
|
-
if (STAKING_ASSETS.includes(collateralToken)) {
|
|
41
|
-
assetsData[collateralToken].incentiveSupplyApy = yield getStakingApy(collateralToken, mainnetWeb3);
|
|
42
|
-
assetsData[collateralToken].incentiveSupplyToken = collateralToken;
|
|
43
|
-
}
|
|
44
|
-
const minCollRatio = new Dec(data.MCR).div(1e16).toString();
|
|
45
|
-
return { assetsData, marketData: { minCollRatio } };
|
|
46
|
-
});
|
|
47
|
-
export const getLiquityV2TroveData = (web3, network, { selectedMarket, assetsData, marketData, troveId, }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
48
|
-
const viewContract = LiquityV2ViewContract(web3, network);
|
|
49
|
-
const { minCollRatio } = marketData;
|
|
50
|
-
const { collateralToken, marketAddress, debtToken } = selectedMarket;
|
|
51
|
-
const data = yield viewContract.methods.getTroveInfo(marketAddress, troveId).call();
|
|
52
|
-
const usedAssets = {};
|
|
53
|
-
const debtAssetData = assetsData[debtToken];
|
|
54
|
-
const borrowed = assetAmountInEth(data.debtAmount);
|
|
55
|
-
usedAssets[debtToken] = {
|
|
56
|
-
symbol: debtToken,
|
|
57
|
-
address: debtAssetData.address,
|
|
58
|
-
price: debtAssetData.price,
|
|
59
|
-
supplied: '0',
|
|
60
|
-
suppliedUsd: '0',
|
|
61
|
-
borrowed,
|
|
62
|
-
borrowedUsd: new Dec(borrowed).mul(debtAssetData.price).toString(),
|
|
63
|
-
isBorrowed: true,
|
|
64
|
-
isSupplied: false,
|
|
65
|
-
};
|
|
66
|
-
const collAssetData = assetsData[collateralToken];
|
|
67
|
-
const suppliedColl = assetAmountInEth(data.collAmount);
|
|
68
|
-
usedAssets[collateralToken] = {
|
|
69
|
-
symbol: collateralToken,
|
|
70
|
-
address: collAssetData.address,
|
|
71
|
-
price: collAssetData.price,
|
|
72
|
-
supplied: suppliedColl,
|
|
73
|
-
suppliedUsd: new Dec(suppliedColl).mul(collAssetData.price).toString(),
|
|
74
|
-
borrowed: '0',
|
|
75
|
-
borrowedUsd: '0',
|
|
76
|
-
isBorrowed: false,
|
|
77
|
-
isSupplied: true,
|
|
78
|
-
};
|
|
79
|
-
const collRatio = new Dec(data.TCRatio).div(1e16).toString();
|
|
80
|
-
const interestRate = new Dec(data.annualInterestRate).div(1e16).toString();
|
|
81
|
-
const interestBatchManager = data.interestBatchManager;
|
|
82
|
-
const payload = Object.assign({ usedAssets,
|
|
83
|
-
troveId,
|
|
84
|
-
collRatio,
|
|
85
|
-
interestRate,
|
|
86
|
-
interestBatchManager, troveStatus: LIQUITY_TROVE_STATUS_ENUM[parseInt(data.status, 10)] }, getLiquityV2AggregatedPositionData({
|
|
87
|
-
usedAssets, assetsData, minCollRatio, interestRate,
|
|
88
|
-
}));
|
|
89
|
-
return payload;
|
|
90
|
-
});
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { NetworkNumber } from '../../types/common';
|
|
2
|
-
import { LiquityV2MarketInfo } from '../../types/liquityV2';
|
|
3
|
-
export declare const LIQUITY_V2_ETH_MARKET: (networkId?: NetworkNumber) => LiquityV2MarketInfo;
|
|
4
|
-
export declare const LIQUITY_V2_WSTETH_MARKET: (networkId?: NetworkNumber) => LiquityV2MarketInfo;
|
|
5
|
-
export declare const LiquityV2Markets: (networkId: NetworkNumber) => {
|
|
6
|
-
readonly liquityv2eth: LiquityV2MarketInfo;
|
|
7
|
-
readonly liquityv2wsteth: LiquityV2MarketInfo;
|
|
8
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { NetworkNumber } from '../../types/common';
|
|
2
|
-
import { LiquityV2Versions } from '../../types/liquityV2';
|
|
3
|
-
export const LIQUITY_V2_ETH_MARKET = (networkId = NetworkNumber.Eth) => ({
|
|
4
|
-
chainIds: [1],
|
|
5
|
-
label: 'Liquity V2 ETH',
|
|
6
|
-
shortLabel: 'ETH',
|
|
7
|
-
value: LiquityV2Versions.LiquityV2Eth,
|
|
8
|
-
url: 'eth',
|
|
9
|
-
debtToken: 'BOLD',
|
|
10
|
-
collateralToken: 'ETH',
|
|
11
|
-
marketAddress: '0xd7199b16945f1ebaa0b301bf3d05bf489caa408b',
|
|
12
|
-
protocolName: 'liquity-v2',
|
|
13
|
-
});
|
|
14
|
-
export const LIQUITY_V2_WSTETH_MARKET = (networkId = NetworkNumber.Eth) => ({
|
|
15
|
-
chainIds: [1],
|
|
16
|
-
label: 'Liquity V2 wstETH',
|
|
17
|
-
shortLabel: 'wstETH',
|
|
18
|
-
value: LiquityV2Versions.LiquityV2WstEth,
|
|
19
|
-
url: 'wsteth',
|
|
20
|
-
debtToken: 'BOLD',
|
|
21
|
-
collateralToken: 'wstETH',
|
|
22
|
-
marketAddress: '0x0d22113a543826eeaf2ae0fc9d10aea66efba156',
|
|
23
|
-
protocolName: 'liquity-v2',
|
|
24
|
-
});
|
|
25
|
-
export const LiquityV2Markets = (networkId) => ({
|
|
26
|
-
[LiquityV2Versions.LiquityV2Eth]: LIQUITY_V2_ETH_MARKET(networkId),
|
|
27
|
-
[LiquityV2Versions.LiquityV2WstEth]: LIQUITY_V2_WSTETH_MARKET(networkId),
|
|
28
|
-
});
|