@gearbox-protocol/sdk 3.0.0-vfour.307 → 3.0.0-vfour.309

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.
@@ -54,7 +54,7 @@ class AbstractAddressProviderContract extends import_base.BaseContract {
54
54
  }
55
55
  getLatestVersion(contract) {
56
56
  const version = this.#latest[contract];
57
- if (!version) {
57
+ if (version === void 0) {
58
58
  throw new Error(`Latest version for ${contract} not found`);
59
59
  }
60
60
  this.logger?.debug(`Latest version found for ${contract} : ${version}`);
@@ -42,7 +42,8 @@ const connectors = {
42
42
  "eBTC",
43
43
  "LBTC",
44
44
  "solvBTC",
45
- "pumpBTC"
45
+ "pumpBTC",
46
+ "waEthLidowstETH"
46
47
  ],
47
48
  Arbitrum: ["WETH", "DAI", "USDC", "USDT", "rETH", "USDC_e", "wstETH"],
48
49
  Optimism: ["WETH", "USDC", "USDT", "USDC_e", "wstETH"],
@@ -31,7 +31,7 @@ class AbstractAddressProviderContract extends BaseContract {
31
31
  }
32
32
  getLatestVersion(contract) {
33
33
  const version = this.#latest[contract];
34
- if (!version) {
34
+ if (version === void 0) {
35
35
  throw new Error(`Latest version for ${contract} not found`);
36
36
  }
37
37
  this.logger?.debug(`Latest version found for ${contract} : ${version}`);
@@ -18,7 +18,8 @@ const connectors = {
18
18
  "eBTC",
19
19
  "LBTC",
20
20
  "solvBTC",
21
- "pumpBTC"
21
+ "pumpBTC",
22
+ "waEthLidowstETH"
22
23
  ],
23
24
  Arbitrum: ["WETH", "DAI", "USDC", "USDT", "rETH", "USDC_e", "wstETH"],
24
25
  Optimism: ["WETH", "USDC", "USDT", "USDC_e", "wstETH"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-vfour.307",
3
+ "version": "3.0.0-vfour.309",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/sdk/index.js",