@curvefi/llamalend-api 2.0.15 → 2.0.17

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.
@@ -25,7 +25,7 @@ export const ALIASES_ARBITRUM = lowerCaseValues({
25
25
  export const ALIASES_OPTIMISM = lowerCaseValues({
26
26
  "crv": "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53",
27
27
  "one_way_factory": "0x5EA8f3D674C70b020586933A0a5b250734798BeF",
28
- "one_way_factory_v2": "0x68f33663b76874166Bf3C3cB2D7C117dFf38a262",
28
+ "one_way_factory_v2": "0x1973ED17c267245510a390e0dce4FBcD9D2685f0",
29
29
  "gauge_controller": "0x2F50D538606Fa9EDD2B11E2446BEb18C9D5846bB",
30
30
  "gauge_factory_old": "0xabC000d88f23Bb45525E447528DBF656A9D55bf5",
31
31
  "gauge_factory": "0x871fBD4E01012e2E8457346059e8C189d664DbA4",
package/lib/llamalend.js CHANGED
@@ -137,7 +137,6 @@ class Llamalend {
137
137
  this.fetchStats = (amms_1, controllers_1, vaults_1, borrowed_tokens_1, collateral_tokens_1, ...args_1) => __awaiter(this, [amms_1, controllers_1, vaults_1, borrowed_tokens_1, collateral_tokens_1, ...args_1], void 0, function* (amms, controllers, vaults, borrowed_tokens, collateral_tokens, version = 'v1') {
138
138
  cacheStats.clear();
139
139
  const marketCount = controllers.length;
140
- console.log(controllers.length);
141
140
  const calls = [];
142
141
  for (let i = 0; i < marketCount; i++) {
143
142
  calls.push(createCall(this.contracts[controllers[i]], 'total_debt', []));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curvefi/llamalend-api",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
4
4
  "description": "JavaScript library for Curve Lending",
5
5
  "main": "lib/index.js",
6
6
  "author": "Macket",
@@ -29,7 +29,7 @@ export const ALIASES_ARBITRUM = lowerCaseValues({
29
29
  export const ALIASES_OPTIMISM = lowerCaseValues({
30
30
  "crv": "0x0994206dfE8De6Ec6920FF4D779B0d950605Fb53",
31
31
  "one_way_factory": "0x5EA8f3D674C70b020586933A0a5b250734798BeF",
32
- "one_way_factory_v2": "0x68f33663b76874166Bf3C3cB2D7C117dFf38a262",
32
+ "one_way_factory_v2": "0x1973ED17c267245510a390e0dce4FBcD9D2685f0",
33
33
  "gauge_controller": "0x2F50D538606Fa9EDD2B11E2446BEb18C9D5846bB",
34
34
  "gauge_factory_old": "0xabC000d88f23Bb45525E447528DBF656A9D55bf5",
35
35
  "gauge_factory": "0x871fBD4E01012e2E8457346059e8C189d664DbA4",
@@ -59,4 +59,4 @@ export const ALIASES_SONIC = lowerCaseValues({
59
59
  "leverage_zap": "0x0fE38dCC905eC14F6099a83Ac5C93BF2601300CF", // odos v3
60
60
  "leverage_zap_v2": "0x0000000000000000000000000000000000000000",
61
61
  "leverage_markets_start_id": "0",
62
- });
62
+ });
package/src/llamalend.ts CHANGED
@@ -544,7 +544,6 @@ class Llamalend implements ILlamalend {
544
544
  cacheStats.clear();
545
545
 
546
546
  const marketCount = controllers.length;
547
- console.log(controllers.length)
548
547
 
549
548
  const calls: Call[] = [];
550
549