@gearbox-protocol/sdk 3.0.0-vfour.21 → 3.0.0-vfour.22

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.
@@ -14862,8 +14862,8 @@ var PriceFeedRegister = class extends SDKConstruct {
14862
14862
  this.logger = childLogger("PriceFeedRegister", sdk.logger);
14863
14863
  this.#redstoneUpdater = new RedstoneUpdater(sdk);
14864
14864
  }
14865
- addHook = this.#hooks.addHook.bind(this);
14866
- removeHook = this.#hooks.removeHook.bind(this);
14865
+ addHook = this.#hooks.addHook.bind(this.#hooks);
14866
+ removeHook = this.#hooks.removeHook.bind(this.#hooks);
14867
14867
  /**
14868
14868
  * Returns RawTxs to update price feeds
14869
14869
  * @param priceFeeds top-level price feeds, actual updatable price feeds will be derived. If not provided will use all price feeds that are attached
@@ -15431,8 +15431,8 @@ var RouterV3Contract = class extends BaseContract {
15431
15431
  });
15432
15432
  this.#connectors = sdkGov.getConnectors(sdk.provider.networkType);
15433
15433
  }
15434
- addHook = this.#hooks.addHook.bind(this);
15435
- removeHook = this.#hooks.removeHook.bind(this);
15434
+ addHook = this.#hooks.addHook.bind(this.#hooks);
15435
+ removeHook = this.#hooks.removeHook.bind(this.#hooks);
15436
15436
  /**
15437
15437
  * Finds all available swaps for NORMAL tokens
15438
15438
  * @param ca
@@ -14860,8 +14860,8 @@ var PriceFeedRegister = class extends SDKConstruct {
14860
14860
  this.logger = childLogger("PriceFeedRegister", sdk.logger);
14861
14861
  this.#redstoneUpdater = new RedstoneUpdater(sdk);
14862
14862
  }
14863
- addHook = this.#hooks.addHook.bind(this);
14864
- removeHook = this.#hooks.removeHook.bind(this);
14863
+ addHook = this.#hooks.addHook.bind(this.#hooks);
14864
+ removeHook = this.#hooks.removeHook.bind(this.#hooks);
14865
14865
  /**
14866
14866
  * Returns RawTxs to update price feeds
14867
14867
  * @param priceFeeds top-level price feeds, actual updatable price feeds will be derived. If not provided will use all price feeds that are attached
@@ -15429,8 +15429,8 @@ var RouterV3Contract = class extends BaseContract {
15429
15429
  });
15430
15430
  this.#connectors = getConnectors(sdk.provider.networkType);
15431
15431
  }
15432
- addHook = this.#hooks.addHook.bind(this);
15433
- removeHook = this.#hooks.removeHook.bind(this);
15432
+ addHook = this.#hooks.addHook.bind(this.#hooks);
15433
+ removeHook = this.#hooks.removeHook.bind(this.#hooks);
15434
15434
  /**
15435
15435
  * Finds all available swaps for NORMAL tokens
15436
15436
  * @param ca
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-vfour.21",
3
+ "version": "3.0.0-vfour.22",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "sideEffects": false,