impermax-sdk 1.1.0 → 1.1.2
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/lib/config/amms.d.ts +3 -1
- package/lib/config/amms.js +12 -0
- package/lib/config/contracts/routers.js +3 -0
- package/lib/config/contracts/weths.js +2 -1
- package/lib/config/eth.js +2 -0
- package/lib/config/farms.d.ts +2 -0
- package/lib/config/farms.js +5 -0
- package/lib/config/subgraphs.js +3 -0
- package/lib/config/types.d.ts +2 -1
- package/lib/config/types.js +1 -0
- package/lib/index.d.ts +6 -1
- package/lib/index.js +12 -2
- package/package.json +1 -1
package/lib/config/amms.d.ts
CHANGED
|
@@ -22,7 +22,8 @@ export declare enum Amms {
|
|
|
22
22
|
solidlyUSDCB = "solidlyUSDCB",
|
|
23
23
|
solidly091 = "solidly091",
|
|
24
24
|
solidlyOxd = "solidlyOxd",
|
|
25
|
-
velocimeter = "velocimeter"
|
|
25
|
+
velocimeter = "velocimeter",
|
|
26
|
+
velocore = "velocore"
|
|
26
27
|
}
|
|
27
28
|
export declare const hrAmms: {
|
|
28
29
|
uniswap: string;
|
|
@@ -48,6 +49,7 @@ export declare const hrAmms: {
|
|
|
48
49
|
solidly091: string;
|
|
49
50
|
solidlyOxd: string;
|
|
50
51
|
velocimeter: string;
|
|
52
|
+
velocore: string;
|
|
51
53
|
};
|
|
52
54
|
export declare const AMM_FACTORY: AmmIndex;
|
|
53
55
|
export declare function getAmmByFactory(network: Networks, address: Address): Amms;
|
package/lib/config/amms.js
CHANGED
|
@@ -27,6 +27,7 @@ var Amms;
|
|
|
27
27
|
Amms["solidly091"] = "solidly091";
|
|
28
28
|
Amms["solidlyOxd"] = "solidlyOxd";
|
|
29
29
|
Amms["velocimeter"] = "velocimeter";
|
|
30
|
+
Amms["velocore"] = "velocore";
|
|
30
31
|
})(Amms = exports.Amms || (exports.Amms = {}));
|
|
31
32
|
exports.hrAmms = {
|
|
32
33
|
[Amms.uniswap]: 'Uniswap',
|
|
@@ -52,6 +53,7 @@ exports.hrAmms = {
|
|
|
52
53
|
[Amms.solidly091]: 'Solidly',
|
|
53
54
|
[Amms.solidlyOxd]: 'Solidly',
|
|
54
55
|
[Amms.velocimeter]: 'Velocimeter',
|
|
56
|
+
[Amms.velocore]: 'Velocore',
|
|
55
57
|
};
|
|
56
58
|
exports.AMM_FACTORY = {
|
|
57
59
|
[types_1.Networks.Ropsten]: {
|
|
@@ -98,6 +100,9 @@ exports.AMM_FACTORY = {
|
|
|
98
100
|
[types_1.Networks.Canto]: {
|
|
99
101
|
[Amms.velocimeter]: '0x1c813cdd6daece2cb83c52f0798504e42816e9c5', //NOTICE: this is actually the staked LP factory
|
|
100
102
|
},
|
|
103
|
+
[types_1.Networks.ZksyncEra]: {
|
|
104
|
+
[Amms.velocore]: '0x36BbDb0DEA4Aa211Dd76dF0a3201c89FD530851b', //NOTICE: this is actually the staked LP factory
|
|
105
|
+
},
|
|
101
106
|
[types_1.Networks.Harmony]: {},
|
|
102
107
|
[types_1.Networks.Moonbeam]: {},
|
|
103
108
|
[types_1.Networks.Sxnetwork]: {},
|
|
@@ -154,6 +159,7 @@ exports.AMM_SUBGRAPH_URLS = {
|
|
|
154
159
|
[Amms.solidlyOxd]: 'https://api.thegraph.com/subgraphs/name/spartacus-finance/solidly',
|
|
155
160
|
},
|
|
156
161
|
[types_1.Networks.Canto]: {},
|
|
162
|
+
[types_1.Networks.ZksyncEra]: {},
|
|
157
163
|
[types_1.Networks.Harmony]: {},
|
|
158
164
|
[types_1.Networks.Moonbeam]: {},
|
|
159
165
|
[types_1.Networks.Sxnetwork]: {},
|
|
@@ -203,6 +209,9 @@ exports.ADD_LIQUIDITY_URLS = {
|
|
|
203
209
|
[types_1.Networks.Canto]: {
|
|
204
210
|
[Amms.velocimeter]: 'https://www.velocimeter.xyz/liquidity/',
|
|
205
211
|
},
|
|
212
|
+
[types_1.Networks.ZksyncEra]: {
|
|
213
|
+
[Amms.velocore]: 'https://app.velocore.xyz/liquidity/',
|
|
214
|
+
},
|
|
206
215
|
[types_1.Networks.Harmony]: {},
|
|
207
216
|
[types_1.Networks.Moonbeam]: {},
|
|
208
217
|
[types_1.Networks.Sxnetwork]: {},
|
|
@@ -252,6 +261,9 @@ exports.AMM_LP_FEE = {
|
|
|
252
261
|
[types_1.Networks.Canto]: {
|
|
253
262
|
[Amms.velocimeter]: 0,
|
|
254
263
|
},
|
|
264
|
+
[types_1.Networks.ZksyncEra]: {
|
|
265
|
+
[Amms.velocore]: 0,
|
|
266
|
+
},
|
|
255
267
|
[types_1.Networks.Harmony]: {},
|
|
256
268
|
[types_1.Networks.Moonbeam]: {},
|
|
257
269
|
[types_1.Networks.Sxnetwork]: {},
|
|
@@ -38,6 +38,9 @@ exports.ROUTER = {
|
|
|
38
38
|
[types_1.Networks.Canto]: {
|
|
39
39
|
[types_1.Factory.SOLV2]: '0xf6f32Ddb73d103895228Aa603c252690fC95727d',
|
|
40
40
|
},
|
|
41
|
+
[types_1.Networks.ZksyncEra]: {
|
|
42
|
+
[types_1.Factory.SOLV2]: '0x0463cdFc586c36CCD0E2510acECE24bdac354324',
|
|
43
|
+
},
|
|
41
44
|
[types_1.Networks.Harmony]: {},
|
|
42
45
|
[types_1.Networks.Moonbeam]: {},
|
|
43
46
|
[types_1.Networks.Sxnetwork]: {},
|
|
@@ -16,5 +16,6 @@ exports.WETH = {
|
|
|
16
16
|
[types_1.Networks.Harmony]: '0xcf664087a5bb0237a0bad6742852ec6c8d69a27a',
|
|
17
17
|
[types_1.Networks.Moonbeam]: '0xacc15dc74880c9944775448304b263d191c6077f',
|
|
18
18
|
[types_1.Networks.Sxnetwork]: '0xacc15dc74880c9944775448304b263d191c6077f',
|
|
19
|
-
[types_1.Networks.Canto]: '0x826551890Dc65655a0Aceca109aB11AbDbD7a07B',
|
|
19
|
+
[types_1.Networks.Canto]: '0x826551890Dc65655a0Aceca109aB11AbDbD7a07B',
|
|
20
|
+
[types_1.Networks.ZksyncEra]: '0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91',
|
|
20
21
|
};
|
package/lib/config/eth.js
CHANGED
|
@@ -16,6 +16,7 @@ exports.ETH_NAME = {
|
|
|
16
16
|
[types_1.Networks.Moonbeam]: 'Moonbeam',
|
|
17
17
|
[types_1.Networks.Sxnetwork]: 'SX Network',
|
|
18
18
|
[types_1.Networks.Canto]: 'CANTO',
|
|
19
|
+
[types_1.Networks.ZksyncEra]: 'Ethereum',
|
|
19
20
|
};
|
|
20
21
|
exports.ETH_SYMBOL = {
|
|
21
22
|
[types_1.Networks.Ropsten]: 'ETH',
|
|
@@ -31,4 +32,5 @@ exports.ETH_SYMBOL = {
|
|
|
31
32
|
[types_1.Networks.Moonbeam]: 'GLMR',
|
|
32
33
|
[types_1.Networks.Sxnetwork]: 'SX',
|
|
33
34
|
[types_1.Networks.Canto]: 'CANTO',
|
|
35
|
+
[types_1.Networks.ZksyncEra]: 'ETH',
|
|
34
36
|
};
|
package/lib/config/farms.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export declare enum Farms {
|
|
|
13
13
|
solidlizard = "solidlizard",
|
|
14
14
|
ramses = "ramses",
|
|
15
15
|
velocimeter = "velocimeter",
|
|
16
|
+
velocore = "velocore",
|
|
16
17
|
radiant = "",
|
|
17
18
|
plutusDao = "",
|
|
18
19
|
pangolin = "pangolin",
|
|
@@ -45,6 +46,7 @@ export declare const hrFarms: {
|
|
|
45
46
|
solidlizard: string;
|
|
46
47
|
ramses: string;
|
|
47
48
|
velocimeter: string;
|
|
49
|
+
velocore: string;
|
|
48
50
|
"": string;
|
|
49
51
|
pangolin: string;
|
|
50
52
|
pangolinV2: string;
|
package/lib/config/farms.js
CHANGED
|
@@ -17,6 +17,7 @@ var Farms;
|
|
|
17
17
|
Farms["solidlizard"] = "solidlizard";
|
|
18
18
|
Farms["ramses"] = "ramses";
|
|
19
19
|
Farms["velocimeter"] = "velocimeter";
|
|
20
|
+
Farms["velocore"] = "velocore";
|
|
20
21
|
Farms["radiant"] = "";
|
|
21
22
|
Farms["plutusDao"] = "";
|
|
22
23
|
Farms["pangolin"] = "pangolin";
|
|
@@ -49,6 +50,7 @@ exports.hrFarms = {
|
|
|
49
50
|
[Farms.solidlizard]: 'SolidLizard',
|
|
50
51
|
[Farms.ramses]: 'Ramses',
|
|
51
52
|
[Farms.velocimeter]: 'Velocimeter',
|
|
53
|
+
[Farms.velocore]: 'Velocore',
|
|
52
54
|
[Farms.radiant]: 'Radiant',
|
|
53
55
|
[Farms.plutusDao]: 'Plutus DAO',
|
|
54
56
|
[Farms.pangolin]: 'Pangolin',
|
|
@@ -117,6 +119,9 @@ exports.STAKED_LP_FACTORY = {
|
|
|
117
119
|
[types_1.Networks.Canto]: {
|
|
118
120
|
[Farms.velocimeter]: '0x1c813cDd6dAecE2CB83C52F0798504e42816E9C5',
|
|
119
121
|
},
|
|
122
|
+
[types_1.Networks.ZksyncEra]: {
|
|
123
|
+
[Farms.velocore]: '0x36BbDb0DEA4Aa211Dd76dF0a3201c89FD530851b',
|
|
124
|
+
},
|
|
120
125
|
[types_1.Networks.Harmony]: {},
|
|
121
126
|
[types_1.Networks.Moonbeam]: {},
|
|
122
127
|
[types_1.Networks.Sxnetwork]: {},
|
package/lib/config/subgraphs.js
CHANGED
|
@@ -39,6 +39,9 @@ exports.IMPERMAX_SUBGRAPH_URL = {
|
|
|
39
39
|
[types_1.Networks.Canto]: {
|
|
40
40
|
[types_1.Factory.SOLV2]: 'https://api.impermax.finance/subgraphs/name/impermax-finance/impermax-canto-solv2',
|
|
41
41
|
},
|
|
42
|
+
[types_1.Networks.ZksyncEra]: {
|
|
43
|
+
[types_1.Factory.SOLV2]: 'https://api.studio.thegraph.com/query/45012/impermax-zksync-era-solv2/v1.0.0',
|
|
44
|
+
},
|
|
42
45
|
[types_1.Networks.Harmony]: {},
|
|
43
46
|
[types_1.Networks.Moonbeam]: {},
|
|
44
47
|
[types_1.Networks.Sxnetwork]: {},
|
package/lib/config/types.d.ts
CHANGED
package/lib/config/types.js
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -18,14 +18,17 @@ import { BLOCKS_SUBGRAPH_URL, IMPERMAX_CHEF_SUBGRAPH_URL, IMPERMAX_SUBGRAPH_URL,
|
|
|
18
18
|
import { Address, AddressIndex, AmmIndex, DistributorDetails, Factory, FactoryIndex, LendingPoolIndex, NetworkFactoryIndex, NetworkIndex, Networks, PoolTokenType } from './config/types';
|
|
19
19
|
import SubgraphAccount from './subgraph/Account';
|
|
20
20
|
import SubgraphAccountLendingPool from './subgraph/AccountLendingPool';
|
|
21
|
+
import SubgraphAccountLendingVault from './subgraph/AccountLendingVault';
|
|
21
22
|
import SubgraphAccountPoolToken from './subgraph/AccountPoolToken';
|
|
22
23
|
import SubgraphLendingPool from './subgraph/LendingPool';
|
|
24
|
+
import SubgraphLendingVault from './subgraph/LendingVault';
|
|
23
25
|
import SubgraphPoolToken from './subgraph/PoolToken';
|
|
24
26
|
import PriceHelper from './subgraph/PriceHelper';
|
|
25
27
|
import SolidexHelper from './subgraph/SolidexHelper';
|
|
26
28
|
import ImpermaxRouterAccount from './impermax-router/Account';
|
|
27
29
|
import ImpermaxRouterAccountPoolToken from './impermax-router/AccountPoolToken';
|
|
28
30
|
import ImpermaxRouterAccountLendingPool from './impermax-router/AccountLendingPool';
|
|
31
|
+
import ImpermaxRouterAccountLendingVault from './impermax-router/AccountLendingVault';
|
|
29
32
|
import AccountBorrowable from './impermax-router/AccountBorrowable';
|
|
30
33
|
import AccountCollateral from './impermax-router/AccountCollateral';
|
|
31
34
|
import Borrowable from './impermax-router/Borrowable';
|
|
@@ -34,9 +37,11 @@ import ContractsHelper from './impermax-router/ContractsHelper';
|
|
|
34
37
|
import ImpermaxFactory from './impermax-router/ImpermaxFactory';
|
|
35
38
|
import Interactions from './impermax-router/Interactions';
|
|
36
39
|
import InteractionsLendingPool from './impermax-router/InteractionsLendingPool';
|
|
40
|
+
import InteractionsLendingVault from './impermax-router/InteractionsLendingVault';
|
|
37
41
|
import InteractionsPoolToken from './impermax-router/InteractionsPoolToken';
|
|
38
42
|
import ImpermaxRouterLendingPool from './impermax-router/LendingPool';
|
|
43
|
+
import ImpermaxRouterLendingVault from './impermax-router/LendingVault';
|
|
39
44
|
import ImpermaxRouterPoolToken from './impermax-router/PoolToken';
|
|
40
45
|
import { AirdropData, ApprovalType, Changes, Contract, ImpermaxRouterCfg, NO_CHANGES, PendingRewardUI, PermitData, Values } from './impermax-router/types';
|
|
41
46
|
import { BorrowableData, BorrowablePastData, BorrowPosition, CollateralData, CollateralPosition, FarmingPoolData, LendingPoolData, LendingPoolPastData, PairData, PoolTokenData, RewardData, SupplyPosition, TokenData, TvlData, UserData, XimxData } from './subgraph/types';
|
|
42
|
-
export { CLAIM_AGGREGATOR, IMPERMAX_CHEF, IMX, MERKLE_DISTRIBUTOR_IBEX, MERKLE_DISTRIBUTOR_IBEX_2, MERKLE_DISTRIBUTOR_ETH, ROUTER, SIMPLE_UNISWAP_ORACLE, WETH, MERKLE_URL_ETH, MERKLE_URL_IBEX, MERKLE_URL_IBEX_2, hrAmms, AMM_FACTORY, getAmmByFactory, AMM_SUBGRAPH_URLS, ADD_LIQUIDITY_URLS, AMM_LP_FEE, DEBANK_IDS, ETH_SYMBOL, ETH_NAME, SOLIDEX_FACTORIES, BORROW_FEE_FACTORIES, OLD_KINK_MULTIPLIER_FACTORIES, LIQUIDATION_FEE_FACTORIES, V2_FACTORIES, Farms, hrFarms, FarmIndex, STAKED_LP_FACTORY, getFarmByStakedLPFactory, NOT_SYNCED, DEADLINE, ZERO, APPROVE_AMOUNT, IMPERMAX_SUBGRAPH_URL, IMPERMAX_CHEF_SUBGRAPH_URL, BLOCKS_SUBGRAPH_URL, XIMX_SUBGRAPH_URL, Networks, Factory, PoolTokenType, Amms, Address, NetworkIndex, FactoryIndex, AddressIndex, NetworkFactoryIndex, LendingPoolIndex, AmmIndex, DistributorDetails, Subgraph, SubgraphAccount, SubgraphAccountLendingPool, SubgraphAccountPoolToken, SubgraphLendingPool, SubgraphPoolToken, PriceHelper, SolidexHelper, PoolTokenData, BorrowableData, CollateralData, BorrowablePastData, TokenData, RewardData, PairData, FarmingPoolData, LendingPoolPastData, LendingPoolData, CollateralPosition, SupplyPosition, BorrowPosition, UserData, TvlData, XimxData, ImpermaxRouter, ImpermaxRouterAccount, ImpermaxRouterAccountPoolToken, ImpermaxRouterAccountLendingPool, AccountBorrowable, AccountCollateral, Borrowable, Collateral, ContractsHelper, ImpermaxFactory, Interactions, InteractionsLendingPool, InteractionsPoolToken, ImpermaxRouterLendingPool, ImpermaxRouterPoolToken, Contract, ApprovalType, PermitData, ImpermaxRouterCfg, Changes, NO_CHANGES, Values, AirdropData, PendingRewardUI, };
|
|
47
|
+
export { CLAIM_AGGREGATOR, IMPERMAX_CHEF, IMX, MERKLE_DISTRIBUTOR_IBEX, MERKLE_DISTRIBUTOR_IBEX_2, MERKLE_DISTRIBUTOR_ETH, ROUTER, SIMPLE_UNISWAP_ORACLE, WETH, MERKLE_URL_ETH, MERKLE_URL_IBEX, MERKLE_URL_IBEX_2, hrAmms, AMM_FACTORY, getAmmByFactory, AMM_SUBGRAPH_URLS, ADD_LIQUIDITY_URLS, AMM_LP_FEE, DEBANK_IDS, ETH_SYMBOL, ETH_NAME, SOLIDEX_FACTORIES, BORROW_FEE_FACTORIES, OLD_KINK_MULTIPLIER_FACTORIES, LIQUIDATION_FEE_FACTORIES, V2_FACTORIES, Farms, hrFarms, FarmIndex, STAKED_LP_FACTORY, getFarmByStakedLPFactory, NOT_SYNCED, DEADLINE, ZERO, APPROVE_AMOUNT, IMPERMAX_SUBGRAPH_URL, IMPERMAX_CHEF_SUBGRAPH_URL, BLOCKS_SUBGRAPH_URL, XIMX_SUBGRAPH_URL, Networks, Factory, PoolTokenType, Amms, Address, NetworkIndex, FactoryIndex, AddressIndex, NetworkFactoryIndex, LendingPoolIndex, AmmIndex, DistributorDetails, Subgraph, SubgraphAccount, SubgraphAccountLendingPool, SubgraphAccountLendingVault, SubgraphAccountPoolToken, SubgraphLendingPool, SubgraphLendingVault, SubgraphPoolToken, PriceHelper, SolidexHelper, PoolTokenData, BorrowableData, CollateralData, BorrowablePastData, TokenData, RewardData, PairData, FarmingPoolData, LendingPoolPastData, LendingPoolData, CollateralPosition, SupplyPosition, BorrowPosition, UserData, TvlData, XimxData, ImpermaxRouter, ImpermaxRouterAccount, ImpermaxRouterAccountPoolToken, ImpermaxRouterAccountLendingPool, ImpermaxRouterAccountLendingVault, AccountBorrowable, AccountCollateral, Borrowable, Collateral, ContractsHelper, ImpermaxFactory, Interactions, InteractionsLendingPool, InteractionsLendingVault, InteractionsPoolToken, ImpermaxRouterLendingPool, ImpermaxRouterLendingVault, ImpermaxRouterPoolToken, Contract, ApprovalType, PermitData, ImpermaxRouterCfg, Changes, NO_CHANGES, Values, AirdropData, PendingRewardUI, };
|
package/lib/index.js
CHANGED
|
@@ -3,8 +3,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
7
|
-
exports.NO_CHANGES = exports.ApprovalType = exports.ImpermaxRouterPoolToken = exports.ImpermaxRouterLendingPool = exports.InteractionsPoolToken = exports.InteractionsLendingPool = exports.Interactions = exports.ImpermaxFactory = exports.ContractsHelper = exports.Collateral = exports.Borrowable = exports.AccountCollateral = exports.AccountBorrowable = exports.ImpermaxRouterAccountLendingPool = exports.ImpermaxRouterAccountPoolToken = exports.ImpermaxRouterAccount = exports.ImpermaxRouter = void 0;
|
|
6
|
+
exports.SubgraphPoolToken = exports.SubgraphLendingVault = exports.SubgraphLendingPool = exports.SubgraphAccountPoolToken = exports.SubgraphAccountLendingVault = exports.SubgraphAccountLendingPool = exports.SubgraphAccount = exports.Subgraph = exports.Amms = exports.PoolTokenType = exports.Factory = exports.Networks = exports.XIMX_SUBGRAPH_URL = exports.BLOCKS_SUBGRAPH_URL = exports.IMPERMAX_CHEF_SUBGRAPH_URL = exports.IMPERMAX_SUBGRAPH_URL = exports.APPROVE_AMOUNT = exports.ZERO = exports.DEADLINE = exports.NOT_SYNCED = exports.getFarmByStakedLPFactory = exports.STAKED_LP_FACTORY = exports.hrFarms = exports.Farms = exports.V2_FACTORIES = exports.LIQUIDATION_FEE_FACTORIES = exports.OLD_KINK_MULTIPLIER_FACTORIES = exports.BORROW_FEE_FACTORIES = exports.SOLIDEX_FACTORIES = exports.ETH_NAME = exports.ETH_SYMBOL = exports.DEBANK_IDS = exports.AMM_LP_FEE = exports.ADD_LIQUIDITY_URLS = exports.AMM_SUBGRAPH_URLS = exports.getAmmByFactory = exports.AMM_FACTORY = exports.hrAmms = exports.MERKLE_URL_IBEX_2 = exports.MERKLE_URL_IBEX = exports.MERKLE_URL_ETH = exports.WETH = exports.SIMPLE_UNISWAP_ORACLE = exports.ROUTER = exports.MERKLE_DISTRIBUTOR_ETH = exports.MERKLE_DISTRIBUTOR_IBEX_2 = exports.MERKLE_DISTRIBUTOR_IBEX = exports.IMX = exports.IMPERMAX_CHEF = exports.CLAIM_AGGREGATOR = void 0;
|
|
7
|
+
exports.NO_CHANGES = exports.ApprovalType = exports.ImpermaxRouterPoolToken = exports.ImpermaxRouterLendingVault = exports.ImpermaxRouterLendingPool = exports.InteractionsPoolToken = exports.InteractionsLendingVault = exports.InteractionsLendingPool = exports.Interactions = exports.ImpermaxFactory = exports.ContractsHelper = exports.Collateral = exports.Borrowable = exports.AccountCollateral = exports.AccountBorrowable = exports.ImpermaxRouterAccountLendingVault = exports.ImpermaxRouterAccountLendingPool = exports.ImpermaxRouterAccountPoolToken = exports.ImpermaxRouterAccount = exports.ImpermaxRouter = exports.SolidexHelper = exports.PriceHelper = void 0;
|
|
8
8
|
const subgraph_1 = __importDefault(require("./subgraph"));
|
|
9
9
|
exports.Subgraph = subgraph_1.default;
|
|
10
10
|
const impermax_router_1 = __importDefault(require("./impermax-router"));
|
|
@@ -71,10 +71,14 @@ const Account_1 = __importDefault(require("./subgraph/Account"));
|
|
|
71
71
|
exports.SubgraphAccount = Account_1.default;
|
|
72
72
|
const AccountLendingPool_1 = __importDefault(require("./subgraph/AccountLendingPool"));
|
|
73
73
|
exports.SubgraphAccountLendingPool = AccountLendingPool_1.default;
|
|
74
|
+
const AccountLendingVault_1 = __importDefault(require("./subgraph/AccountLendingVault"));
|
|
75
|
+
exports.SubgraphAccountLendingVault = AccountLendingVault_1.default;
|
|
74
76
|
const AccountPoolToken_1 = __importDefault(require("./subgraph/AccountPoolToken"));
|
|
75
77
|
exports.SubgraphAccountPoolToken = AccountPoolToken_1.default;
|
|
76
78
|
const LendingPool_1 = __importDefault(require("./subgraph/LendingPool"));
|
|
77
79
|
exports.SubgraphLendingPool = LendingPool_1.default;
|
|
80
|
+
const LendingVault_1 = __importDefault(require("./subgraph/LendingVault"));
|
|
81
|
+
exports.SubgraphLendingVault = LendingVault_1.default;
|
|
78
82
|
const PoolToken_1 = __importDefault(require("./subgraph/PoolToken"));
|
|
79
83
|
exports.SubgraphPoolToken = PoolToken_1.default;
|
|
80
84
|
const PriceHelper_1 = __importDefault(require("./subgraph/PriceHelper"));
|
|
@@ -87,6 +91,8 @@ const AccountPoolToken_2 = __importDefault(require("./impermax-router/AccountPoo
|
|
|
87
91
|
exports.ImpermaxRouterAccountPoolToken = AccountPoolToken_2.default;
|
|
88
92
|
const AccountLendingPool_2 = __importDefault(require("./impermax-router/AccountLendingPool"));
|
|
89
93
|
exports.ImpermaxRouterAccountLendingPool = AccountLendingPool_2.default;
|
|
94
|
+
const AccountLendingVault_2 = __importDefault(require("./impermax-router/AccountLendingVault"));
|
|
95
|
+
exports.ImpermaxRouterAccountLendingVault = AccountLendingVault_2.default;
|
|
90
96
|
const AccountBorrowable_1 = __importDefault(require("./impermax-router/AccountBorrowable"));
|
|
91
97
|
exports.AccountBorrowable = AccountBorrowable_1.default;
|
|
92
98
|
const AccountCollateral_1 = __importDefault(require("./impermax-router/AccountCollateral"));
|
|
@@ -103,10 +109,14 @@ const Interactions_1 = __importDefault(require("./impermax-router/Interactions")
|
|
|
103
109
|
exports.Interactions = Interactions_1.default;
|
|
104
110
|
const InteractionsLendingPool_1 = __importDefault(require("./impermax-router/InteractionsLendingPool"));
|
|
105
111
|
exports.InteractionsLendingPool = InteractionsLendingPool_1.default;
|
|
112
|
+
const InteractionsLendingVault_1 = __importDefault(require("./impermax-router/InteractionsLendingVault"));
|
|
113
|
+
exports.InteractionsLendingVault = InteractionsLendingVault_1.default;
|
|
106
114
|
const InteractionsPoolToken_1 = __importDefault(require("./impermax-router/InteractionsPoolToken"));
|
|
107
115
|
exports.InteractionsPoolToken = InteractionsPoolToken_1.default;
|
|
108
116
|
const LendingPool_2 = __importDefault(require("./impermax-router/LendingPool"));
|
|
109
117
|
exports.ImpermaxRouterLendingPool = LendingPool_2.default;
|
|
118
|
+
const LendingVault_2 = __importDefault(require("./impermax-router/LendingVault"));
|
|
119
|
+
exports.ImpermaxRouterLendingVault = LendingVault_2.default;
|
|
110
120
|
const PoolToken_2 = __importDefault(require("./impermax-router/PoolToken"));
|
|
111
121
|
exports.ImpermaxRouterPoolToken = PoolToken_2.default;
|
|
112
122
|
const types_2 = require("./impermax-router/types");
|