@gearbox-protocol/deploy-tools 5.17.2 → 5.17.3

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.
Files changed (2) hide show
  1. package/dist/index.mjs +11 -7
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -380164,11 +380164,15 @@ var GearboxSDK = class _GearboxSDK {
380164
380164
  `address provider version: ${this.#addressProvider.version}`
380165
380165
  );
380166
380166
  await this.#addressProvider.syncState(this.currentBlock);
380167
- const botListAddress = this.#addressProvider.getAddress(
380168
- AP_BOT_LIST,
380169
- NO_VERSION
380170
- );
380171
- this.#botListContract = new BotListContract(this, botListAddress);
380167
+ try {
380168
+ const botListAddress = this.#addressProvider.getAddress(
380169
+ AP_BOT_LIST,
380170
+ NO_VERSION
380171
+ );
380172
+ this.#botListContract = new BotListContract(this, botListAddress);
380173
+ } catch (e) {
380174
+ this.logger?.error(e);
380175
+ }
380172
380176
  this.#gear = this.#addressProvider.getAddress(AP_GEAR_TOKEN, NO_VERSION);
380173
380177
  const gearStakingAddress = this.#addressProvider.getAddress(
380174
380178
  AP_GEAR_STAKING,
@@ -413408,7 +413412,7 @@ function getRenderer(opts) {
413408
413412
  var package_default = {
413409
413413
  name: "@gearbox-protocol/deploy-tools",
413410
413414
  description: "Gearbox deploy tools",
413411
- version: "5.17.2",
413415
+ version: "5.17.3",
413412
413416
  homepage: "https://gearbox.fi",
413413
413417
  keywords: [
413414
413418
  "gearbox"
@@ -413451,7 +413455,7 @@ var package_default = {
413451
413455
  "@gearbox-protocol/deploy-tools-node": "0.0.0",
413452
413456
  "@gearbox-protocol/deploy-tools-shared": "0.0.0",
413453
413457
  "@gearbox-protocol/deploy-tools-types": "0.0.0",
413454
- "@gearbox-protocol/sdk": "3.0.0-vfour.289",
413458
+ "@gearbox-protocol/sdk": "3.0.0-vfour.290",
413455
413459
  "@gearbox-protocol/sdk-gov": "^2.36.5",
413456
413460
  "@types/lodash-es": "^4.17.12",
413457
413461
  "@types/node": "^22.13.5",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/deploy-tools",
3
3
  "description": "Gearbox deploy tools",
4
- "version": "5.17.2",
4
+ "version": "5.17.3",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"
@@ -44,7 +44,7 @@
44
44
  "@gearbox-protocol/deploy-tools-node": "0.0.0",
45
45
  "@gearbox-protocol/deploy-tools-shared": "0.0.0",
46
46
  "@gearbox-protocol/deploy-tools-types": "0.0.0",
47
- "@gearbox-protocol/sdk": "3.0.0-vfour.289",
47
+ "@gearbox-protocol/sdk": "3.0.0-vfour.290",
48
48
  "@gearbox-protocol/sdk-gov": "^2.36.5",
49
49
  "@types/lodash-es": "^4.17.12",
50
50
  "@types/node": "^22.13.5",