@gearbox-protocol/deploy-tools 5.13.5 → 5.14.1

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 +2552 -428
  2. package/package.json +8 -8
package/dist/index.mjs CHANGED
@@ -4276,7 +4276,7 @@ var init_size = __esm({
4276
4276
  var version2;
4277
4277
  var init_version2 = __esm({
4278
4278
  "../../node_modules/viem/_esm/errors/version.js"() {
4279
- version2 = "2.23.2";
4279
+ version2 = "2.23.5";
4280
4280
  }
4281
4281
  });
4282
4282
 
@@ -64810,6 +64810,7 @@ var require_get_intrinsic = __commonJS({
64810
64810
  "%eval%": eval,
64811
64811
  // eslint-disable-line no-eval
64812
64812
  "%EvalError%": $EvalError,
64813
+ "%Float16Array%": typeof Float16Array === "undefined" ? undefined2 : Float16Array,
64813
64814
  "%Float32Array%": typeof Float32Array === "undefined" ? undefined2 : Float32Array,
64814
64815
  "%Float64Array%": typeof Float64Array === "undefined" ? undefined2 : Float64Array,
64815
64816
  "%FinalizationRegistry%": typeof FinalizationRegistry === "undefined" ? undefined2 : FinalizationRegistry,
@@ -66788,6 +66789,7 @@ var require_axios = __commonJS({
66788
66789
  "../../node_modules/axios/dist/node/axios.cjs"(exports2, module2) {
66789
66790
  "use strict";
66790
66791
  var FormData$1 = require_form_data();
66792
+ var crypto3 = __require("crypto");
66791
66793
  var url = __require("url");
66792
66794
  var proxyFromEnv = require_proxy_from_env();
66793
66795
  var http2 = __require("http");
@@ -66801,6 +66803,7 @@ var require_axios = __commonJS({
66801
66803
  return e && typeof e === "object" && "default" in e ? e : { "default": e };
66802
66804
  }
66803
66805
  var FormData__default = /* @__PURE__ */ _interopDefaultLegacy(FormData$1);
66806
+ var crypto__default = /* @__PURE__ */ _interopDefaultLegacy(crypto3);
66804
66807
  var url__default = /* @__PURE__ */ _interopDefaultLegacy(url);
66805
66808
  var proxyFromEnv__default = /* @__PURE__ */ _interopDefaultLegacy(proxyFromEnv);
66806
66809
  var http__default = /* @__PURE__ */ _interopDefaultLegacy(http2);
@@ -67069,21 +67072,6 @@ var require_axios = __commonJS({
67069
67072
  var toFiniteNumber = (value, defaultValue) => {
67070
67073
  return value != null && Number.isFinite(value = +value) ? value : defaultValue;
67071
67074
  };
67072
- var ALPHA = "abcdefghijklmnopqrstuvwxyz";
67073
- var DIGIT = "0123456789";
67074
- var ALPHABET = {
67075
- DIGIT,
67076
- ALPHA,
67077
- ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
67078
- };
67079
- var generateString = (size5 = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
67080
- let str = "";
67081
- const { length } = alphabet;
67082
- while (size5--) {
67083
- str += alphabet[Math.random() * length | 0];
67084
- }
67085
- return str;
67086
- };
67087
67075
  function isSpecCompliantForm(thing) {
67088
67076
  return !!(thing && isFunction2(thing.append) && thing[Symbol.toStringTag] === "FormData" && thing[Symbol.iterator]);
67089
67077
  }
@@ -67182,8 +67170,6 @@ var require_axios = __commonJS({
67182
67170
  findKey: findKey2,
67183
67171
  global: _global,
67184
67172
  isContextDefined,
67185
- ALPHABET,
67186
- generateString,
67187
67173
  isSpecCompliantForm,
67188
67174
  toJSONObject,
67189
67175
  isAsyncFn,
@@ -67499,6 +67485,23 @@ var require_axios = __commonJS({
67499
67485
  clarifyTimeoutError: false
67500
67486
  };
67501
67487
  var URLSearchParams = url__default["default"].URLSearchParams;
67488
+ var ALPHA = "abcdefghijklmnopqrstuvwxyz";
67489
+ var DIGIT = "0123456789";
67490
+ var ALPHABET = {
67491
+ DIGIT,
67492
+ ALPHA,
67493
+ ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
67494
+ };
67495
+ var generateString = (size5 = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
67496
+ let str = "";
67497
+ const { length } = alphabet;
67498
+ const randomValues = new Uint32Array(size5);
67499
+ crypto__default["default"].randomFillSync(randomValues);
67500
+ for (let i = 0; i < size5; i++) {
67501
+ str += alphabet[randomValues[i] % length];
67502
+ }
67503
+ return str;
67504
+ };
67502
67505
  var platform$1 = {
67503
67506
  isNode: true,
67504
67507
  classes: {
@@ -67506,6 +67509,8 @@ var require_axios = __commonJS({
67506
67509
  FormData: FormData__default["default"],
67507
67510
  Blob: typeof Blob !== "undefined" && Blob || null
67508
67511
  },
67512
+ ALPHABET,
67513
+ generateString,
67509
67514
  protocols: ["http", "https", "file", "data"]
67510
67515
  };
67511
67516
  var hasBrowserEnv = typeof window !== "undefined" && typeof document !== "undefined";
@@ -67999,13 +68004,14 @@ var require_axios = __commonJS({
67999
68004
  function combineURLs(baseURL, relativeURL) {
68000
68005
  return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
68001
68006
  }
68002
- function buildFullPath(baseURL, requestedURL) {
68003
- if (baseURL && !isAbsoluteURL(requestedURL)) {
68007
+ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
68008
+ let isRelativeUrl = !isAbsoluteURL(requestedURL);
68009
+ if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
68004
68010
  return combineURLs(baseURL, requestedURL);
68005
68011
  }
68006
68012
  return requestedURL;
68007
68013
  }
68008
- var VERSION = "1.7.9";
68014
+ var VERSION = "1.8.1";
68009
68015
  function parseProtocol(url2) {
68010
68016
  const match2 = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
68011
68017
  return match2 && match2[1] || "";
@@ -68162,7 +68168,7 @@ var require_axios = __commonJS({
68162
68168
  }
68163
68169
  };
68164
68170
  var readBlob$1 = readBlob;
68165
- var BOUNDARY_ALPHABET = utils$1.ALPHABET.ALPHA_DIGIT + "-_";
68171
+ var BOUNDARY_ALPHABET = platform.ALPHABET.ALPHA_DIGIT + "-_";
68166
68172
  var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new util__default["default"].TextEncoder();
68167
68173
  var CRLF = "\r\n";
68168
68174
  var CRLF_BYTES = textEncoder.encode(CRLF);
@@ -68205,7 +68211,7 @@ var require_axios = __commonJS({
68205
68211
  const {
68206
68212
  tag = "form-data-boundary",
68207
68213
  size: size5 = 25,
68208
- boundary = tag + "-" + utils$1.generateString(size5, BOUNDARY_ALPHABET)
68214
+ boundary = tag + "-" + platform.generateString(size5, BOUNDARY_ALPHABET)
68209
68215
  } = options || {};
68210
68216
  if (!utils$1.isFormData(form)) {
68211
68217
  throw TypeError("FormData instance required");
@@ -69633,6 +69639,12 @@ var require_axios = __commonJS({
69633
69639
  }, true);
69634
69640
  }
69635
69641
  }
69642
+ if (config.allowAbsoluteUrls !== void 0) ;
69643
+ else if (this.defaults.allowAbsoluteUrls !== void 0) {
69644
+ config.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls;
69645
+ } else {
69646
+ config.allowAbsoluteUrls = true;
69647
+ }
69636
69648
  validator.assertOptions(config, {
69637
69649
  baseUrl: validators.spelling("baseURL"),
69638
69650
  withXsrfToken: validators.spelling("withXSRFToken")
@@ -69703,7 +69715,7 @@ var require_axios = __commonJS({
69703
69715
  }
69704
69716
  getUri(config) {
69705
69717
  config = mergeConfig(this.defaults, config);
69706
- const fullPath = buildFullPath(config.baseURL, config.url);
69718
+ const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
69707
69719
  return buildURL(fullPath, config.params, config.paramsSerializer);
69708
69720
  }
69709
69721
  };
@@ -75434,8 +75446,8 @@ var require_time = __commonJS({
75434
75446
  }
75435
75447
  };
75436
75448
  exports2.timeout = timeout;
75437
- var sleep = (ms) => new Promise((resolve2, _rejects) => setTimeout(resolve2, ms));
75438
- exports2.sleep = sleep;
75449
+ var sleep2 = (ms) => new Promise((resolve2, _rejects) => setTimeout(resolve2, ms));
75450
+ exports2.sleep = sleep2;
75439
75451
  var msToMin = (ms) => ms / 6e4;
75440
75452
  exports2.msToMin = msToMin;
75441
75453
  var minToMs = (min) => min * 6e4;
@@ -77928,7 +77940,7 @@ var require_lodash = __commonJS({
77928
77940
  if (typeof func != "function") {
77929
77941
  throw new TypeError2(FUNC_ERROR_TEXT2);
77930
77942
  }
77931
- return setTimeout3(function() {
77943
+ return setTimeout2(function() {
77932
77944
  func.apply(undefined2, args);
77933
77945
  }, wait2);
77934
77946
  }
@@ -79759,7 +79771,7 @@ var require_lodash = __commonJS({
79759
79771
  return object[key];
79760
79772
  }
79761
79773
  var setData = shortOut(baseSetData);
79762
- var setTimeout3 = ctxSetTimeout || function(func, wait2) {
79774
+ var setTimeout2 = ctxSetTimeout || function(func, wait2) {
79763
79775
  return root2.setTimeout(func, wait2);
79764
79776
  };
79765
79777
  var setToString = shortOut(baseSetToString);
@@ -80551,7 +80563,7 @@ var require_lodash = __commonJS({
80551
80563
  }
80552
80564
  function leadingEdge(time) {
80553
80565
  lastInvokeTime = time;
80554
- timerId = setTimeout3(timerExpired, wait2);
80566
+ timerId = setTimeout2(timerExpired, wait2);
80555
80567
  return leading ? invokeFunc(time) : result2;
80556
80568
  }
80557
80569
  function remainingWait(time) {
@@ -80567,7 +80579,7 @@ var require_lodash = __commonJS({
80567
80579
  if (shouldInvoke(time)) {
80568
80580
  return trailingEdge(time);
80569
80581
  }
80570
- timerId = setTimeout3(timerExpired, remainingWait(time));
80582
+ timerId = setTimeout2(timerExpired, remainingWait(time));
80571
80583
  }
80572
80584
  function trailingEdge(time) {
80573
80585
  timerId = undefined2;
@@ -80598,12 +80610,12 @@ var require_lodash = __commonJS({
80598
80610
  }
80599
80611
  if (maxing) {
80600
80612
  clearTimeout2(timerId);
80601
- timerId = setTimeout3(timerExpired, wait2);
80613
+ timerId = setTimeout2(timerExpired, wait2);
80602
80614
  return invokeFunc(lastCallTime);
80603
80615
  }
80604
80616
  }
80605
80617
  if (timerId === undefined2) {
80606
- timerId = setTimeout3(timerExpired, wait2);
80618
+ timerId = setTimeout2(timerExpired, wait2);
80607
80619
  }
80608
80620
  return result2;
80609
80621
  }
@@ -89165,6 +89177,42 @@ var require_balancer = __commonJS({
89165
89177
  underlying: ["wstETH", "sfrxETH", "rETH"],
89166
89178
  poolId: "0x5f8893506ddc4c271837187d14a9c87964a074dc000000000000000000000106"
89167
89179
  },
89180
+ bpt_rsb: {
89181
+ name: "Ringing Stable Beets",
89182
+ symbol: "bpt_rsb",
89183
+ type: {
89184
+ AllNetworks: tokenType_1.TokenType.BALANCER_LP_TOKEN
89185
+ },
89186
+ underlying: ["USDC", "scUSD"],
89187
+ poolId: "0xcd4d2b142235d5650ffa6a38787ed0b7d7a51c0c000000000000000000000037"
89188
+ },
89189
+ bpt_sss: {
89190
+ name: "Staked Sonic Symphony",
89191
+ symbol: "bpt_sss",
89192
+ type: {
89193
+ AllNetworks: tokenType_1.TokenType.BALANCER_LP_TOKEN
89194
+ },
89195
+ underlying: ["wS", "stS"],
89196
+ poolId: "0x374641076b68371e69d03c417dac3e5f236c32fa000000000000000000000006"
89197
+ },
89198
+ BPT_scUSD_stS: {
89199
+ name: "Put A Ring On It",
89200
+ symbol: "BPT_scUSD_stS",
89201
+ type: {
89202
+ AllNetworks: tokenType_1.TokenType.BALANCER_LP_TOKEN
89203
+ },
89204
+ underlying: ["scUSD", "stS"],
89205
+ poolId: "0x25ca5451cd5a50ab1d324b5e64f32c0799661891000200000000000000000018"
89206
+ },
89207
+ BPT_USDCe_stS: {
89208
+ name: "Staked Sonic & Circle Concerto",
89209
+ symbol: "BPT_USDCe_stS",
89210
+ type: {
89211
+ AllNetworks: tokenType_1.TokenType.BALANCER_LP_TOKEN
89212
+ },
89213
+ underlying: ["USDC", "stS"],
89214
+ poolId: "0x713fb5036dc70012588d77a5b066f1dd05c712d7000200000000000000000041"
89215
+ },
89168
89216
  tETH_wstETH_BPT: {
89169
89217
  name: "Balancer tETH/wstETH",
89170
89218
  symbol: "tETH_wstETH_BPT",
@@ -90017,6 +90065,13 @@ var require_curveLP = __commonJS({
90017
90065
  pool: "CURVE_pzETH_stETH_POOL",
90018
90066
  tokenOut: ["pzETH", "wstETH"]
90019
90067
  },
90068
+ USDLUSDC: {
90069
+ name: "Curve USDL/USDC LP",
90070
+ symbol: "USDLUSDC",
90071
+ type: { AllNetworks: tokenType_1.TokenType.CURVE_LP_TOKEN },
90072
+ pool: "CURVE_USDL_USDC_POOL",
90073
+ tokenOut: ["USDL", "USDC"]
90074
+ },
90020
90075
  ...exports2.curveMetaTokens
90021
90076
  };
90022
90077
  var isCurveLPToken2 = (t) => typeof t === "string" && !!exports2.curveTokens[t];
@@ -90069,6 +90124,9 @@ var require_decimals = __commonJS({
90069
90124
  SKY: 18,
90070
90125
  WLD: 18,
90071
90126
  OP: 18,
90127
+ wS: 18,
90128
+ scUSD: 6,
90129
+ stS: 18,
90072
90130
  GHO: 18,
90073
90131
  LBTC: 8,
90074
90132
  eBTC: 8,
@@ -90084,6 +90142,7 @@ var require_decimals = __commonJS({
90084
90142
  cbETH: 18,
90085
90143
  USDe: 18,
90086
90144
  PENDLE: 18,
90145
+ MORPHO: 18,
90087
90146
  pufETH: 18,
90088
90147
  USDS: 18,
90089
90148
  PT_rsETH_26SEP2024: 18,
@@ -90124,6 +90183,7 @@ var require_decimals = __commonJS({
90124
90183
  tETHwstETH: 18,
90125
90184
  tETHweETH: 18,
90126
90185
  pzETHstETH: 18,
90186
+ USDLUSDC: 18,
90127
90187
  llamathena: 18,
90128
90188
  crvUSDUSDT: 18,
90129
90189
  crvUSDETHCRV: 18,
@@ -90203,6 +90263,7 @@ var require_decimals = __commonJS({
90203
90263
  dDOLAV3: 18,
90204
90264
  dtBTCV3: 18,
90205
90265
  dwstETHV3: 18,
90266
+ dwSV3: 18,
90206
90267
  dUSDC_eV3: 6,
90207
90268
  sdUSDC_eV3: 6,
90208
90269
  GEAR: 18,
@@ -90235,6 +90296,10 @@ var require_decimals = __commonJS({
90235
90296
  pumpBTC_WBTC_BPT: 18,
90236
90297
  eBTC_WBTC_BPT: 18,
90237
90298
  sUSDe_USDC_BPT: 18,
90299
+ bpt_rsb: 18,
90300
+ bpt_sss: 18,
90301
+ BPT_scUSD_stS: 18,
90302
+ BPT_USDCe_stS: 18,
90238
90303
  tETH_wstETH_BPT: 18,
90239
90304
  auraB_rETH_STABLE: 18,
90240
90305
  auraB_rETH_STABLE_vault: 18,
@@ -90284,6 +90349,9 @@ var require_decimals = __commonJS({
90284
90349
  scrvUSD: 18,
90285
90350
  tETH: 18,
90286
90351
  T: 18,
90352
+ USDL: 18,
90353
+ wUSDL: 18,
90354
+ csUSDL: 18,
90287
90355
  beraSTONE: 18,
90288
90356
  rETH: 18,
90289
90357
  rETH_f: 18,
@@ -90408,6 +90476,11 @@ var require_gear = __commonJS({
90408
90476
  name: "dwstETHV3",
90409
90477
  symbol: "dwstETHV3",
90410
90478
  type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN }
90479
+ },
90480
+ dwSV3: {
90481
+ name: "dwSV3",
90482
+ symbol: "dwSV3",
90483
+ type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN }
90411
90484
  }
90412
90485
  };
90413
90486
  var dieselWithStkTokens2 = {
@@ -90777,6 +90850,21 @@ var require_normal = __commonJS({
90777
90850
  symbol: "beraSTONE",
90778
90851
  type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90779
90852
  },
90853
+ wS: {
90854
+ name: "Wrapped Sonic",
90855
+ symbol: "wS",
90856
+ type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90857
+ },
90858
+ stS: {
90859
+ name: "Beets Staked Sonic",
90860
+ symbol: "stS",
90861
+ type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90862
+ },
90863
+ scUSD: {
90864
+ name: "Sonic USD",
90865
+ symbol: "scUSD",
90866
+ type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90867
+ },
90780
90868
  frxETH: {
90781
90869
  name: "Frax ETH",
90782
90870
  symbol: "frxETH",
@@ -90787,6 +90875,11 @@ var require_normal = __commonJS({
90787
90875
  symbol: "PENDLE",
90788
90876
  type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90789
90877
  },
90878
+ MORPHO: {
90879
+ name: "Morpho Token",
90880
+ symbol: "MORPHO",
90881
+ type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90882
+ },
90790
90883
  cbETH: {
90791
90884
  name: "Coinbase ETH",
90792
90885
  symbol: "cbETH",
@@ -90822,6 +90915,21 @@ var require_normal = __commonJS({
90822
90915
  symbol: "tETH",
90823
90916
  type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90824
90917
  },
90918
+ USDL: {
90919
+ name: "Lift Dollar",
90920
+ symbol: "USDL",
90921
+ type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90922
+ },
90923
+ wUSDL: {
90924
+ name: "Wrapped USDL",
90925
+ symbol: "wUSDL",
90926
+ type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90927
+ },
90928
+ csUSDL: {
90929
+ name: "Coinshift USDL",
90930
+ symbol: "csUSDL",
90931
+ type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
90932
+ },
90825
90933
  // Mellow
90826
90934
  steakLRT: {
90827
90935
  name: "Steakhouse Mellow LRT",
@@ -91218,8 +91326,15 @@ var require_token = __commonJS({
91218
91326
  pufETH: "0xD9A442856C234a39a81a089C06451EBAa4306a72",
91219
91327
  USDS: "0xdC035D45d973E3EC169d2276DDab16f1e407384F",
91220
91328
  SKY: "0x56072C95FAA701256059aa122697B133aDEd9279",
91329
+ wS: constants_1.NOT_DEPLOYED,
91330
+ stS: constants_1.NOT_DEPLOYED,
91331
+ scUSD: constants_1.NOT_DEPLOYED,
91221
91332
  T: "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5",
91222
91333
  tETH: "0xD11c452fc99cF405034ee446803b6F6c1F6d5ED8",
91334
+ MORPHO: "0x58D97B57BB95320F9a05dC918Aef65434969c2B2",
91335
+ USDL: "0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD",
91336
+ wUSDL: "0x7751E2F4b8ae93EF6B79d86419d42FE3295A4559",
91337
+ csUSDL: "0xbEeFc011e94f43b8B7b455eBaB290C7Ab4E216f1",
91223
91338
  // CURVE LP TOKENS
91224
91339
  "3Crv": "0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490",
91225
91340
  crvFRAX: "0x3175Df0976dFA876431C2E9eE6Bc45b65d3473CC",
@@ -91270,6 +91385,7 @@ var require_token = __commonJS({
91270
91385
  tETHwstETH: "0xA10d15538E09479186b4D3278BA5c979110dDdB1",
91271
91386
  tETHweETH: "0x394a1e1b934cb4F4a0dC17BDD592ec078741542F",
91272
91387
  pzETHstETH: "0xCec99Cff3632Cf1f16652cC5b1E80eB08bE25983",
91388
+ USDLUSDC: "0xAb96AA0ee764924f49fbB372f3B4db9c2cB24Ea2",
91273
91389
  // CONVEX LP TOKENS
91274
91390
  cvx3Crv: "0x30D9410ED1D5DA1F6C8391af5338C93ab8d4035C",
91275
91391
  cvxcrvFRAX: "0x117A0bab81F25e60900787d98061cCFae023560c",
@@ -91347,6 +91463,10 @@ var require_token = __commonJS({
91347
91463
  pumpBTC_WBTC_BPT: "0x2238aB6c8c58473a5e81b86ec352322fB3f5Edd8",
91348
91464
  eBTC_WBTC_BPT: "0xda17f3663C5D04C0B316cfA1A04Aa53eBBC8c12C",
91349
91465
  B_50WBTC_50WETH: "0xA6F548DF93de924d73be7D25dC02554c6bD66dB5",
91466
+ bpt_rsb: constants_1.NOT_DEPLOYED,
91467
+ bpt_sss: constants_1.NOT_DEPLOYED,
91468
+ BPT_scUSD_stS: constants_1.NOT_DEPLOYED,
91469
+ BPT_USDCe_stS: constants_1.NOT_DEPLOYED,
91350
91470
  tETH_wstETH_BPT: "0x1D13531bf6344c102280CE4c458781FBF14Dad14",
91351
91471
  // AURA
91352
91472
  auraB_rETH_STABLE: "0x9497df26e5bD669Cb925eC68E730492b9300c482",
@@ -91408,9 +91528,10 @@ var require_token = __commonJS({
91408
91528
  sdcrvUSDV3: "0xfBCA378AeA93EADD6882299A3d74D8641Cc0C4BC",
91409
91529
  dDOLAV3: "0x31426271449F60d37Cc5C9AEf7bD12aF3BdC7A94",
91410
91530
  dtBTCV3: "0x7354EC6E852108411e681D13E11185c3a2567981",
91411
- dwstETHV3: "0xff94993fa7ea27efc943645f95adb36c1b81244b",
91531
+ dwstETHV3: "0xFF94993fA7EA27Efc943645F95Adb36C1b81244b",
91412
91532
  dUSDC_eV3: constants_1.NOT_DEPLOYED,
91413
91533
  sdUSDC_eV3: constants_1.NOT_DEPLOYED,
91534
+ dwSV3: constants_1.NOT_DEPLOYED,
91414
91535
  GEAR: "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D",
91415
91536
  // ERC4626
91416
91537
  sDAI: "0x83F20F44975D03b1b09e64809B757c47f942BEeA",
@@ -91475,6 +91596,9 @@ var require_token = __commonJS({
91475
91596
  AURA: "0x1509706a6c66CA549ff0cB464de88231DDBe213B",
91476
91597
  SWISE: constants_1.NOT_DEPLOYED,
91477
91598
  SKY: constants_1.NOT_DEPLOYED,
91599
+ wS: constants_1.NOT_DEPLOYED,
91600
+ stS: constants_1.NOT_DEPLOYED,
91601
+ scUSD: constants_1.NOT_DEPLOYED,
91478
91602
  /// UPDATE
91479
91603
  STETH: constants_1.NOT_DEPLOYED,
91480
91604
  wstETH: "0x5979D7b546E38E414F7E9822514be443A4800529",
@@ -91511,6 +91635,10 @@ var require_token = __commonJS({
91511
91635
  USDS: constants_1.NOT_DEPLOYED,
91512
91636
  T: constants_1.NOT_DEPLOYED,
91513
91637
  tETH: constants_1.NOT_DEPLOYED,
91638
+ USDL: constants_1.NOT_DEPLOYED,
91639
+ wUSDL: constants_1.NOT_DEPLOYED,
91640
+ csUSDL: constants_1.NOT_DEPLOYED,
91641
+ MORPHO: constants_1.NOT_DEPLOYED,
91514
91642
  // REDSTONE
91515
91643
  SHIB: constants_1.NOT_DEPLOYED,
91516
91644
  // YEARN TOKENS
@@ -91572,6 +91700,7 @@ var require_token = __commonJS({
91572
91700
  tETHwstETH: constants_1.NOT_DEPLOYED,
91573
91701
  tETHweETH: constants_1.NOT_DEPLOYED,
91574
91702
  pzETHstETH: constants_1.NOT_DEPLOYED,
91703
+ USDLUSDC: constants_1.NOT_DEPLOYED,
91575
91704
  // CONVEX LP TOKENS
91576
91705
  cvx3Crv: constants_1.NOT_DEPLOYED,
91577
91706
  cvxcrvFRAX: constants_1.NOT_DEPLOYED,
@@ -91640,6 +91769,10 @@ var require_token = __commonJS({
91640
91769
  pumpBTC_WBTC_BPT: constants_1.NOT_DEPLOYED,
91641
91770
  eBTC_WBTC_BPT: constants_1.NOT_DEPLOYED,
91642
91771
  B_50WBTC_50WETH: constants_1.NOT_DEPLOYED,
91772
+ bpt_rsb: constants_1.NOT_DEPLOYED,
91773
+ bpt_sss: constants_1.NOT_DEPLOYED,
91774
+ BPT_scUSD_stS: constants_1.NOT_DEPLOYED,
91775
+ BPT_USDCe_stS: constants_1.NOT_DEPLOYED,
91643
91776
  tETH_wstETH_BPT: constants_1.NOT_DEPLOYED,
91644
91777
  // AURA
91645
91778
  auraB_rETH_STABLE: constants_1.NOT_DEPLOYED,
@@ -91704,6 +91837,7 @@ var require_token = __commonJS({
91704
91837
  dwstETHV3: constants_1.NOT_DEPLOYED,
91705
91838
  dUSDC_eV3: "0xa76c604145D7394DEc36C49Af494C144Ff327861",
91706
91839
  sdUSDC_eV3: "0x608F9e2E8933Ce6b39A8CddBc34a1e3E8D21cE75",
91840
+ dwSV3: constants_1.NOT_DEPLOYED,
91707
91841
  GEAR: "0x2F26337576127efabEEc1f62BE79dB1bcA9148A4",
91708
91842
  // AAVE
91709
91843
  aUSDC: "0x724dc807b04555b71ed48a6896b6F41593b8C637",
@@ -91800,8 +91934,15 @@ var require_token = __commonJS({
91800
91934
  pufETH: constants_1.NOT_DEPLOYED,
91801
91935
  USDS: constants_1.NOT_DEPLOYED,
91802
91936
  SKY: constants_1.NOT_DEPLOYED,
91937
+ wS: constants_1.NOT_DEPLOYED,
91938
+ stS: constants_1.NOT_DEPLOYED,
91939
+ scUSD: constants_1.NOT_DEPLOYED,
91803
91940
  T: constants_1.NOT_DEPLOYED,
91804
91941
  tETH: constants_1.NOT_DEPLOYED,
91942
+ USDL: constants_1.NOT_DEPLOYED,
91943
+ wUSDL: constants_1.NOT_DEPLOYED,
91944
+ csUSDL: constants_1.NOT_DEPLOYED,
91945
+ MORPHO: constants_1.NOT_DEPLOYED,
91805
91946
  // REDSTONE
91806
91947
  SHIB: constants_1.NOT_DEPLOYED,
91807
91948
  // YEARN TOKENS
@@ -91863,6 +92004,7 @@ var require_token = __commonJS({
91863
92004
  tETHwstETH: constants_1.NOT_DEPLOYED,
91864
92005
  tETHweETH: constants_1.NOT_DEPLOYED,
91865
92006
  pzETHstETH: constants_1.NOT_DEPLOYED,
92007
+ USDLUSDC: constants_1.NOT_DEPLOYED,
91866
92008
  // CONVEX LP TOKENS
91867
92009
  cvx3Crv: constants_1.NOT_DEPLOYED,
91868
92010
  cvxcrvFRAX: constants_1.NOT_DEPLOYED,
@@ -91931,6 +92073,10 @@ var require_token = __commonJS({
91931
92073
  bpt_ethtri: "0x5F8893506Ddc4C271837187d14A9C87964a074Dc",
91932
92074
  pumpBTC_WBTC_BPT: constants_1.NOT_DEPLOYED,
91933
92075
  eBTC_WBTC_BPT: constants_1.NOT_DEPLOYED,
92076
+ bpt_rsb: constants_1.NOT_DEPLOYED,
92077
+ bpt_sss: constants_1.NOT_DEPLOYED,
92078
+ BPT_scUSD_stS: constants_1.NOT_DEPLOYED,
92079
+ BPT_USDCe_stS: constants_1.NOT_DEPLOYED,
91934
92080
  tETH_wstETH_BPT: constants_1.NOT_DEPLOYED,
91935
92081
  // AURA
91936
92082
  auraB_rETH_STABLE: constants_1.NOT_DEPLOYED,
@@ -91995,6 +92141,7 @@ var require_token = __commonJS({
91995
92141
  dtBTCV3: constants_1.NOT_DEPLOYED,
91996
92142
  dUSDC_eV3: "0x5520dAa93A187f4Ec67344e6D2C4FC9B080B6A35",
91997
92143
  sdUSDC_eV3: "0x73302b63Ad4a16C498f26dB89cb27F37a72E4E04",
92144
+ dwSV3: constants_1.NOT_DEPLOYED,
91998
92145
  GEAR: "0x39E6C2E1757ae4354087266E2C3EA9aC4257C1eb",
91999
92146
  // AAVE
92000
92147
  aUSDC: constants_1.NOT_DEPLOYED,
@@ -92035,11 +92182,6 @@ var require_token = __commonJS({
92035
92182
  // BASE
92036
92183
  //
92037
92184
  //
92038
- ///
92039
- ///
92040
- /// OPTIMISM
92041
- ///
92042
- ///
92043
92185
  Base: {
92044
92186
  "1INCH": constants_1.NOT_DEPLOYED,
92045
92187
  AAVE: constants_1.NOT_DEPLOYED,
@@ -92064,6 +92206,9 @@ var require_token = __commonJS({
92064
92206
  WLD: constants_1.NOT_DEPLOYED,
92065
92207
  OP: constants_1.NOT_DEPLOYED,
92066
92208
  SKY: constants_1.NOT_DEPLOYED,
92209
+ wS: constants_1.NOT_DEPLOYED,
92210
+ stS: constants_1.NOT_DEPLOYED,
92211
+ scUSD: constants_1.NOT_DEPLOYED,
92067
92212
  /// UPDATE
92068
92213
  STETH: constants_1.NOT_DEPLOYED,
92069
92214
  wstETH: constants_1.NOT_DEPLOYED,
@@ -92097,6 +92242,10 @@ var require_token = __commonJS({
92097
92242
  USDS: constants_1.NOT_DEPLOYED,
92098
92243
  T: constants_1.NOT_DEPLOYED,
92099
92244
  tETH: constants_1.NOT_DEPLOYED,
92245
+ USDL: constants_1.NOT_DEPLOYED,
92246
+ wUSDL: constants_1.NOT_DEPLOYED,
92247
+ csUSDL: constants_1.NOT_DEPLOYED,
92248
+ MORPHO: constants_1.NOT_DEPLOYED,
92100
92249
  // REDSTONE
92101
92250
  SHIB: constants_1.NOT_DEPLOYED,
92102
92251
  // YEARN TOKENS
@@ -92157,6 +92306,7 @@ var require_token = __commonJS({
92157
92306
  tETHwstETH: constants_1.NOT_DEPLOYED,
92158
92307
  tETHweETH: constants_1.NOT_DEPLOYED,
92159
92308
  pzETHstETH: constants_1.NOT_DEPLOYED,
92309
+ USDLUSDC: constants_1.NOT_DEPLOYED,
92160
92310
  // CONVEX LP TOKENS
92161
92311
  cvx3Crv: constants_1.NOT_DEPLOYED,
92162
92312
  cvxcrvFRAX: constants_1.NOT_DEPLOYED,
@@ -92224,6 +92374,10 @@ var require_token = __commonJS({
92224
92374
  bpt_ethtri: constants_1.NOT_DEPLOYED,
92225
92375
  pumpBTC_WBTC_BPT: constants_1.NOT_DEPLOYED,
92226
92376
  eBTC_WBTC_BPT: constants_1.NOT_DEPLOYED,
92377
+ bpt_rsb: constants_1.NOT_DEPLOYED,
92378
+ bpt_sss: constants_1.NOT_DEPLOYED,
92379
+ BPT_scUSD_stS: constants_1.NOT_DEPLOYED,
92380
+ BPT_USDCe_stS: constants_1.NOT_DEPLOYED,
92227
92381
  tETH_wstETH_BPT: constants_1.NOT_DEPLOYED,
92228
92382
  // AURA
92229
92383
  auraB_rETH_STABLE: constants_1.NOT_DEPLOYED,
@@ -92288,6 +92442,7 @@ var require_token = __commonJS({
92288
92442
  dtBTCV3: constants_1.NOT_DEPLOYED,
92289
92443
  dUSDC_eV3: constants_1.NOT_DEPLOYED,
92290
92444
  sdUSDC_eV3: constants_1.NOT_DEPLOYED,
92445
+ dwSV3: constants_1.NOT_DEPLOYED,
92291
92446
  GEAR: constants_1.NOT_DEPLOYED,
92292
92447
  // AAVE
92293
92448
  aUSDC: constants_1.NOT_DEPLOYED,
@@ -92324,6 +92479,309 @@ var require_token = __commonJS({
92324
92479
  pzETH: constants_1.NOT_DEPLOYED,
92325
92480
  DVstETH: constants_1.NOT_DEPLOYED,
92326
92481
  waEthLidowstETH: constants_1.NOT_DEPLOYED
92482
+ },
92483
+ //
92484
+ //
92485
+ // SONIC
92486
+ //
92487
+ //
92488
+ Sonic: {
92489
+ "1INCH": constants_1.NOT_DEPLOYED,
92490
+ AAVE: constants_1.NOT_DEPLOYED,
92491
+ CRV: constants_1.NOT_DEPLOYED,
92492
+ DAI: constants_1.NOT_DEPLOYED,
92493
+ LINK: constants_1.NOT_DEPLOYED,
92494
+ SNX: constants_1.NOT_DEPLOYED,
92495
+ UNI: constants_1.NOT_DEPLOYED,
92496
+ USDT: constants_1.NOT_DEPLOYED,
92497
+ DOLA: constants_1.NOT_DEPLOYED,
92498
+ USDC: constants_1.NOT_DEPLOYED,
92499
+ USDC_e: "0x29219dd400f2Bf60E5a23d13Be72B486D4038894",
92500
+ WBTC: constants_1.NOT_DEPLOYED,
92501
+ tBTC: constants_1.NOT_DEPLOYED,
92502
+ WETH: "0x50c42dEAcD8Fc9773493ED674b675bE577f2634b",
92503
+ YFI: constants_1.NOT_DEPLOYED,
92504
+ GMX: constants_1.NOT_DEPLOYED,
92505
+ ARB: constants_1.NOT_DEPLOYED,
92506
+ BAL: constants_1.NOT_DEPLOYED,
92507
+ AURA: constants_1.NOT_DEPLOYED,
92508
+ SWISE: constants_1.NOT_DEPLOYED,
92509
+ WLD: constants_1.NOT_DEPLOYED,
92510
+ OP: constants_1.NOT_DEPLOYED,
92511
+ SKY: constants_1.NOT_DEPLOYED,
92512
+ wS: "0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38",
92513
+ stS: "0xE5DA20F15420aD15DE0fa650600aFc998bbE3955",
92514
+ scUSD: "0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE",
92515
+ T: constants_1.NOT_DEPLOYED,
92516
+ tETH: constants_1.NOT_DEPLOYED,
92517
+ USDL: constants_1.NOT_DEPLOYED,
92518
+ wUSDL: constants_1.NOT_DEPLOYED,
92519
+ csUSDL: constants_1.NOT_DEPLOYED,
92520
+ /// UPDATE
92521
+ STETH: constants_1.NOT_DEPLOYED,
92522
+ wstETH: constants_1.NOT_DEPLOYED,
92523
+ CVX: constants_1.NOT_DEPLOYED,
92524
+ FRAX: constants_1.NOT_DEPLOYED,
92525
+ FXS: constants_1.NOT_DEPLOYED,
92526
+ LDO: constants_1.NOT_DEPLOYED,
92527
+ LUSD: constants_1.NOT_DEPLOYED,
92528
+ sUSD: constants_1.NOT_DEPLOYED,
92529
+ GUSD: constants_1.NOT_DEPLOYED,
92530
+ LQTY: constants_1.NOT_DEPLOYED,
92531
+ MKR: constants_1.NOT_DEPLOYED,
92532
+ RPL: constants_1.NOT_DEPLOYED,
92533
+ APE: constants_1.NOT_DEPLOYED,
92534
+ LBTC: constants_1.NOT_DEPLOYED,
92535
+ eBTC: constants_1.NOT_DEPLOYED,
92536
+ solvBTC: constants_1.NOT_DEPLOYED,
92537
+ pumpBTC: constants_1.NOT_DEPLOYED,
92538
+ rETH: constants_1.NOT_DEPLOYED,
92539
+ osETH: constants_1.NOT_DEPLOYED,
92540
+ weETH: constants_1.NOT_DEPLOYED,
92541
+ ezETH: constants_1.NOT_DEPLOYED,
92542
+ rsETH: constants_1.NOT_DEPLOYED,
92543
+ PENDLE: constants_1.NOT_DEPLOYED,
92544
+ frxETH: constants_1.NOT_DEPLOYED,
92545
+ sfrxETH: constants_1.NOT_DEPLOYED,
92546
+ cbETH: constants_1.NOT_DEPLOYED,
92547
+ rswETH: constants_1.NOT_DEPLOYED,
92548
+ USDe: constants_1.NOT_DEPLOYED,
92549
+ pufETH: constants_1.NOT_DEPLOYED,
92550
+ USDS: constants_1.NOT_DEPLOYED,
92551
+ MORPHO: constants_1.NOT_DEPLOYED,
92552
+ // REDSTONE
92553
+ SHIB: constants_1.NOT_DEPLOYED,
92554
+ // YEARN TOKENS
92555
+ yvDAI: constants_1.NOT_DEPLOYED,
92556
+ yvUSDC: constants_1.NOT_DEPLOYED,
92557
+ yvUSDC_e: constants_1.NOT_DEPLOYED,
92558
+ yvUSDT: constants_1.NOT_DEPLOYED,
92559
+ yvWETH: constants_1.NOT_DEPLOYED,
92560
+ yvWBTC: constants_1.NOT_DEPLOYED,
92561
+ yvOP: constants_1.NOT_DEPLOYED,
92562
+ yvCurve_stETH: constants_1.NOT_DEPLOYED,
92563
+ yvCurve_FRAX: constants_1.NOT_DEPLOYED,
92564
+ // CURVE LP TOKENS
92565
+ "3Crv": constants_1.NOT_DEPLOYED,
92566
+ "3CRV": constants_1.NOT_DEPLOYED,
92567
+ wstETHCRV: constants_1.NOT_DEPLOYED,
92568
+ crvFRAX: constants_1.NOT_DEPLOYED,
92569
+ steCRV: constants_1.NOT_DEPLOYED,
92570
+ FRAX3CRV: constants_1.NOT_DEPLOYED,
92571
+ LUSD3CRV: constants_1.NOT_DEPLOYED,
92572
+ crvPlain3andSUSD: constants_1.NOT_DEPLOYED,
92573
+ gusd3CRV: constants_1.NOT_DEPLOYED,
92574
+ USDeUSDC: constants_1.NOT_DEPLOYED,
92575
+ FRAXUSDe: constants_1.NOT_DEPLOYED,
92576
+ USDecrvUSD: constants_1.NOT_DEPLOYED,
92577
+ FRAXsDAI: constants_1.NOT_DEPLOYED,
92578
+ DOLAsUSDe: constants_1.NOT_DEPLOYED,
92579
+ DOLAFRAXBP3CRV_f: constants_1.NOT_DEPLOYED,
92580
+ crvUSDDOLA_f: constants_1.NOT_DEPLOYED,
92581
+ crvCRVETH: constants_1.NOT_DEPLOYED,
92582
+ crvCVXETH: constants_1.NOT_DEPLOYED,
92583
+ crvUSDTWBTCWETH: constants_1.NOT_DEPLOYED,
92584
+ LDOETH: constants_1.NOT_DEPLOYED,
92585
+ USDeDAI: constants_1.NOT_DEPLOYED,
92586
+ MtEthena: constants_1.NOT_DEPLOYED,
92587
+ pufETHwstE: constants_1.NOT_DEPLOYED,
92588
+ GHOcrvUSD: constants_1.NOT_DEPLOYED,
92589
+ ezETHWETH: constants_1.NOT_DEPLOYED,
92590
+ ezpzETH: constants_1.NOT_DEPLOYED,
92591
+ LBTCWBTC: constants_1.NOT_DEPLOYED,
92592
+ eBTCWBTC: constants_1.NOT_DEPLOYED,
92593
+ pumpBTCWBTC: constants_1.NOT_DEPLOYED,
92594
+ TriBTC: constants_1.NOT_DEPLOYED,
92595
+ "2BTC-f": constants_1.NOT_DEPLOYED,
92596
+ tETHwstETH: constants_1.NOT_DEPLOYED,
92597
+ tETHweETH: constants_1.NOT_DEPLOYED,
92598
+ pzETHstETH: constants_1.NOT_DEPLOYED,
92599
+ USDLUSDC: constants_1.NOT_DEPLOYED,
92600
+ crvUSDUSDC: constants_1.NOT_DEPLOYED,
92601
+ crvUSDUSDT: constants_1.NOT_DEPLOYED,
92602
+ crvUSDFRAX: constants_1.NOT_DEPLOYED,
92603
+ crvUSDETHCRV: constants_1.NOT_DEPLOYED,
92604
+ crvUsUSDe: constants_1.NOT_DEPLOYED,
92605
+ llamathena: constants_1.NOT_DEPLOYED,
92606
+ "2CRV": constants_1.NOT_DEPLOYED,
92607
+ "3c-crvUSD": constants_1.NOT_DEPLOYED,
92608
+ crvUSDC: constants_1.NOT_DEPLOYED,
92609
+ crvUSDC_e: constants_1.NOT_DEPLOYED,
92610
+ crvUSDT: constants_1.NOT_DEPLOYED,
92611
+ USDEUSDC: constants_1.NOT_DEPLOYED,
92612
+ rETH_f: constants_1.NOT_DEPLOYED,
92613
+ // CONVEX LP TOKENS
92614
+ cvx3Crv: constants_1.NOT_DEPLOYED,
92615
+ cvxcrvFRAX: constants_1.NOT_DEPLOYED,
92616
+ cvxsteCRV: constants_1.NOT_DEPLOYED,
92617
+ cvxcrvPlain3andSUSD: constants_1.NOT_DEPLOYED,
92618
+ cvxFRAX3CRV: constants_1.NOT_DEPLOYED,
92619
+ cvxLUSD3CRV: constants_1.NOT_DEPLOYED,
92620
+ cvxgusd3CRV: constants_1.NOT_DEPLOYED,
92621
+ cvxcrvCRVETH: constants_1.NOT_DEPLOYED,
92622
+ cvxcrvCVXETH: constants_1.NOT_DEPLOYED,
92623
+ cvxcrvUSDTWBTCWETH: constants_1.NOT_DEPLOYED,
92624
+ cvxLDOETH: constants_1.NOT_DEPLOYED,
92625
+ cvxcrvUSDUSDC: constants_1.NOT_DEPLOYED,
92626
+ cvxcrvUSDUSDT: constants_1.NOT_DEPLOYED,
92627
+ cvxcrvUSDFRAX: constants_1.NOT_DEPLOYED,
92628
+ cvxcrvUSDETHCRV: constants_1.NOT_DEPLOYED,
92629
+ cvxGHOcrvUSD: constants_1.NOT_DEPLOYED,
92630
+ cvxllamathena: constants_1.NOT_DEPLOYED,
92631
+ crvUSD: constants_1.NOT_DEPLOYED,
92632
+ // CONVEX PHANTOM TOKEN ADDRESSES
92633
+ stkcvx3Crv: constants_1.NOT_DEPLOYED,
92634
+ stkcvxcrvFRAX: constants_1.NOT_DEPLOYED,
92635
+ stkcvxFRAX3CRV: constants_1.NOT_DEPLOYED,
92636
+ stkcvxgusd3CRV: constants_1.NOT_DEPLOYED,
92637
+ stkcvxsteCRV: constants_1.NOT_DEPLOYED,
92638
+ stkcvxcrvPlain3andSUSD: constants_1.NOT_DEPLOYED,
92639
+ stkcvxLUSD3CRV: constants_1.NOT_DEPLOYED,
92640
+ stkcvxcrvCRVETH: constants_1.NOT_DEPLOYED,
92641
+ stkcvxcrvCVXETH: constants_1.NOT_DEPLOYED,
92642
+ stkcvxcrvUSDTWBTCWETH: constants_1.NOT_DEPLOYED,
92643
+ stkcvxLDOETH: constants_1.NOT_DEPLOYED,
92644
+ stkcvxcrvUSDUSDC: constants_1.NOT_DEPLOYED,
92645
+ stkcvxcrvUSDUSDT: constants_1.NOT_DEPLOYED,
92646
+ stkcvxcrvUSDFRAX: constants_1.NOT_DEPLOYED,
92647
+ stkcvxcrvUSDETHCRV: constants_1.NOT_DEPLOYED,
92648
+ stkcvxGHOcrvUSD: constants_1.NOT_DEPLOYED,
92649
+ stkcvxllamathena: constants_1.NOT_DEPLOYED,
92650
+ cvxcrvUSDT: constants_1.NOT_DEPLOYED,
92651
+ // BALANCER TOKENS
92652
+ USDC_DAI_USDT: constants_1.NOT_DEPLOYED,
92653
+ B_rETH_STABLE: constants_1.NOT_DEPLOYED,
92654
+ weETH_rETH: constants_1.NOT_DEPLOYED,
92655
+ osETH_wETH_BPT: constants_1.NOT_DEPLOYED,
92656
+ B_80BAL_20WETH: constants_1.NOT_DEPLOYED,
92657
+ "50WETH_50AURA": constants_1.NOT_DEPLOYED,
92658
+ wstETH_WETH_BPT: constants_1.NOT_DEPLOYED,
92659
+ wstETH_rETH_cbETH: constants_1.NOT_DEPLOYED,
92660
+ cbETH_rETH_wstETH: constants_1.NOT_DEPLOYED,
92661
+ wstETH_rETH_sfrxETH: constants_1.NOT_DEPLOYED,
92662
+ rETH_WETH_BPT_deprecated: constants_1.NOT_DEPLOYED,
92663
+ rETH_wETH_BPT: constants_1.NOT_DEPLOYED,
92664
+ ezETH_WETH_BPT: constants_1.NOT_DEPLOYED,
92665
+ sUSDe_USDC_BPT: constants_1.NOT_DEPLOYED,
92666
+ trenSTETH: constants_1.NOT_DEPLOYED,
92667
+ weETH_ezETH_rswETH: constants_1.NOT_DEPLOYED,
92668
+ rsETH_WETH: constants_1.NOT_DEPLOYED,
92669
+ rsETH_wETH_Arb: constants_1.NOT_DEPLOYED,
92670
+ "33AURA_33ARB_33BAL": constants_1.NOT_DEPLOYED,
92671
+ ezETH_wstETH: constants_1.NOT_DEPLOYED,
92672
+ BPT_rETH_ETH: constants_1.NOT_DEPLOYED,
92673
+ BPT_WSTETH_ETH: constants_1.NOT_DEPLOYED,
92674
+ BPT_ROAD: constants_1.NOT_DEPLOYED,
92675
+ ECLP_wstETH_WETH: constants_1.NOT_DEPLOYED,
92676
+ bpt_ethtri: constants_1.NOT_DEPLOYED,
92677
+ pumpBTC_WBTC_BPT: constants_1.NOT_DEPLOYED,
92678
+ eBTC_WBTC_BPT: constants_1.NOT_DEPLOYED,
92679
+ B_50WBTC_50WETH: constants_1.NOT_DEPLOYED,
92680
+ bpt_rsb: "0xCd4D2b142235D5650fFA6A38787eD0b7d7A51c0C",
92681
+ bpt_sss: "0x374641076B68371e69D03C417DAc3E5F236c32FA",
92682
+ BPT_scUSD_stS: "0x25ca5451CD5a50AB1d324B5E64F32C0799661891",
92683
+ BPT_USDCe_stS: "0x713FB5036dC70012588d77a5B066f1Dd05c712d7",
92684
+ tETH_wstETH_BPT: constants_1.NOT_DEPLOYED,
92685
+ // AURA
92686
+ auraB_rETH_STABLE: constants_1.NOT_DEPLOYED,
92687
+ auraweETH_rETH: constants_1.NOT_DEPLOYED,
92688
+ auraosETH_wETH_BPT: constants_1.NOT_DEPLOYED,
92689
+ auraBPT_rETH_ETH: constants_1.NOT_DEPLOYED,
92690
+ auraBPT_WSTETH_ETH: constants_1.NOT_DEPLOYED,
92691
+ aurarETH_wETH_BPT: constants_1.NOT_DEPLOYED,
92692
+ auracbETH_rETH_wstETH: constants_1.NOT_DEPLOYED,
92693
+ aurawstETH_rETH_sfrxETH: constants_1.NOT_DEPLOYED,
92694
+ aurawstETH_WETH_BPT: constants_1.NOT_DEPLOYED,
92695
+ auraB_rETH_STABLE_vault: constants_1.NOT_DEPLOYED,
92696
+ auraweETH_rETH_vault: constants_1.NOT_DEPLOYED,
92697
+ auraosETH_wETH_BPT_vault: constants_1.NOT_DEPLOYED,
92698
+ auraBPT_rETH_ETH_vault: constants_1.NOT_DEPLOYED,
92699
+ auraBPT_WSTETH_ETH_vault: constants_1.NOT_DEPLOYED,
92700
+ aurarETH_wETH_BPT_vault: constants_1.NOT_DEPLOYED,
92701
+ auracbETH_rETH_wstETH_vault: constants_1.NOT_DEPLOYED,
92702
+ aurawstETH_rETH_sfrxETH_vault: constants_1.NOT_DEPLOYED,
92703
+ aurawstETH_WETH_BPT_vault: constants_1.NOT_DEPLOYED,
92704
+ // PENDLE
92705
+ PT_rsETH_26SEP2024: constants_1.NOT_DEPLOYED,
92706
+ PT_sUSDe_26DEC2024: constants_1.NOT_DEPLOYED,
92707
+ PT_eETH_26DEC2024: constants_1.NOT_DEPLOYED,
92708
+ PT_ezETH_26DEC2024: constants_1.NOT_DEPLOYED,
92709
+ PT_eBTC_26DEC2024: constants_1.NOT_DEPLOYED,
92710
+ PT_LBTC_27MAR2025: constants_1.NOT_DEPLOYED,
92711
+ PT_corn_solvBTC_BBN_26DEC2024: constants_1.NOT_DEPLOYED,
92712
+ PT_corn_pumpBTC_26DEC2024: constants_1.NOT_DEPLOYED,
92713
+ PT_cornLBTC_26DEC2024: constants_1.NOT_DEPLOYED,
92714
+ PT_corn_eBTC_27MAR2025: constants_1.NOT_DEPLOYED,
92715
+ PT_sUSDe_27MAR2025: constants_1.NOT_DEPLOYED,
92716
+ PT_sUSDe_29MAY2025: constants_1.NOT_DEPLOYED,
92717
+ PT_beraSTONE_10APR2025: constants_1.NOT_DEPLOYED,
92718
+ // Balancer V3
92719
+ rstETH_Lido_wstETH: constants_1.NOT_DEPLOYED,
92720
+ DVstETH_Prime_wstETH: constants_1.NOT_DEPLOYED,
92721
+ // GEARBOX
92722
+ dDAI: constants_1.NOT_DEPLOYED,
92723
+ dUSDC: constants_1.NOT_DEPLOYED,
92724
+ dWBTC: constants_1.NOT_DEPLOYED,
92725
+ dWETH: constants_1.NOT_DEPLOYED,
92726
+ dwstETH: constants_1.NOT_DEPLOYED,
92727
+ dFRAX: constants_1.NOT_DEPLOYED,
92728
+ dUSDCV3: constants_1.NOT_DEPLOYED,
92729
+ dWBTCV3: constants_1.NOT_DEPLOYED,
92730
+ dWETHV3: constants_1.NOT_DEPLOYED,
92731
+ sdUSDCV3: constants_1.NOT_DEPLOYED,
92732
+ sdWBTCV3: constants_1.NOT_DEPLOYED,
92733
+ sdWETHV3: constants_1.NOT_DEPLOYED,
92734
+ sdWETHV3_OLD: constants_1.NOT_DEPLOYED,
92735
+ dUSDTV3: constants_1.NOT_DEPLOYED,
92736
+ dGHOV3: constants_1.NOT_DEPLOYED,
92737
+ dDAIV3: constants_1.NOT_DEPLOYED,
92738
+ sdUSDTV3: constants_1.NOT_DEPLOYED,
92739
+ sdGHOV3: constants_1.NOT_DEPLOYED,
92740
+ sdDAIV3: constants_1.NOT_DEPLOYED,
92741
+ dcrvUSDV3: constants_1.NOT_DEPLOYED,
92742
+ sdcrvUSDV3: constants_1.NOT_DEPLOYED,
92743
+ dDOLAV3: constants_1.NOT_DEPLOYED,
92744
+ dwstETHV3: constants_1.NOT_DEPLOYED,
92745
+ dtBTCV3: constants_1.NOT_DEPLOYED,
92746
+ dUSDC_eV3: "0x6F6bda069FB05baB5E83B22FbDb54CBdF33f78ee",
92747
+ sdUSDC_eV3: constants_1.NOT_DEPLOYED,
92748
+ dwSV3: "0xCf4d737C38ef2ac9C7bdb4DbbC954b1932EA4a40",
92749
+ GEAR: "0x0fDbce271bea0d9819034cd09021e0bBE94be3Fd",
92750
+ // AAVE
92751
+ aUSDC: constants_1.NOT_DEPLOYED,
92752
+ aDAI: constants_1.NOT_DEPLOYED,
92753
+ aUSDT: constants_1.NOT_DEPLOYED,
92754
+ aWETH: constants_1.NOT_DEPLOYED,
92755
+ waDAI: constants_1.NOT_DEPLOYED,
92756
+ waUSDC: constants_1.NOT_DEPLOYED,
92757
+ waUSDT: constants_1.NOT_DEPLOYED,
92758
+ waWETH: constants_1.NOT_DEPLOYED,
92759
+ cDAI: constants_1.NOT_DEPLOYED,
92760
+ cUSDC: constants_1.NOT_DEPLOYED,
92761
+ cUSDT: constants_1.NOT_DEPLOYED,
92762
+ cETH: constants_1.NOT_DEPLOYED,
92763
+ cLINK: constants_1.NOT_DEPLOYED,
92764
+ fUSDC: constants_1.NOT_DEPLOYED,
92765
+ sDAI: constants_1.NOT_DEPLOYED,
92766
+ YieldETH: constants_1.NOT_DEPLOYED,
92767
+ sUSDe: constants_1.NOT_DEPLOYED,
92768
+ sUSDS: constants_1.NOT_DEPLOYED,
92769
+ scrvUSD: constants_1.NOT_DEPLOYED,
92770
+ beraSTONE: constants_1.NOT_DEPLOYED,
92771
+ GHO: constants_1.NOT_DEPLOYED,
92772
+ GHOUSDe: constants_1.NOT_DEPLOYED,
92773
+ GHO_USDT_USDC: constants_1.NOT_DEPLOYED,
92774
+ zpufETH: constants_1.NOT_DEPLOYED,
92775
+ // SKY
92776
+ stkUSDS: constants_1.NOT_DEPLOYED,
92777
+ // MELLOW LRT
92778
+ steakLRT: constants_1.NOT_DEPLOYED,
92779
+ Re7LRT: constants_1.NOT_DEPLOYED,
92780
+ amphrETH: constants_1.NOT_DEPLOYED,
92781
+ rstETH: constants_1.NOT_DEPLOYED,
92782
+ pzETH: constants_1.NOT_DEPLOYED,
92783
+ DVstETH: constants_1.NOT_DEPLOYED,
92784
+ waEthLidowstETH: constants_1.NOT_DEPLOYED
92327
92785
  }
92328
92786
  };
92329
92787
  exports2.tickerInfoTokensByNetwork = {
@@ -92704,7 +93162,18 @@ var require_token = __commonJS({
92704
93162
  }
92705
93163
  ]
92706
93164
  },
92707
- Base: {}
93165
+ Base: {},
93166
+ Sonic: {
93167
+ stS: [
93168
+ {
93169
+ symbol: "stS/S",
93170
+ dataId: "stS_FUNDAMENTAL",
93171
+ address: "0x56a5b6267d6b8de8ade88455b9342787e49e2f1a",
93172
+ priceFeed: "0xd979d375b4D7d7539DE6D653DD40f0fFc8A2F83D",
93173
+ reserve: false
93174
+ }
93175
+ ]
93176
+ }
92708
93177
  };
92709
93178
  exports2.tickerTokensByNetwork = Object.fromEntries(Object.entries(exports2.tickerInfoTokensByNetwork).map(([network, data]) => {
92710
93179
  if (Object.values(data).length === 0)
@@ -92846,6 +93315,9 @@ var require_protocols = __commonJS({
92846
93315
  Protocols2[Protocols2["Pendle"] = 22] = "Pendle";
92847
93316
  Protocols2[Protocols2["Sky"] = 23] = "Sky";
92848
93317
  Protocols2[Protocols2["Equalizer"] = 24] = "Equalizer";
93318
+ Protocols2[Protocols2["Beets"] = 25] = "Beets";
93319
+ Protocols2[Protocols2["Shadow"] = 26] = "Shadow";
93320
+ Protocols2[Protocols2["Lift"] = 27] = "Lift";
92849
93321
  })(Protocols || (exports2.Protocols = Protocols = {}));
92850
93322
  }
92851
93323
  });
@@ -92855,7 +93327,7 @@ var require_contracts = __commonJS({
92855
93327
  "../../node_modules/@gearbox-protocol/sdk-gov/lib/contracts/contracts.js"(exports2) {
92856
93328
  "use strict";
92857
93329
  Object.defineProperty(exports2, "__esModule", { value: true });
92858
- exports2.isSupportedContract = exports2.contractsByAddress = exports2.contractParams = exports2.BALANCER_V3_QUERIES = exports2.PENDLE_ROUTER_STATIC_OPTIMISM = exports2.PENDLE_ROUTER_STATIC_ARBITRUM = exports2.PENDLE_ROUTER_STATIC_MAINNET = exports2.MELLOW_COLLECTOR = exports2.VELODROME_V2_CL_FACTORY = exports2.VELODROME_V2_DEFAULT_FACTORY = exports2.VELODROME_CL_QUOTER = exports2.PANCAKESWAP_V3_QUOTER = exports2.CAMELOT_V3_QUOTER = exports2.UNISWAP_V3_QUOTER = exports2.contractsByNetwork = void 0;
93330
+ exports2.isSupportedContract = exports2.contractsByAddress = exports2.contractParams = exports2.BALANCER_V3_QUERIES = exports2.PENDLE_ROUTER_STATIC_OPTIMISM = exports2.PENDLE_ROUTER_STATIC_ARBITRUM = exports2.PENDLE_ROUTER_STATIC_MAINNET = exports2.MELLOW_COLLECTOR = exports2.EQUALIZER_DEFAULT_FACTORY = exports2.VELODROME_V2_CL_FACTORY = exports2.VELODROME_V2_DEFAULT_FACTORY = exports2.SHADOW_QUOTER = exports2.VELODROME_CL_QUOTER = exports2.PANCAKESWAP_V3_QUOTER = exports2.CAMELOT_V3_QUOTER = exports2.UNISWAP_V3_QUOTER = exports2.contractsByNetwork = void 0;
92859
93331
  var constants_1 = require_constants3();
92860
93332
  var token_1 = require_token();
92861
93333
  var mappers_1 = require_mappers();
@@ -92870,6 +93342,8 @@ var require_contracts = __commonJS({
92870
93342
  FRAXSWAP_ROUTER: "0xC14d550632db8592D1243Edc8B95b0Ad06703867",
92871
93343
  VELODROME_V2_ROUTER: constants_1.NOT_DEPLOYED,
92872
93344
  VELODROME_CL_ROUTER: constants_1.NOT_DEPLOYED,
93345
+ EQUALIZER_ROUTER: constants_1.NOT_DEPLOYED,
93346
+ SHADOW_ROUTER: constants_1.NOT_DEPLOYED,
92873
93347
  CAMELOT_V3_ROUTER: constants_1.NOT_DEPLOYED,
92874
93348
  PENDLE_ROUTER: "0x888888888889758F76e7103c6CbF23ABbF58F946",
92875
93349
  // CURVE
@@ -92912,6 +93386,7 @@ var require_contracts = __commonJS({
92912
93386
  CURVE_tETH_wstETH_POOL: token_1.tokenDataByNetwork.Mainnet.tETHwstETH,
92913
93387
  CURVE_tETH_weETH_POOL: token_1.tokenDataByNetwork.Mainnet.tETHweETH,
92914
93388
  CURVE_pzETH_stETH_POOL: token_1.tokenDataByNetwork.Mainnet.pzETHstETH,
93389
+ CURVE_USDL_USDC_POOL: token_1.tokenDataByNetwork.Mainnet.USDLUSDC,
92915
93390
  CURVE_GEAR_POOL: "0x0E9B5B092caD6F1c5E6bc7f89Ffe1abb5c95F1C2",
92916
93391
  CURVE_CRVUSD_USDC_POOL: token_1.tokenDataByNetwork.Mainnet.crvUSDUSDC,
92917
93392
  CURVE_CRVUSD_USDT_POOL: token_1.tokenDataByNetwork.Mainnet.crvUSDUSDT,
@@ -92944,6 +93419,8 @@ var require_contracts = __commonJS({
92944
93419
  STAKED_USDS_VAULT: token_1.tokenDataByNetwork.Mainnet.sUSDS,
92945
93420
  SAVINGS_CRVUSD_VAULT: token_1.tokenDataByNetwork.Mainnet.scrvUSD,
92946
93421
  AAVE_WSTETH_VAULT: token_1.tokenDataByNetwork.Mainnet.waEthLidowstETH,
93422
+ WRAPPED_USDL_VAULT: token_1.tokenDataByNetwork.Mainnet.wUSDL,
93423
+ COINSHIFT_USDL_VAULT: token_1.tokenDataByNetwork.Mainnet.csUSDL,
92947
93424
  // CONVEX
92948
93425
  CONVEX_BOOSTER: "0xF403C135812408BFbE8713b5A23a04b3D48AAE31",
92949
93426
  CONVEX_3CRV_POOL: "0x689440f2Ff927E1f24c72F1087E1FAF471eCe1c8",
@@ -93026,6 +93503,8 @@ var require_contracts = __commonJS({
93026
93503
  FRAXSWAP_ROUTER: constants_1.NOT_DEPLOYED,
93027
93504
  VELODROME_V2_ROUTER: constants_1.NOT_DEPLOYED,
93028
93505
  VELODROME_CL_ROUTER: constants_1.NOT_DEPLOYED,
93506
+ EQUALIZER_ROUTER: constants_1.NOT_DEPLOYED,
93507
+ SHADOW_ROUTER: constants_1.NOT_DEPLOYED,
93029
93508
  CAMELOT_V3_ROUTER: "0x1F721E2E82F6676FCE4eA07A5958cF098D339e18",
93030
93509
  PENDLE_ROUTER: constants_1.NOT_DEPLOYED,
93031
93510
  // CURVE
@@ -93064,6 +93543,7 @@ var require_contracts = __commonJS({
93064
93543
  CURVE_tETH_wstETH_POOL: constants_1.NOT_DEPLOYED,
93065
93544
  CURVE_tETH_weETH_POOL: constants_1.NOT_DEPLOYED,
93066
93545
  CURVE_pzETH_stETH_POOL: constants_1.NOT_DEPLOYED,
93546
+ CURVE_USDL_USDC_POOL: constants_1.NOT_DEPLOYED,
93067
93547
  CURVE_GEAR_POOL: constants_1.NOT_DEPLOYED,
93068
93548
  CURVE_CRVUSD_USDC_POOL: token_1.tokenDataByNetwork.Arbitrum.crvUSDUSDC,
93069
93549
  CURVE_CRVUSD_USDT_POOL: token_1.tokenDataByNetwork.Arbitrum.crvUSDUSDT,
@@ -93096,6 +93576,8 @@ var require_contracts = __commonJS({
93096
93576
  STAKED_USDS_VAULT: token_1.tokenDataByNetwork.Arbitrum.sUSDS,
93097
93577
  SAVINGS_CRVUSD_VAULT: token_1.tokenDataByNetwork.Arbitrum.scrvUSD,
93098
93578
  AAVE_WSTETH_VAULT: token_1.tokenDataByNetwork.Arbitrum.waEthLidowstETH,
93579
+ WRAPPED_USDL_VAULT: token_1.tokenDataByNetwork.Arbitrum.wUSDL,
93580
+ COINSHIFT_USDL_VAULT: token_1.tokenDataByNetwork.Arbitrum.csUSDL,
93099
93581
  // CONVEX
93100
93582
  CONVEX_BOOSTER: constants_1.NOT_DEPLOYED,
93101
93583
  CONVEX_3CRV_POOL: constants_1.NOT_DEPLOYED,
@@ -93178,6 +93660,8 @@ var require_contracts = __commonJS({
93178
93660
  // UNVERIFIED!
93179
93661
  VELODROME_V2_ROUTER: "0xa062aE8A9c5e11aaA026fc2670B0D65cCc8B2858",
93180
93662
  VELODROME_CL_ROUTER: "0x0792a633F0c19c351081CF4B211F68F79bCc9676",
93663
+ EQUALIZER_ROUTER: constants_1.NOT_DEPLOYED,
93664
+ SHADOW_ROUTER: constants_1.NOT_DEPLOYED,
93181
93665
  CAMELOT_V3_ROUTER: constants_1.NOT_DEPLOYED,
93182
93666
  PENDLE_ROUTER: constants_1.NOT_DEPLOYED,
93183
93667
  // CURVE
@@ -93217,6 +93701,7 @@ var require_contracts = __commonJS({
93217
93701
  CURVE_tETH_wstETH_POOL: constants_1.NOT_DEPLOYED,
93218
93702
  CURVE_tETH_weETH_POOL: constants_1.NOT_DEPLOYED,
93219
93703
  CURVE_pzETH_stETH_POOL: constants_1.NOT_DEPLOYED,
93704
+ CURVE_USDL_USDC_POOL: constants_1.NOT_DEPLOYED,
93220
93705
  CURVE_GEAR_POOL: constants_1.NOT_DEPLOYED,
93221
93706
  CURVE_CRVUSD_USDC_POOL: token_1.tokenDataByNetwork.Optimism.crvUSDUSDC,
93222
93707
  CURVE_CRVUSD_USDT_POOL: token_1.tokenDataByNetwork.Optimism.crvUSDUSDT,
@@ -93248,6 +93733,8 @@ var require_contracts = __commonJS({
93248
93733
  STAKED_USDS_VAULT: token_1.tokenDataByNetwork.Optimism.sUSDS,
93249
93734
  SAVINGS_CRVUSD_VAULT: token_1.tokenDataByNetwork.Optimism.scrvUSD,
93250
93735
  AAVE_WSTETH_VAULT: token_1.tokenDataByNetwork.Optimism.waEthLidowstETH,
93736
+ WRAPPED_USDL_VAULT: token_1.tokenDataByNetwork.Optimism.wUSDL,
93737
+ COINSHIFT_USDL_VAULT: token_1.tokenDataByNetwork.Optimism.csUSDL,
93251
93738
  // CONVEX
93252
93739
  CONVEX_BOOSTER: constants_1.NOT_DEPLOYED,
93253
93740
  CONVEX_3CRV_POOL: constants_1.NOT_DEPLOYED,
@@ -93329,6 +93816,8 @@ var require_contracts = __commonJS({
93329
93816
  FRAXSWAP_ROUTER: constants_1.NOT_DEPLOYED,
93330
93817
  VELODROME_V2_ROUTER: constants_1.NOT_DEPLOYED,
93331
93818
  VELODROME_CL_ROUTER: constants_1.NOT_DEPLOYED,
93819
+ EQUALIZER_ROUTER: constants_1.NOT_DEPLOYED,
93820
+ SHADOW_ROUTER: constants_1.NOT_DEPLOYED,
93332
93821
  CAMELOT_V3_ROUTER: constants_1.NOT_DEPLOYED,
93333
93822
  PENDLE_ROUTER: constants_1.NOT_DEPLOYED,
93334
93823
  // CURVE
@@ -93367,6 +93856,7 @@ var require_contracts = __commonJS({
93367
93856
  CURVE_tETH_wstETH_POOL: constants_1.NOT_DEPLOYED,
93368
93857
  CURVE_tETH_weETH_POOL: constants_1.NOT_DEPLOYED,
93369
93858
  CURVE_pzETH_stETH_POOL: constants_1.NOT_DEPLOYED,
93859
+ CURVE_USDL_USDC_POOL: constants_1.NOT_DEPLOYED,
93370
93860
  CURVE_GEAR_POOL: constants_1.NOT_DEPLOYED,
93371
93861
  CURVE_CRVUSD_USDC_POOL: token_1.tokenDataByNetwork.Base.crvUSDUSDC,
93372
93862
  CURVE_CRVUSD_USDT_POOL: token_1.tokenDataByNetwork.Base.crvUSDUSDT,
@@ -93398,6 +93888,8 @@ var require_contracts = __commonJS({
93398
93888
  STAKED_USDS_VAULT: token_1.tokenDataByNetwork.Base.sUSDS,
93399
93889
  SAVINGS_CRVUSD_VAULT: token_1.tokenDataByNetwork.Base.scrvUSD,
93400
93890
  AAVE_WSTETH_VAULT: token_1.tokenDataByNetwork.Base.waEthLidowstETH,
93891
+ WRAPPED_USDL_VAULT: token_1.tokenDataByNetwork.Base.wUSDL,
93892
+ COINSHIFT_USDL_VAULT: token_1.tokenDataByNetwork.Base.csUSDL,
93401
93893
  // CONVEX
93402
93894
  CONVEX_BOOSTER: constants_1.NOT_DEPLOYED,
93403
93895
  CONVEX_3CRV_POOL: constants_1.NOT_DEPLOYED,
@@ -93462,14 +93954,172 @@ var require_contracts = __commonJS({
93462
93954
  MELLOW_DECENTALIZED_VALIDATOR_VAULT: token_1.tokenDataByNetwork.Base.DVstETH,
93463
93955
  SKY_STAKING_REWARDS: constants_1.NOT_DEPLOYED,
93464
93956
  DAI_USDS: constants_1.NOT_DEPLOYED
93957
+ },
93958
+ //
93959
+ //
93960
+ //
93961
+ //
93962
+ // SONIC
93963
+ //
93964
+ //
93965
+ //
93966
+ //
93967
+ Sonic: {
93968
+ UNISWAP_V2_ROUTER: constants_1.NOT_DEPLOYED,
93969
+ UNISWAP_V3_ROUTER: constants_1.NOT_DEPLOYED,
93970
+ PANCAKESWAP_V3_ROUTER: constants_1.NOT_DEPLOYED,
93971
+ SUSHISWAP_ROUTER: constants_1.NOT_DEPLOYED,
93972
+ FRAXSWAP_ROUTER: constants_1.NOT_DEPLOYED,
93973
+ VELODROME_V2_ROUTER: constants_1.NOT_DEPLOYED,
93974
+ VELODROME_CL_ROUTER: constants_1.NOT_DEPLOYED,
93975
+ EQUALIZER_ROUTER: "0xcC6169aA1E879d3a4227536671F85afdb2d23fAD",
93976
+ SHADOW_ROUTER: "0x5543c6176FEb9B4b179078205d7C29EEa2e2d695",
93977
+ CAMELOT_V3_ROUTER: constants_1.NOT_DEPLOYED,
93978
+ PENDLE_ROUTER: constants_1.NOT_DEPLOYED,
93979
+ // CURVE
93980
+ CURVE_3CRV_POOL_OP: constants_1.NOT_DEPLOYED,
93981
+ CURVE_3CRV_POOL: constants_1.NOT_DEPLOYED,
93982
+ CURVE_FRAX_USDC_POOL: constants_1.NOT_DEPLOYED,
93983
+ CURVE_STETH_GATEWAY: constants_1.NOT_DEPLOYED,
93984
+ CURVE_FRAX_POOL: constants_1.NOT_DEPLOYED,
93985
+ CURVE_LUSD_POOL: constants_1.NOT_DEPLOYED,
93986
+ CURVE_SUSD_POOL: constants_1.NOT_DEPLOYED,
93987
+ CURVE_SUSD_DEPOSIT: constants_1.NOT_DEPLOYED,
93988
+ CURVE_GUSD_POOL: constants_1.NOT_DEPLOYED,
93989
+ CURVE_CRVETH_POOL: constants_1.NOT_DEPLOYED,
93990
+ CURVE_CVXETH_POOL: constants_1.NOT_DEPLOYED,
93991
+ CURVE_3CRYPTO_POOL: constants_1.NOT_DEPLOYED,
93992
+ CURVE_LDOETH_POOL: constants_1.NOT_DEPLOYED,
93993
+ CURVE_USDE_USDC_POOL: constants_1.NOT_DEPLOYED,
93994
+ CURVE_FRAX_USDE_POOL: constants_1.NOT_DEPLOYED,
93995
+ CURVE_USDE_CRVUSD_POOL: constants_1.NOT_DEPLOYED,
93996
+ CURVE_FRAX_SDAI_POOL: constants_1.NOT_DEPLOYED,
93997
+ CURVE_DOLA_SUSDE_POOL: constants_1.NOT_DEPLOYED,
93998
+ CURVE_DOLA_FRAXBP_POOL: constants_1.NOT_DEPLOYED,
93999
+ CURVE_DOLA_CRVUSD_POOL: constants_1.NOT_DEPLOYED,
94000
+ CURVE_USDE_DAI_POOL: constants_1.NOT_DEPLOYED,
94001
+ CURVE_SDAI_SUSDE_POOL: constants_1.NOT_DEPLOYED,
94002
+ CURVE_GHO_USDE_POOL: constants_1.NOT_DEPLOYED,
94003
+ CURVE_PUFETH_WSTETH_POOL: constants_1.NOT_DEPLOYED,
94004
+ CURVE_GHO_CRVUSD_POOL: constants_1.NOT_DEPLOYED,
94005
+ CURVE_ETH_WSTETH_GATEWAY_OP: constants_1.NOT_DEPLOYED,
94006
+ CURVE_EZETH_ETH_POOL: constants_1.NOT_DEPLOYED,
94007
+ CURVE_EZPZ_ETH_POOL: constants_1.NOT_DEPLOYED,
94008
+ CURVE_LBTC_WBTC_POOL: constants_1.NOT_DEPLOYED,
94009
+ CURVE_EBTC_WBTC_POOL: constants_1.NOT_DEPLOYED,
94010
+ CURVE_PUMPBTC_WBTC_POOL: constants_1.NOT_DEPLOYED,
94011
+ CURVE_TRIBTC_POOL: constants_1.NOT_DEPLOYED,
94012
+ CURVE_tBTC_WBTC_POOL: constants_1.NOT_DEPLOYED,
94013
+ CURVE_tETH_wstETH_POOL: constants_1.NOT_DEPLOYED,
94014
+ CURVE_tETH_weETH_POOL: constants_1.NOT_DEPLOYED,
94015
+ CURVE_pzETH_stETH_POOL: constants_1.NOT_DEPLOYED,
94016
+ CURVE_USDL_USDC_POOL: constants_1.NOT_DEPLOYED,
94017
+ CURVE_GEAR_POOL: constants_1.NOT_DEPLOYED,
94018
+ CURVE_CRVUSD_USDC_POOL: constants_1.NOT_DEPLOYED,
94019
+ CURVE_CRVUSD_USDT_POOL: constants_1.NOT_DEPLOYED,
94020
+ CURVE_CRVUSD_FRAX_POOL: constants_1.NOT_DEPLOYED,
94021
+ CURVE_TRI_CRV_POOL: constants_1.NOT_DEPLOYED,
94022
+ CURVE_CRVUSD_SUSDE_POOL: constants_1.NOT_DEPLOYED,
94023
+ CURVE_LLAMA_THENA_POOL: constants_1.NOT_DEPLOYED,
94024
+ CURVE_RETH_ETH_POOL: constants_1.NOT_DEPLOYED,
94025
+ CURVE_2CRV_POOL_ARB: constants_1.NOT_DEPLOYED,
94026
+ CURVE_TRICRYPTO_CRVUSD_POOL_ARB: constants_1.NOT_DEPLOYED,
94027
+ CURVE_CRVUSD_USDC_POOL_ARB: constants_1.NOT_DEPLOYED,
94028
+ CURVE_CRVUSD_USDT_POOL_ARB: constants_1.NOT_DEPLOYED,
94029
+ CURVE_CRVUSD_USDC_E_POOL_ARB: constants_1.NOT_DEPLOYED,
94030
+ CURVE_USDE_USDC_POOL_ARB: constants_1.NOT_DEPLOYED,
94031
+ // YEARN
94032
+ YEARN_DAI_VAULT: constants_1.NOT_DEPLOYED,
94033
+ YEARN_USDC_VAULT: constants_1.NOT_DEPLOYED,
94034
+ YEARN_USDC_E_VAULT: constants_1.NOT_DEPLOYED,
94035
+ YEARN_WETH_VAULT: constants_1.NOT_DEPLOYED,
94036
+ YEARN_WBTC_VAULT: constants_1.NOT_DEPLOYED,
94037
+ YEARN_USDT_VAULT: constants_1.NOT_DEPLOYED,
94038
+ YEARN_OP_VAULT: constants_1.NOT_DEPLOYED,
94039
+ YEARN_CURVE_FRAX_VAULT: constants_1.NOT_DEPLOYED,
94040
+ YEARN_CURVE_STETH_VAULT: constants_1.NOT_DEPLOYED,
94041
+ /// ERC4626
94042
+ MAKER_DSR_VAULT: constants_1.NOT_DEPLOYED,
94043
+ YIELD_ETH_VAULT: constants_1.NOT_DEPLOYED,
94044
+ STAKED_USDE_VAULT: constants_1.NOT_DEPLOYED,
94045
+ STAKED_USDS_VAULT: constants_1.NOT_DEPLOYED,
94046
+ SAVINGS_CRVUSD_VAULT: constants_1.NOT_DEPLOYED,
94047
+ AAVE_WSTETH_VAULT: constants_1.NOT_DEPLOYED,
94048
+ WRAPPED_USDL_VAULT: constants_1.NOT_DEPLOYED,
94049
+ COINSHIFT_USDL_VAULT: constants_1.NOT_DEPLOYED,
94050
+ // CONVEX
94051
+ CONVEX_BOOSTER: constants_1.NOT_DEPLOYED,
94052
+ CONVEX_3CRV_POOL: constants_1.NOT_DEPLOYED,
94053
+ CONVEX_FRAX_USDC_POOL: constants_1.NOT_DEPLOYED,
94054
+ CONVEX_STECRV_POOL: constants_1.NOT_DEPLOYED,
94055
+ CONVEX_SUSD_POOL: constants_1.NOT_DEPLOYED,
94056
+ CONVEX_FRAX3CRV_POOL: constants_1.NOT_DEPLOYED,
94057
+ CONVEX_LUSD3CRV_POOL: constants_1.NOT_DEPLOYED,
94058
+ CONVEX_GUSD_POOL: constants_1.NOT_DEPLOYED,
94059
+ CONVEX_CRVETH_POOL: constants_1.NOT_DEPLOYED,
94060
+ CONVEX_CVXETH_POOL: constants_1.NOT_DEPLOYED,
94061
+ CONVEX_3CRYPTO_POOL: constants_1.NOT_DEPLOYED,
94062
+ CONVEX_LDOETH_POOL: constants_1.NOT_DEPLOYED,
94063
+ CONVEX_CRVUSD_USDC_POOL: constants_1.NOT_DEPLOYED,
94064
+ CONVEX_CRVUSD_USDT_POOL: constants_1.NOT_DEPLOYED,
94065
+ CONVEX_CRVUSD_FRAX_POOL: constants_1.NOT_DEPLOYED,
94066
+ CONVEX_TRI_CRV_POOL: constants_1.NOT_DEPLOYED,
94067
+ CONVEX_GHO_CRVUSD_POOL: constants_1.NOT_DEPLOYED,
94068
+ CONVEX_LLAMA_THENA_POOL: constants_1.NOT_DEPLOYED,
94069
+ CONVEX_BOOSTER_ARB: constants_1.NOT_DEPLOYED,
94070
+ CONVEX_CRVUSD_USDT_POOL_ARB: constants_1.NOT_DEPLOYED,
94071
+ // AURA
94072
+ AURA_BOOSTER: constants_1.NOT_DEPLOYED,
94073
+ AURA_WEETH_RETH_POOL: constants_1.NOT_DEPLOYED,
94074
+ AURA_OSETH_WETH_POOL: constants_1.NOT_DEPLOYED,
94075
+ AURA_B_RETH_STABLE_POOL: constants_1.NOT_DEPLOYED,
94076
+ AURA_BPT_RETH_ETH_POOL: constants_1.NOT_DEPLOYED,
94077
+ AURA_BPT_WSTETH_ETH_POOL: constants_1.NOT_DEPLOYED,
94078
+ AURA_RETH_WETH_POOL_ARB: constants_1.NOT_DEPLOYED,
94079
+ AURA_WSTETH_WETH_POOL_ARB: constants_1.NOT_DEPLOYED,
94080
+ AURA_CBETH_RETH_WSTETH_POOL_ARB: constants_1.NOT_DEPLOYED,
94081
+ AURA_WSTETH_RETH_SFRXETH_POOL_ARB: constants_1.NOT_DEPLOYED,
94082
+ // LIDO
94083
+ LIDO_STETH_GATEWAY: constants_1.NOT_DEPLOYED,
94084
+ LIDO_WSTETH: constants_1.NOT_DEPLOYED,
94085
+ // BALANCER
94086
+ BALANCER_VAULT: "0xBA12222222228d8Ba445958a75a0704d566BF2C8",
94087
+ BALANCER_V3_ROUTER: constants_1.NOT_DEPLOYED,
94088
+ // GEARBOX
94089
+ UNIVERSAL_ADAPTER: constants_1.NOT_DEPLOYED,
94090
+ // AAVE
94091
+ AAVE_V2_LENDING_POOL: constants_1.NOT_DEPLOYED,
94092
+ AAVE_V3_LENDING_POOL: constants_1.NOT_DEPLOYED,
94093
+ AAVE_V2_DAI_TOKEN_WRAPPER: constants_1.NOT_DEPLOYED,
94094
+ AAVE_V2_USDC_TOKEN_WRAPPER: constants_1.NOT_DEPLOYED,
94095
+ AAVE_V2_USDT_TOKEN_WRAPPER: constants_1.NOT_DEPLOYED,
94096
+ AAVE_V2_WETH_TOKEN_WRAPPER: constants_1.NOT_DEPLOYED,
94097
+ COMPOUND_V2_DAI_POOL: constants_1.NOT_DEPLOYED,
94098
+ COMPOUND_V2_USDC_POOL: constants_1.NOT_DEPLOYED,
94099
+ COMPOUND_V2_USDT_POOL: constants_1.NOT_DEPLOYED,
94100
+ COMPOUND_V2_LINK_POOL: constants_1.NOT_DEPLOYED,
94101
+ COMPOUND_V2_ETH_GATEWAY: constants_1.NOT_DEPLOYED,
94102
+ FLUX_USDC_POOL: constants_1.NOT_DEPLOYED,
94103
+ ZIRCUIT_POOL: constants_1.NOT_DEPLOYED,
94104
+ // MELLOW
94105
+ MELLOW_STEAKHOUSE_VAULT: constants_1.NOT_DEPLOYED,
94106
+ MELLOW_RE7_LABS_VAULT: constants_1.NOT_DEPLOYED,
94107
+ MELLOW_AMPHOR_VAULT: constants_1.NOT_DEPLOYED,
94108
+ MELLOW_RESTAKING_VAULT: constants_1.NOT_DEPLOYED,
94109
+ MELLOW_RENZO_VAULT: constants_1.NOT_DEPLOYED,
94110
+ MELLOW_DECENTALIZED_VALIDATOR_VAULT: constants_1.NOT_DEPLOYED,
94111
+ SKY_STAKING_REWARDS: constants_1.NOT_DEPLOYED,
94112
+ DAI_USDS: constants_1.NOT_DEPLOYED
93465
94113
  }
93466
94114
  };
93467
94115
  exports2.UNISWAP_V3_QUOTER = "0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6";
93468
94116
  exports2.CAMELOT_V3_QUOTER = "0x0Fc73040b26E9bC8514fA028D998E73A254Fa76E";
93469
94117
  exports2.PANCAKESWAP_V3_QUOTER = "0xB048Bbc1Ee6b733FFfCFb9e9CeF7375518e25997";
93470
94118
  exports2.VELODROME_CL_QUOTER = "0x89D8218ed5fF1e46d8dcd33fb0bbeE3be1621466";
94119
+ exports2.SHADOW_QUOTER = "0x219b7ADebc0935a3eC889a148c6924D51A07535A";
93471
94120
  exports2.VELODROME_V2_DEFAULT_FACTORY = "0xF1046053aa5682b4F9a81b5481394DA16BE5FF5a";
93472
94121
  exports2.VELODROME_V2_CL_FACTORY = "0xCc0bDDB707055e04e497aB22a59c2aF4391cd12F";
94122
+ exports2.EQUALIZER_DEFAULT_FACTORY = "0xDDD9845Ba0D8f38d3045f804f67A1a8B9A528FcC";
93473
94123
  exports2.MELLOW_COLLECTOR = "0xce8f66b5347dcfedb3e63cb2c95e4aab9a85429e";
93474
94124
  exports2.PENDLE_ROUTER_STATIC_MAINNET = "0x263833d47eA3fA4a30f269323aba6a107f9eB14C";
93475
94125
  exports2.PENDLE_ROUTER_STATIC_ARBITRUM = "0xAdB09F65bd90d19e3148D9ccb693F3161C6DB3E8";
@@ -93508,12 +94158,23 @@ var require_contracts = __commonJS({
93508
94158
  protocol: protocols_1.Protocols.Velodrome,
93509
94159
  type: adapters_1.AdapterInterface.VELODROME_V2_ROUTER
93510
94160
  },
94161
+ EQUALIZER_ROUTER: {
94162
+ name: "Equalizer",
94163
+ protocol: protocols_1.Protocols.Equalizer,
94164
+ type: adapters_1.AdapterInterface.EQUALIZER_ROUTER
94165
+ },
93511
94166
  VELODROME_CL_ROUTER: {
93512
94167
  name: "Velodrome CL Router",
93513
94168
  protocol: protocols_1.Protocols.Velodrome,
93514
94169
  quoter: exports2.VELODROME_CL_QUOTER,
93515
94170
  type: adapters_1.AdapterInterface.UNISWAP_V3_ROUTER
93516
94171
  },
94172
+ SHADOW_ROUTER: {
94173
+ name: "Shadow Router",
94174
+ protocol: protocols_1.Protocols.Shadow,
94175
+ quoter: exports2.SHADOW_QUOTER,
94176
+ type: adapters_1.AdapterInterface.UNISWAP_V3_ROUTER
94177
+ },
93517
94178
  CAMELOT_V3_ROUTER: {
93518
94179
  name: "Camelot V3",
93519
94180
  protocol: protocols_1.Protocols.Camelot,
@@ -93551,7 +94212,8 @@ var require_contracts = __commonJS({
93551
94212
  Arbitrum: constants_1.NOT_DEPLOYED,
93552
94213
  // CURVE_STECRV_POOL
93553
94214
  Optimism: constants_1.NOT_DEPLOYED,
93554
- Base: constants_1.NOT_DEPLOYED
94215
+ Base: constants_1.NOT_DEPLOYED,
94216
+ Sonic: constants_1.NOT_DEPLOYED
93555
94217
  },
93556
94218
  tokens: ["WETH", "STETH"],
93557
94219
  lpToken: "steCRV"
@@ -93565,7 +94227,8 @@ var require_contracts = __commonJS({
93565
94227
  Mainnet: constants_1.NOT_DEPLOYED,
93566
94228
  Arbitrum: constants_1.NOT_DEPLOYED,
93567
94229
  Optimism: "0xb90b9b1f91a01ea22a182cd84c1e22222e39b415",
93568
- Base: constants_1.NOT_DEPLOYED
94230
+ Base: constants_1.NOT_DEPLOYED,
94231
+ Sonic: constants_1.NOT_DEPLOYED
93569
94232
  },
93570
94233
  tokens: ["WETH", "wstETH"],
93571
94234
  lpToken: "wstETHCRV"
@@ -93579,7 +94242,8 @@ var require_contracts = __commonJS({
93579
94242
  Mainnet: "0x0E9B5B092caD6F1c5E6bc7f89Ffe1abb5c95F1C2",
93580
94243
  Arbitrum: constants_1.NOT_DEPLOYED,
93581
94244
  Optimism: constants_1.NOT_DEPLOYED,
93582
- Base: constants_1.NOT_DEPLOYED
94245
+ Base: constants_1.NOT_DEPLOYED,
94246
+ Sonic: constants_1.NOT_DEPLOYED
93583
94247
  },
93584
94248
  tokens: ["GEAR", "WETH"],
93585
94249
  lpToken: "GEAR"
@@ -93892,6 +94556,14 @@ var require_contracts = __commonJS({
93892
94556
  lpToken: "pzETHstETH",
93893
94557
  tokens: ["pzETH", "wstETH"]
93894
94558
  },
94559
+ CURVE_USDL_USDC_POOL: {
94560
+ name: "Curve pzETH/wstETH LP",
94561
+ protocol: protocols_1.Protocols.Curve,
94562
+ version: 20,
94563
+ type: adapters_1.AdapterInterface.CURVE_STABLE_NG,
94564
+ lpToken: "USDLUSDC",
94565
+ tokens: ["USDL", "USDC"]
94566
+ },
93895
94567
  CURVE_2CRV_POOL_ARB: {
93896
94568
  name: "Curve USDC/USDT Pool (Arbitrum)",
93897
94569
  protocol: protocols_1.Protocols.Curve,
@@ -94038,6 +94710,18 @@ var require_contracts = __commonJS({
94038
94710
  type: adapters_1.AdapterInterface.ERC4626_VAULT,
94039
94711
  underlying: "wstETH"
94040
94712
  },
94713
+ WRAPPED_USDL_VAULT: {
94714
+ name: "Wrapped USDL Vault",
94715
+ protocol: protocols_1.Protocols.Lift,
94716
+ type: adapters_1.AdapterInterface.ERC4626_VAULT,
94717
+ underlying: "USDL"
94718
+ },
94719
+ COINSHIFT_USDL_VAULT: {
94720
+ name: "Coinshift USDL Vault",
94721
+ protocol: protocols_1.Protocols.Lift,
94722
+ type: adapters_1.AdapterInterface.ERC4626_VAULT,
94723
+ underlying: "wUSDL"
94724
+ },
94041
94725
  CONVEX_BOOSTER: {
94042
94726
  name: "Convex BOOSTER",
94043
94727
  protocol: protocols_1.Protocols.Convex,
@@ -94077,7 +94761,8 @@ var require_contracts = __commonJS({
94077
94761
  Arbitrum: constants_1.NOT_DEPLOYED,
94078
94762
  // CONVEX_SUSD_POOL_EXTRA_SNX
94079
94763
  Optimism: constants_1.NOT_DEPLOYED,
94080
- Base: constants_1.NOT_DEPLOYED
94764
+ Base: constants_1.NOT_DEPLOYED,
94765
+ Sonic: constants_1.NOT_DEPLOYED
94081
94766
  }
94082
94767
  }
94083
94768
  ]
@@ -94095,7 +94780,8 @@ var require_contracts = __commonJS({
94095
94780
  Arbitrum: constants_1.NOT_DEPLOYED,
94096
94781
  // CONVEX_STECRV_POOL_EXTRA_LDO
94097
94782
  Optimism: constants_1.NOT_DEPLOYED,
94098
- Base: constants_1.NOT_DEPLOYED
94783
+ Base: constants_1.NOT_DEPLOYED,
94784
+ Sonic: constants_1.NOT_DEPLOYED
94099
94785
  }
94100
94786
  }
94101
94787
  ]
@@ -94113,7 +94799,8 @@ var require_contracts = __commonJS({
94113
94799
  Arbitrum: constants_1.NOT_DEPLOYED,
94114
94800
  // CONVEX_FRAX3CRV_POOL_EXTRA_FXS
94115
94801
  Optimism: constants_1.NOT_DEPLOYED,
94116
- Base: constants_1.NOT_DEPLOYED
94802
+ Base: constants_1.NOT_DEPLOYED,
94803
+ Sonic: constants_1.NOT_DEPLOYED
94117
94804
  }
94118
94805
  }
94119
94806
  ]
@@ -94131,7 +94818,8 @@ var require_contracts = __commonJS({
94131
94818
  Arbitrum: constants_1.NOT_DEPLOYED,
94132
94819
  // CONVEX_LUSD3CRV_POOL_EXTRA_LQTY
94133
94820
  Optimism: constants_1.NOT_DEPLOYED,
94134
- Base: constants_1.NOT_DEPLOYED
94821
+ Base: constants_1.NOT_DEPLOYED,
94822
+ Sonic: constants_1.NOT_DEPLOYED
94135
94823
  }
94136
94824
  }
94137
94825
  ]
@@ -94148,7 +94836,8 @@ var require_contracts = __commonJS({
94148
94836
  Mainnet: "0xE1eCBB4181378E2346EAC90Eb5606c01Aa08f052",
94149
94837
  Arbitrum: constants_1.NOT_DEPLOYED,
94150
94838
  Optimism: constants_1.NOT_DEPLOYED,
94151
- Base: constants_1.NOT_DEPLOYED
94839
+ Base: constants_1.NOT_DEPLOYED,
94840
+ Sonic: constants_1.NOT_DEPLOYED
94152
94841
  }
94153
94842
  }
94154
94843
  ]
@@ -94165,7 +94854,8 @@ var require_contracts = __commonJS({
94165
94854
  Mainnet: "0x834B9147Fd23bF131644aBC6e557Daf99C5cDa15",
94166
94855
  Arbitrum: constants_1.NOT_DEPLOYED,
94167
94856
  Optimism: constants_1.NOT_DEPLOYED,
94168
- Base: constants_1.NOT_DEPLOYED
94857
+ Base: constants_1.NOT_DEPLOYED,
94858
+ Sonic: constants_1.NOT_DEPLOYED
94169
94859
  }
94170
94860
  }
94171
94861
  ]
@@ -94189,7 +94879,8 @@ var require_contracts = __commonJS({
94189
94879
  Mainnet: "0x95e6092449a0f3946A5a0f308Ead4adcff244E2B",
94190
94880
  Arbitrum: constants_1.NOT_DEPLOYED,
94191
94881
  Optimism: constants_1.NOT_DEPLOYED,
94192
- Base: constants_1.NOT_DEPLOYED
94882
+ Base: constants_1.NOT_DEPLOYED,
94883
+ Sonic: constants_1.NOT_DEPLOYED
94193
94884
  }
94194
94885
  }
94195
94886
  ]
@@ -94206,7 +94897,8 @@ var require_contracts = __commonJS({
94206
94897
  Mainnet: "0xac183F7cd62d5b04Fa40362EB67249A80339541A",
94207
94898
  Arbitrum: constants_1.NOT_DEPLOYED,
94208
94899
  Optimism: constants_1.NOT_DEPLOYED,
94209
- Base: constants_1.NOT_DEPLOYED
94900
+ Base: constants_1.NOT_DEPLOYED,
94901
+ Sonic: constants_1.NOT_DEPLOYED
94210
94902
  }
94211
94903
  }
94212
94904
  ]
@@ -94223,7 +94915,8 @@ var require_contracts = __commonJS({
94223
94915
  Mainnet: "0xD490178B568b07c6DDbDfBBfaF9043772209Ec01",
94224
94916
  Arbitrum: constants_1.NOT_DEPLOYED,
94225
94917
  Optimism: constants_1.NOT_DEPLOYED,
94226
- Base: constants_1.NOT_DEPLOYED
94918
+ Base: constants_1.NOT_DEPLOYED,
94919
+ Sonic: constants_1.NOT_DEPLOYED
94227
94920
  }
94228
94921
  }
94229
94922
  ]
@@ -94240,7 +94933,8 @@ var require_contracts = __commonJS({
94240
94933
  Mainnet: "0x749cFfCb53e008841d7387ba37f9284BDeCEe0A9",
94241
94934
  Arbitrum: constants_1.NOT_DEPLOYED,
94242
94935
  Optimism: constants_1.NOT_DEPLOYED,
94243
- Base: constants_1.NOT_DEPLOYED
94936
+ Base: constants_1.NOT_DEPLOYED,
94937
+ Sonic: constants_1.NOT_DEPLOYED
94244
94938
  }
94245
94939
  }
94246
94940
  ]
@@ -94257,7 +94951,8 @@ var require_contracts = __commonJS({
94257
94951
  Mainnet: "0x01eC96F1eEBF470E3fEAEEfB843fbC63424e668d",
94258
94952
  Arbitrum: constants_1.NOT_DEPLOYED,
94259
94953
  Optimism: constants_1.NOT_DEPLOYED,
94260
- Base: constants_1.NOT_DEPLOYED
94954
+ Base: constants_1.NOT_DEPLOYED,
94955
+ Sonic: constants_1.NOT_DEPLOYED
94261
94956
  }
94262
94957
  }
94263
94958
  ]
@@ -94274,7 +94969,8 @@ var require_contracts = __commonJS({
94274
94969
  Mainnet: "0xE7cC925739E41E2A03A53770F5E9Ed43afe13993",
94275
94970
  Arbitrum: constants_1.NOT_DEPLOYED,
94276
94971
  Optimism: constants_1.NOT_DEPLOYED,
94277
- Base: constants_1.NOT_DEPLOYED
94972
+ Base: constants_1.NOT_DEPLOYED,
94973
+ Sonic: constants_1.NOT_DEPLOYED
94278
94974
  }
94279
94975
  }
94280
94976
  ]
@@ -94291,7 +94987,8 @@ var require_contracts = __commonJS({
94291
94987
  Mainnet: "0xc66844E5788b7d7D6DFFa5EC1Db62d898c59D6e7",
94292
94988
  Arbitrum: constants_1.NOT_DEPLOYED,
94293
94989
  Optimism: constants_1.NOT_DEPLOYED,
94294
- Base: constants_1.NOT_DEPLOYED
94990
+ Base: constants_1.NOT_DEPLOYED,
94991
+ Sonic: constants_1.NOT_DEPLOYED
94295
94992
  }
94296
94993
  }
94297
94994
  ]
@@ -94325,7 +95022,8 @@ var require_contracts = __commonJS({
94325
95022
  Mainnet: "0xf66a72886749c96b18526E8E124cC2e18b7c72D2",
94326
95023
  Arbitrum: constants_1.NOT_DEPLOYED,
94327
95024
  Optimism: constants_1.NOT_DEPLOYED,
94328
- Base: constants_1.NOT_DEPLOYED
95025
+ Base: constants_1.NOT_DEPLOYED,
95026
+ Sonic: constants_1.NOT_DEPLOYED
94329
95027
  }
94330
95028
  }
94331
95029
  ]
@@ -94342,7 +95040,8 @@ var require_contracts = __commonJS({
94342
95040
  Mainnet: "0x25d22C5191C67D63AAB70a37FAe06e1c1E1a830F",
94343
95041
  Arbitrum: constants_1.NOT_DEPLOYED,
94344
95042
  Optimism: constants_1.NOT_DEPLOYED,
94345
- Base: constants_1.NOT_DEPLOYED
95043
+ Base: constants_1.NOT_DEPLOYED,
95044
+ Sonic: constants_1.NOT_DEPLOYED
94346
95045
  }
94347
95046
  }
94348
95047
  ]
@@ -94359,7 +95058,8 @@ var require_contracts = __commonJS({
94359
95058
  Mainnet: "0x62e6D8dAe7089C8F2f2a5C328c710aa1788742fb",
94360
95059
  Arbitrum: constants_1.NOT_DEPLOYED,
94361
95060
  Optimism: constants_1.NOT_DEPLOYED,
94362
- Base: constants_1.NOT_DEPLOYED
95061
+ Base: constants_1.NOT_DEPLOYED,
95062
+ Sonic: constants_1.NOT_DEPLOYED
94363
95063
  }
94364
95064
  },
94365
95065
  {
@@ -94368,7 +95068,8 @@ var require_contracts = __commonJS({
94368
95068
  Mainnet: "0xC5E75ccd4d40e2Fb280f008f8AFB5EF3415EFA72",
94369
95069
  Arbitrum: constants_1.NOT_DEPLOYED,
94370
95070
  Optimism: constants_1.NOT_DEPLOYED,
94371
- Base: constants_1.NOT_DEPLOYED
95071
+ Base: constants_1.NOT_DEPLOYED,
95072
+ Sonic: constants_1.NOT_DEPLOYED
94372
95073
  }
94373
95074
  }
94374
95075
  ]
@@ -94385,7 +95086,8 @@ var require_contracts = __commonJS({
94385
95086
  Mainnet: constants_1.NOT_DEPLOYED,
94386
95087
  Arbitrum: constants_1.NOT_DEPLOYED,
94387
95088
  Optimism: "0x0A22Ae9D9D149C14f6c15A235e715bB6C1Cfa739",
94388
- Base: constants_1.NOT_DEPLOYED
95089
+ Base: constants_1.NOT_DEPLOYED,
95090
+ Sonic: constants_1.NOT_DEPLOYED
94389
95091
  }
94390
95092
  },
94391
95093
  {
@@ -94394,7 +95096,8 @@ var require_contracts = __commonJS({
94394
95096
  Mainnet: constants_1.NOT_DEPLOYED,
94395
95097
  Arbitrum: constants_1.NOT_DEPLOYED,
94396
95098
  Optimism: "0x81673Cdd00c2839440f31575cCFa5B6ca4a87B2B",
94397
- Base: constants_1.NOT_DEPLOYED
95099
+ Base: constants_1.NOT_DEPLOYED,
95100
+ Sonic: constants_1.NOT_DEPLOYED
94398
95101
  }
94399
95102
  }
94400
95103
  ]
@@ -94411,7 +95114,8 @@ var require_contracts = __commonJS({
94411
95114
  Mainnet: constants_1.NOT_DEPLOYED,
94412
95115
  Arbitrum: constants_1.NOT_DEPLOYED,
94413
95116
  Optimism: "0x903d716fe68e7e091eCC43AA93c0F8cfD7e7BC0a",
94414
- Base: constants_1.NOT_DEPLOYED
95117
+ Base: constants_1.NOT_DEPLOYED,
95118
+ Sonic: constants_1.NOT_DEPLOYED
94415
95119
  }
94416
95120
  },
94417
95121
  {
@@ -94420,7 +95124,8 @@ var require_contracts = __commonJS({
94420
95124
  Mainnet: constants_1.NOT_DEPLOYED,
94421
95125
  Arbitrum: constants_1.NOT_DEPLOYED,
94422
95126
  Optimism: "0xb0709c230C06BE6e2A84b2Ba877094EB9a4fA014",
94423
- Base: constants_1.NOT_DEPLOYED
95127
+ Base: constants_1.NOT_DEPLOYED,
95128
+ Sonic: constants_1.NOT_DEPLOYED
94424
95129
  }
94425
95130
  }
94426
95131
  ]
@@ -94437,7 +95142,8 @@ var require_contracts = __commonJS({
94437
95142
  Mainnet: constants_1.NOT_DEPLOYED,
94438
95143
  Arbitrum: "0xC0353d05D3F2b6e14E36c5d3B4bF8d179890A001",
94439
95144
  Optimism: constants_1.NOT_DEPLOYED,
94440
- Base: constants_1.NOT_DEPLOYED
95145
+ Base: constants_1.NOT_DEPLOYED,
95146
+ Sonic: constants_1.NOT_DEPLOYED
94441
95147
  }
94442
95148
  },
94443
95149
  {
@@ -94446,7 +95152,8 @@ var require_contracts = __commonJS({
94446
95152
  Mainnet: constants_1.NOT_DEPLOYED,
94447
95153
  Arbitrum: "0x3a0beff39E243453960aD1198Fc3aAabdBDDe56C",
94448
95154
  Optimism: constants_1.NOT_DEPLOYED,
94449
- Base: constants_1.NOT_DEPLOYED
95155
+ Base: constants_1.NOT_DEPLOYED,
95156
+ Sonic: constants_1.NOT_DEPLOYED
94450
95157
  }
94451
95158
  }
94452
95159
  ]
@@ -94463,7 +95170,8 @@ var require_contracts = __commonJS({
94463
95170
  Mainnet: constants_1.NOT_DEPLOYED,
94464
95171
  Arbitrum: "0x5901ce1c3Bf6C97fC49ED0fF08A88a57ea6E4Ca4",
94465
95172
  Optimism: constants_1.NOT_DEPLOYED,
94466
- Base: constants_1.NOT_DEPLOYED
95173
+ Base: constants_1.NOT_DEPLOYED,
95174
+ Sonic: constants_1.NOT_DEPLOYED
94467
95175
  }
94468
95176
  },
94469
95177
  {
@@ -94472,7 +95180,8 @@ var require_contracts = __commonJS({
94472
95180
  Mainnet: constants_1.NOT_DEPLOYED,
94473
95181
  Arbitrum: "0x4601Ec46A285714e6F2A9466DA7f2BcB33646391",
94474
95182
  Optimism: constants_1.NOT_DEPLOYED,
94475
- Base: constants_1.NOT_DEPLOYED
95183
+ Base: constants_1.NOT_DEPLOYED,
95184
+ Sonic: constants_1.NOT_DEPLOYED
94476
95185
  }
94477
95186
  }
94478
95187
  ]
@@ -94489,7 +95198,8 @@ var require_contracts = __commonJS({
94489
95198
  Mainnet: constants_1.NOT_DEPLOYED,
94490
95199
  Arbitrum: "0xf0dcb30811228bED2b87b2753fabAfe80A9D0fb9",
94491
95200
  Optimism: constants_1.NOT_DEPLOYED,
94492
- Base: constants_1.NOT_DEPLOYED
95201
+ Base: constants_1.NOT_DEPLOYED,
95202
+ Sonic: constants_1.NOT_DEPLOYED
94493
95203
  }
94494
95204
  },
94495
95205
  {
@@ -94498,7 +95208,8 @@ var require_contracts = __commonJS({
94498
95208
  Mainnet: constants_1.NOT_DEPLOYED,
94499
95209
  Arbitrum: "0xE42D389058D820177b83E2863FEb13733d6Dd5f2",
94500
95210
  Optimism: constants_1.NOT_DEPLOYED,
94501
- Base: constants_1.NOT_DEPLOYED
95211
+ Base: constants_1.NOT_DEPLOYED,
95212
+ Sonic: constants_1.NOT_DEPLOYED
94502
95213
  }
94503
95214
  }
94504
95215
  ]
@@ -94515,7 +95226,8 @@ var require_contracts = __commonJS({
94515
95226
  Mainnet: constants_1.NOT_DEPLOYED,
94516
95227
  Arbitrum: "0xeA270927C226454452DDF80e24a02087D0D7089F",
94517
95228
  Optimism: constants_1.NOT_DEPLOYED,
94518
- Base: constants_1.NOT_DEPLOYED
95229
+ Base: constants_1.NOT_DEPLOYED,
95230
+ Sonic: constants_1.NOT_DEPLOYED
94519
95231
  }
94520
95232
  },
94521
95233
  {
@@ -94524,7 +95236,8 @@ var require_contracts = __commonJS({
94524
95236
  Mainnet: constants_1.NOT_DEPLOYED,
94525
95237
  Arbitrum: "0xB05Dc0b460Ca3ed5174b33A7dA2104388764F62D",
94526
95238
  Optimism: constants_1.NOT_DEPLOYED,
94527
- Base: constants_1.NOT_DEPLOYED
95239
+ Base: constants_1.NOT_DEPLOYED,
95240
+ Sonic: constants_1.NOT_DEPLOYED
94528
95241
  }
94529
95242
  }
94530
95243
  ]
@@ -94538,7 +95251,8 @@ var require_contracts = __commonJS({
94538
95251
  Arbitrum: constants_1.NOT_DEPLOYED,
94539
95252
  // LIDO_ORACLE
94540
95253
  Optimism: constants_1.NOT_DEPLOYED,
94541
- Base: constants_1.NOT_DEPLOYED
95254
+ Base: constants_1.NOT_DEPLOYED,
95255
+ Sonic: constants_1.NOT_DEPLOYED
94542
95256
  },
94543
95257
  lpToken: "steCRV"
94544
95258
  },
@@ -94560,7 +95274,8 @@ var require_contracts = __commonJS({
94560
95274
  Mainnet: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5",
94561
95275
  Arbitrum: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5",
94562
95276
  Optimism: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5",
94563
- Base: constants_1.NOT_DEPLOYED
95277
+ Base: constants_1.NOT_DEPLOYED,
95278
+ Sonic: "0x4B29DB997Ec0efDFEF13bAeE2a2D7783bCf67f17"
94564
95279
  }
94565
95280
  },
94566
95281
  BALANCER_V3_ROUTER: {
@@ -94571,7 +95286,8 @@ var require_contracts = __commonJS({
94571
95286
  Mainnet: exports2.BALANCER_V3_QUERIES,
94572
95287
  Arbitrum: constants_1.NOT_DEPLOYED,
94573
95288
  Optimism: constants_1.NOT_DEPLOYED,
94574
- Base: constants_1.NOT_DEPLOYED
95289
+ Base: constants_1.NOT_DEPLOYED,
95290
+ Sonic: constants_1.NOT_DEPLOYED
94575
95291
  }
94576
95292
  },
94577
95293
  AAVE_V2_LENDING_POOL: {
@@ -95585,6 +96301,234 @@ var require_usdceConfigOptimism = __commonJS({
95585
96301
  }
95586
96302
  });
95587
96303
 
96304
+ // ../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/usdceConfigSonic.js
96305
+ var require_usdceConfigSonic = __commonJS({
96306
+ "../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/usdceConfigSonic.js"(exports2) {
96307
+ "use strict";
96308
+ Object.defineProperty(exports2, "__esModule", { value: true });
96309
+ exports2.usdceConfigSonic = void 0;
96310
+ var POOL_DECIMALS = BigInt(1e6);
96311
+ var POOL_DIVIDER = BigInt(1);
96312
+ var shadowConfig = {
96313
+ contract: "SHADOW_ROUTER",
96314
+ allowed: [
96315
+ { token0: "USDC_e", token1: "scUSD", tickSpacing: 5 },
96316
+ { token0: "USDC_e", token1: "WETH", tickSpacing: 100 },
96317
+ { token0: "wS", token1: "USDC_e", tickSpacing: 50 },
96318
+ { token0: "wS", token1: "stS", tickSpacing: 1 }
96319
+ ]
96320
+ };
96321
+ var beetsCorrelatedConfig = {
96322
+ contract: "BALANCER_VAULT",
96323
+ allowed: [
96324
+ {
96325
+ pool: "bpt_rsb",
96326
+ status: 2
96327
+ }
96328
+ ]
96329
+ };
96330
+ var correlatedCollateralTokens = [
96331
+ {
96332
+ token: "scUSD",
96333
+ lt: 9e3
96334
+ },
96335
+ // COMPATIBILITY
96336
+ { token: "bpt_rsb", lt: 0 }
96337
+ ];
96338
+ var tier1CorrelatedCreditManager = {
96339
+ name: "USDC.e Correlated Tier 1",
96340
+ degenNft: false,
96341
+ expirationDate: void 0,
96342
+ minDebt: BigInt(5e4) * POOL_DECIMALS / POOL_DIVIDER,
96343
+ maxDebt: BigInt(1e6) * POOL_DECIMALS / POOL_DIVIDER,
96344
+ feeInterest: 2500,
96345
+ feeLiquidation: 50,
96346
+ liquidationPremium: 200,
96347
+ feeLiquidationExpired: 50,
96348
+ liquidationPremiumExpired: 200,
96349
+ poolLimit: BigInt(3e7) * POOL_DECIMALS / POOL_DIVIDER,
96350
+ maxEnabledTokens: 4,
96351
+ collateralTokens: correlatedCollateralTokens,
96352
+ adapters: [shadowConfig, beetsCorrelatedConfig]
96353
+ };
96354
+ var tier2CorrelatedCreditManager = {
96355
+ name: "USDC.e Correlated Tier 2",
96356
+ degenNft: false,
96357
+ expirationDate: void 0,
96358
+ minDebt: BigInt(2500) * POOL_DECIMALS / POOL_DIVIDER,
96359
+ maxDebt: BigInt(5e4) * POOL_DECIMALS / POOL_DIVIDER,
96360
+ feeInterest: 2500,
96361
+ feeLiquidation: 50,
96362
+ liquidationPremium: 300,
96363
+ feeLiquidationExpired: 50,
96364
+ liquidationPremiumExpired: 300,
96365
+ poolLimit: BigInt(1e7) * POOL_DECIMALS / POOL_DIVIDER,
96366
+ maxEnabledTokens: 4,
96367
+ collateralTokens: correlatedCollateralTokens,
96368
+ adapters: [shadowConfig, beetsCorrelatedConfig]
96369
+ };
96370
+ var beetsVolatileConfig = {
96371
+ contract: "BALANCER_VAULT",
96372
+ allowed: [
96373
+ {
96374
+ pool: "bpt_rsb",
96375
+ status: 2
96376
+ },
96377
+ {
96378
+ pool: "bpt_sss",
96379
+ status: 2
96380
+ },
96381
+ {
96382
+ pool: "BPT_scUSD_stS",
96383
+ status: 2
96384
+ },
96385
+ {
96386
+ pool: "BPT_USDCe_stS",
96387
+ status: 2
96388
+ }
96389
+ ]
96390
+ };
96391
+ var equalizerConfig = {
96392
+ contract: "EQUALIZER_ROUTER",
96393
+ allowed: [
96394
+ {
96395
+ token0: "USDC_e",
96396
+ token1: "WETH",
96397
+ stable: false
96398
+ }
96399
+ ]
96400
+ };
96401
+ var volatileCollateralTokens = [
96402
+ {
96403
+ token: "stS",
96404
+ lt: 8200
96405
+ },
96406
+ {
96407
+ token: "wS",
96408
+ lt: 8500
96409
+ },
96410
+ {
96411
+ token: "WETH",
96412
+ lt: 8500
96413
+ },
96414
+ // COMPATIBILITY
96415
+ { token: "bpt_rsb", lt: 0 },
96416
+ { token: "bpt_sss", lt: 0 },
96417
+ { token: "BPT_scUSD_stS", lt: 0 },
96418
+ { token: "BPT_USDCe_stS", lt: 0 }
96419
+ ];
96420
+ var tier1VolatileCreditManager = {
96421
+ name: "USDC.e Volatile Tier 1",
96422
+ degenNft: false,
96423
+ expirationDate: void 0,
96424
+ minDebt: BigInt(5e4) * POOL_DECIMALS / POOL_DIVIDER,
96425
+ maxDebt: BigInt(1e6) * POOL_DECIMALS / POOL_DIVIDER,
96426
+ feeInterest: 2500,
96427
+ feeLiquidation: 50,
96428
+ liquidationPremium: 300,
96429
+ feeLiquidationExpired: 50,
96430
+ liquidationPremiumExpired: 300,
96431
+ poolLimit: BigInt(5e6) * POOL_DECIMALS / POOL_DIVIDER,
96432
+ maxEnabledTokens: 4,
96433
+ collateralTokens: volatileCollateralTokens,
96434
+ adapters: [shadowConfig, beetsVolatileConfig, equalizerConfig]
96435
+ };
96436
+ var tier2VolatileCreditManager = {
96437
+ name: "USDC.e Volatile Tier 2",
96438
+ degenNft: false,
96439
+ expirationDate: void 0,
96440
+ minDebt: BigInt(2500) * POOL_DECIMALS / POOL_DIVIDER,
96441
+ maxDebt: BigInt(5e4) * POOL_DECIMALS / POOL_DIVIDER,
96442
+ feeInterest: 2500,
96443
+ feeLiquidation: 0,
96444
+ liquidationPremium: 400,
96445
+ feeLiquidationExpired: 0,
96446
+ liquidationPremiumExpired: 400,
96447
+ poolLimit: BigInt(5e6) * POOL_DECIMALS / POOL_DIVIDER,
96448
+ maxEnabledTokens: 4,
96449
+ collateralTokens: volatileCollateralTokens,
96450
+ adapters: [shadowConfig, beetsVolatileConfig, equalizerConfig]
96451
+ };
96452
+ exports2.usdceConfigSonic = {
96453
+ id: "sonic-usdce-v3",
96454
+ symbol: "dUSDC.eV3",
96455
+ name: "USDC.e v3 Sonic",
96456
+ network: "Sonic",
96457
+ underlying: "USDC_e",
96458
+ accountAmount: BigInt(1e4) * POOL_DECIMALS,
96459
+ withdrawalFee: 0,
96460
+ totalDebtLimit: BigInt(5e7) * POOL_DECIMALS,
96461
+ irm: {
96462
+ U1: 7e3,
96463
+ U2: 9e3,
96464
+ Rbase: 0,
96465
+ Rslope1: 200,
96466
+ Rslope2: 500,
96467
+ Rslope3: 2300,
96468
+ isBorrowingMoreU2Forbidden: true
96469
+ },
96470
+ ratesAndLimits: {
96471
+ scUSD: {
96472
+ minRate: 5,
96473
+ maxRate: 1500,
96474
+ quotaIncreaseFee: 1,
96475
+ limit: BigInt(75e4) * POOL_DECIMALS / POOL_DIVIDER
96476
+ },
96477
+ stS: {
96478
+ minRate: 5,
96479
+ maxRate: 2e3,
96480
+ quotaIncreaseFee: 1,
96481
+ limit: BigInt(4e5) * POOL_DECIMALS / POOL_DIVIDER
96482
+ },
96483
+ wS: {
96484
+ minRate: 5,
96485
+ maxRate: 2e3,
96486
+ quotaIncreaseFee: 1,
96487
+ limit: BigInt(8e5) * POOL_DECIMALS / POOL_DIVIDER
96488
+ },
96489
+ WETH: {
96490
+ minRate: 5,
96491
+ maxRate: 2e3,
96492
+ quotaIncreaseFee: 1,
96493
+ limit: BigInt(1e5) * POOL_DECIMALS / POOL_DIVIDER
96494
+ },
96495
+ // COMPATIBILITY
96496
+ bpt_rsb: {
96497
+ minRate: 1,
96498
+ maxRate: 1,
96499
+ quotaIncreaseFee: 0,
96500
+ limit: BigInt(0)
96501
+ },
96502
+ bpt_sss: {
96503
+ minRate: 1,
96504
+ maxRate: 1,
96505
+ quotaIncreaseFee: 0,
96506
+ limit: BigInt(0)
96507
+ },
96508
+ BPT_scUSD_stS: {
96509
+ minRate: 1,
96510
+ maxRate: 1,
96511
+ quotaIncreaseFee: 0,
96512
+ limit: BigInt(0)
96513
+ },
96514
+ BPT_USDCe_stS: {
96515
+ minRate: 1,
96516
+ maxRate: 1,
96517
+ quotaIncreaseFee: 0,
96518
+ limit: BigInt(0)
96519
+ }
96520
+ },
96521
+ creditManagers: [
96522
+ tier1CorrelatedCreditManager,
96523
+ tier2CorrelatedCreditManager,
96524
+ tier1VolatileCreditManager,
96525
+ tier2VolatileCreditManager
96526
+ ],
96527
+ supportsQuotas: true
96528
+ };
96529
+ }
96530
+ });
96531
+
95588
96532
  // ../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/usdtConfigMainnet.js
95589
96533
  var require_usdtConfigMainnet = __commonJS({
95590
96534
  "../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/usdtConfigMainnet.js"(exports2) {
@@ -97508,6 +98452,124 @@ var require_wethConfigOptimism = __commonJS({
97508
98452
  }
97509
98453
  });
97510
98454
 
98455
+ // ../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/wsConfigSonic.js
98456
+ var require_wsConfigSonic = __commonJS({
98457
+ "../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/wsConfigSonic.js"(exports2) {
98458
+ "use strict";
98459
+ Object.defineProperty(exports2, "__esModule", { value: true });
98460
+ exports2.wsConfigSonic = void 0;
98461
+ var POOL_DECIMALS = BigInt(1e18);
98462
+ var POOL_DIVIDER = BigInt(1);
98463
+ var shadowConfig = {
98464
+ contract: "SHADOW_ROUTER",
98465
+ allowed: [{ token0: "wS", token1: "stS", tickSpacing: 1 }]
98466
+ };
98467
+ var beetsCorrelatedConfig = {
98468
+ contract: "BALANCER_VAULT",
98469
+ allowed: [
98470
+ {
98471
+ pool: "bpt_sss",
98472
+ status: 2
98473
+ }
98474
+ ]
98475
+ };
98476
+ var correlatedCollateralTokens = [
98477
+ {
98478
+ token: "stS",
98479
+ lt: 9e3
98480
+ },
98481
+ // COMPATIBILITY
98482
+ { token: "bpt_sss", lt: 0 }
98483
+ ];
98484
+ var tier1CorrelatedCreditManager = {
98485
+ name: "wS Correlated Tier 1",
98486
+ degenNft: false,
98487
+ expirationDate: void 0,
98488
+ minDebt: BigInt(5e4) * POOL_DECIMALS / POOL_DIVIDER,
98489
+ maxDebt: BigInt(1e6) * POOL_DECIMALS / POOL_DIVIDER,
98490
+ feeInterest: 2500,
98491
+ feeLiquidation: 50,
98492
+ liquidationPremium: 200,
98493
+ feeLiquidationExpired: 50,
98494
+ liquidationPremiumExpired: 200,
98495
+ poolLimit: BigInt(7e5) * POOL_DECIMALS / POOL_DIVIDER,
98496
+ maxEnabledTokens: 4,
98497
+ collateralTokens: correlatedCollateralTokens,
98498
+ adapters: [shadowConfig, beetsCorrelatedConfig]
98499
+ };
98500
+ var tier2CorrelatedCreditManager = {
98501
+ name: "wS Correlated Tier 2",
98502
+ degenNft: false,
98503
+ expirationDate: void 0,
98504
+ minDebt: BigInt(2500) * POOL_DECIMALS / POOL_DIVIDER,
98505
+ maxDebt: BigInt(5e4) * POOL_DECIMALS / POOL_DIVIDER,
98506
+ feeInterest: 2500,
98507
+ feeLiquidation: 50,
98508
+ liquidationPremium: 300,
98509
+ feeLiquidationExpired: 50,
98510
+ liquidationPremiumExpired: 300,
98511
+ poolLimit: BigInt(3e5) * POOL_DECIMALS / POOL_DIVIDER,
98512
+ maxEnabledTokens: 4,
98513
+ collateralTokens: correlatedCollateralTokens,
98514
+ adapters: [shadowConfig, beetsCorrelatedConfig]
98515
+ };
98516
+ exports2.wsConfigSonic = {
98517
+ id: "sonic-ws-v3",
98518
+ symbol: "dwS.eV3",
98519
+ name: "wS v3 Sonic",
98520
+ network: "Sonic",
98521
+ underlying: "wS",
98522
+ accountAmount: BigInt(1e4) * POOL_DECIMALS,
98523
+ withdrawalFee: 0,
98524
+ totalDebtLimit: BigInt(5e7) * POOL_DECIMALS,
98525
+ irm: {
98526
+ U1: 7e3,
98527
+ U2: 9e3,
98528
+ Rbase: 0,
98529
+ Rslope1: 150,
98530
+ Rslope2: 200,
98531
+ Rslope3: 2150,
98532
+ isBorrowingMoreU2Forbidden: true
98533
+ },
98534
+ ratesAndLimits: {
98535
+ stS: {
98536
+ minRate: 5,
98537
+ maxRate: 1e3,
98538
+ quotaIncreaseFee: 1,
98539
+ limit: BigInt(75e5) * POOL_DECIMALS / POOL_DIVIDER
98540
+ },
98541
+ // COMPATIBILITY
98542
+ bpt_rsb: {
98543
+ minRate: 1,
98544
+ maxRate: 1,
98545
+ quotaIncreaseFee: 0,
98546
+ limit: BigInt(0)
98547
+ },
98548
+ bpt_sss: {
98549
+ minRate: 1,
98550
+ maxRate: 1,
98551
+ quotaIncreaseFee: 0,
98552
+ limit: BigInt(0)
98553
+ },
98554
+ BPT_scUSD_stS: {
98555
+ minRate: 1,
98556
+ maxRate: 1,
98557
+ quotaIncreaseFee: 0,
98558
+ limit: BigInt(0)
98559
+ },
98560
+ BPT_USDCe_stS: {
98561
+ minRate: 1,
98562
+ maxRate: 1,
98563
+ quotaIncreaseFee: 0,
98564
+ limit: BigInt(0)
98565
+ }
98566
+ },
98567
+ creditManagers: [tier1CorrelatedCreditManager, tier2CorrelatedCreditManager],
98568
+ supportsQuotas: true
98569
+ };
98570
+ }
98571
+ });
98572
+
97511
98573
  // ../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/wstethConfigMainnet.js
97512
98574
  var require_wstethConfigMainnet = __commonJS({
97513
98575
  "../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/wstethConfigMainnet.js"(exports2) {
@@ -97662,7 +98724,7 @@ var require_configs = __commonJS({
97662
98724
  "../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/index.js"(exports2) {
97663
98725
  "use strict";
97664
98726
  Object.defineProperty(exports2, "__esModule", { value: true });
97665
- exports2.wstethConfigMainnet = exports2.wethConfigOptimism = exports2.wethConfigMainnet = exports2.wethConfigArbitrum = exports2.wbtcConfigMainnet = exports2.usdtConfigMainnet = exports2.usdceConfigOptimism = exports2.usdceConfigArbitrum = exports2.usdcConfigOptimism = exports2.usdcConfigMainnet = exports2.usdcConfigArbitrum = exports2.testWethConfigMainnet = exports2.testWethConfigArbitrum = exports2.testUsdcConfigMainnet = exports2.testUsdcConfigArbitrum = exports2.testDaiConfigMainnet = exports2.tbtcConfigMainnet = exports2.nexoConfigMainnet = exports2.ghoConfigMainnet = exports2.dolaConfigMainnet = exports2.daiConfigMainnet = exports2.crvusdConfigMainnet = void 0;
98727
+ exports2.wstethConfigMainnet = exports2.wsConfigSonic = exports2.wethConfigOptimism = exports2.wethConfigMainnet = exports2.wethConfigArbitrum = exports2.wbtcConfigMainnet = exports2.usdtConfigMainnet = exports2.usdceConfigSonic = exports2.usdceConfigOptimism = exports2.usdceConfigArbitrum = exports2.usdcConfigOptimism = exports2.usdcConfigMainnet = exports2.usdcConfigArbitrum = exports2.testWethConfigMainnet = exports2.testWethConfigArbitrum = exports2.testUsdcConfigMainnet = exports2.testUsdcConfigArbitrum = exports2.testDaiConfigMainnet = exports2.tbtcConfigMainnet = exports2.nexoConfigMainnet = exports2.ghoConfigMainnet = exports2.dolaConfigMainnet = exports2.daiConfigMainnet = exports2.crvusdConfigMainnet = void 0;
97666
98728
  var crvusdConfigMainnet_1 = require_crvusdConfigMainnet();
97667
98729
  Object.defineProperty(exports2, "crvusdConfigMainnet", { enumerable: true, get: function() {
97668
98730
  return crvusdConfigMainnet_1.crvusdConfigMainnet;
@@ -97727,6 +98789,10 @@ var require_configs = __commonJS({
97727
98789
  Object.defineProperty(exports2, "usdceConfigOptimism", { enumerable: true, get: function() {
97728
98790
  return usdceConfigOptimism_1.usdceConfigOptimism;
97729
98791
  } });
98792
+ var usdceConfigSonic_1 = require_usdceConfigSonic();
98793
+ Object.defineProperty(exports2, "usdceConfigSonic", { enumerable: true, get: function() {
98794
+ return usdceConfigSonic_1.usdceConfigSonic;
98795
+ } });
97730
98796
  var usdtConfigMainnet_1 = require_usdtConfigMainnet();
97731
98797
  Object.defineProperty(exports2, "usdtConfigMainnet", { enumerable: true, get: function() {
97732
98798
  return usdtConfigMainnet_1.usdtConfigMainnet;
@@ -97747,6 +98813,10 @@ var require_configs = __commonJS({
97747
98813
  Object.defineProperty(exports2, "wethConfigOptimism", { enumerable: true, get: function() {
97748
98814
  return wethConfigOptimism_1.wethConfigOptimism;
97749
98815
  } });
98816
+ var wsConfigSonic_1 = require_wsConfigSonic();
98817
+ Object.defineProperty(exports2, "wsConfigSonic", { enumerable: true, get: function() {
98818
+ return wsConfigSonic_1.wsConfigSonic;
98819
+ } });
97750
98820
  var wstethConfigMainnet_1 = require_wstethConfigMainnet();
97751
98821
  Object.defineProperty(exports2, "wstethConfigMainnet", { enumerable: true, get: function() {
97752
98822
  return wstethConfigMainnet_1.wstethConfigMainnet;
@@ -99112,67 +100182,78 @@ var require_utilsContracts = __commonJS({
99112
100182
  Mainnet: "0x9ea7b04Da02a5373317D745c1571c84aaD03321D",
99113
100183
  Arbitrum: "0x7d04eCdb892Ae074f03B5D0aBA03796F90F3F2af",
99114
100184
  Optimism: "0x3761ca4BFAcFCFFc1B8034e69F19116dD6756726",
99115
- Base: constants_1.NOT_DEPLOYED
100185
+ Base: constants_1.NOT_DEPLOYED,
100186
+ Sonic: "0x4b27b296273B72d7c7bfee1ACE93DC081467C41B"
99116
100187
  };
99117
100188
  exports2.TIMELOCK = {
99118
100189
  Mainnet: "0xa133C9A92Fb8dDB962Af1cbae58b2723A0bdf23b",
99119
100190
  Arbitrum: "0x148DD932eCe1155c11006F5650c6Ff428f8D374A",
99120
100191
  Optimism: "0x148DD932eCe1155c11006F5650c6Ff428f8D374A",
99121
- Base: constants_1.NOT_DEPLOYED
100192
+ Base: constants_1.NOT_DEPLOYED,
100193
+ Sonic: "0xAdbF876ce58CB65c99b18078353e1DCB16E69e84"
99122
100194
  };
99123
100195
  exports2.GOVERNOR = {
99124
100196
  Mainnet: "0x29B97F37B3E0C704bCFD785F5b7bBa2A0B7df2c7",
99125
100197
  Arbitrum: "0xF0C89a0eDCD68B4176A26B3bf7574498DD3E6d09",
99126
100198
  Optimism: "0xF0C89a0eDCD68B4176A26B3bf7574498DD3E6d09",
99127
- Base: constants_1.NOT_DEPLOYED
100199
+ Base: constants_1.NOT_DEPLOYED,
100200
+ Sonic: "0x1f3Ee385ce9A6333d73b61086349C4d0f5De0da8"
99128
100201
  };
99129
100202
  exports2.BATCH_CHAIN = {
99130
100203
  Mainnet: "0xB900bDEf6eAc8C5D97F8e876aBC39573Cf6626b2",
99131
100204
  Arbitrum: "0xAEbaa1015D0bc250F5b38aac9b8f65E0668cE3c2",
99132
100205
  Optimism: "0x5CfB7F186dEA745381ccb1D532e43223B5a6AD10",
99133
- Base: constants_1.NOT_DEPLOYED
100206
+ Base: constants_1.NOT_DEPLOYED,
100207
+ Sonic: "0xDe6c55B81442AF66Fd12508e15807fe2b92Be76D"
99134
100208
  };
99135
100209
  exports2.BLACKLIST_HELPER = {
99136
100210
  Mainnet: "0xFfbF344741654a1B9Ab1286Cf05A42f275F67839",
99137
100211
  Arbitrum: constants_1.NOT_DEPLOYED,
99138
100212
  Optimism: constants_1.NOT_DEPLOYED,
99139
- Base: constants_1.NOT_DEPLOYED
100213
+ Base: constants_1.NOT_DEPLOYED,
100214
+ Sonic: constants_1.NOT_DEPLOYED
99140
100215
  };
99141
100216
  exports2.CREATE2FACTORY = {
99142
100217
  Mainnet: "0x45d146CAA25aa565Cfc7434926633f4F1C97c873",
99143
100218
  Arbitrum: "0xad1231A64eE68D6BF721a1E8e177776cc49bAA2C",
99144
100219
  Optimism: "0xad1231A64eE68D6BF721a1E8e177776cc49bAA2C",
99145
- Base: constants_1.NOT_DEPLOYED
100220
+ Base: constants_1.NOT_DEPLOYED,
100221
+ Sonic: "0x148DD932eCe1155c11006F5650c6Ff428f8D374A"
99146
100222
  };
99147
100223
  exports2.MULTISIG = {
99148
100224
  Mainnet: "0xA7D5DDc1b8557914F158076b228AA91eF613f1D5",
99149
100225
  Arbitrum: "0x57Fd8B1a9213624157786Fff4a7bc532Ce717773",
99150
100226
  Optimism: "0x8bA8cd6D00919ceCc19D9B4A2c8669a524883C4c",
99151
- Base: constants_1.NOT_DEPLOYED
100227
+ Base: constants_1.NOT_DEPLOYED,
100228
+ Sonic: "0xacEB9dc6a81f1C9E2d8a86c3bFec3f6EF584139D"
99152
100229
  };
99153
100230
  exports2.VETO_ADMIN = {
99154
100231
  Mainnet: "0xbb803559B4D58b75E12dd74641AB955e8B0Df40E",
99155
100232
  Arbitrum: "0x746fb3AcAfF6Bfe246206EC2E51F587d2E57abb6",
99156
100233
  Optimism: "0x9744f76dc5239Eb4DC2CE8D5538e1BA89C8FA90f",
99157
- Base: constants_1.NOT_DEPLOYED
100234
+ Base: constants_1.NOT_DEPLOYED,
100235
+ Sonic: "0x393eC629b90389F957c5a2E4FC2F8F488e735BFC"
99158
100236
  };
99159
100237
  exports2.TREASURY = {
99160
100238
  Mainnet: "0x7b065fcb0760df0cea8cfd144e08554f3cea73d1",
99161
100239
  Arbitrum: "0x2c31eFFE426765E68A43163A96DD13DF70B53C14",
99162
100240
  Optimism: "0x1ACc5BC353f23B901801f3Ba48e1E51a14263808",
99163
- Base: constants_1.NOT_DEPLOYED
100241
+ Base: constants_1.NOT_DEPLOYED,
100242
+ Sonic: "0x74028Cf1cBa6A4513c9a27137E7d0F3847833795"
99164
100243
  };
99165
100244
  exports2.ROUTER_MULTISIG_ADDRESS = {
99166
100245
  Mainnet: "0xaaDf86C39a76eEEf5a5337Ca449C7EfA66E3175E",
99167
100246
  Arbitrum: "0xEAb23245937A4F0894B0c92f08992C2c45Fc8df5",
99168
100247
  Optimism: "0x4cda5Fa96B5d436002175d958667C7EF3B644aA1",
99169
- Base: constants_1.NOT_DEPLOYED
100248
+ Base: constants_1.NOT_DEPLOYED,
100249
+ Sonic: "0x21DEE3c9bAc88F8cb96b7e7d19D3DFDB071EC81d"
99170
100250
  };
99171
100251
  exports2.ROUTER_CREATE2FACTORY = {
99172
100252
  Mainnet: "0xA287577Fb7Cf49246e569EA268FE919F1cD6d9E2",
99173
100253
  Arbitrum: "0x95345A4d55DAf6864924fC8861b311B9BC860E5f",
99174
100254
  Optimism: "0x95345A4d55DAf6864924fC8861b311B9BC860E5f",
99175
- Base: constants_1.NOT_DEPLOYED
100255
+ Base: constants_1.NOT_DEPLOYED,
100256
+ Sonic: "0x5CfB7F186dEA745381ccb1D532e43223B5a6AD10"
99176
100257
  };
99177
100258
  exports2.emergencyLiquidators = [
99178
100259
  "0x7BD9c8161836b1F402233E80F55E3CaE0Fde4d87",
@@ -99449,12 +100530,13 @@ ${contracts2}
99449
100530
  }
99450
100531
  case "UNISWAP_V3_ROUTER":
99451
100532
  case "PANCAKESWAP_V3_ROUTER":
99452
- case "VELODROME_CL_ROUTER": {
100533
+ case "VELODROME_CL_ROUTER":
100534
+ case "SHADOW_ROUTER": {
99453
100535
  const pairs = (a.allowed || []).map((pair) => `uv3p.push(UniswapV3Pair({
99454
100536
  router: Contracts.${a.contract},
99455
100537
  token0: TOKEN_${(0, safeEnum_1.safeEnum)(pair.token0)},
99456
100538
  token1: TOKEN_${(0, safeEnum_1.safeEnum)(pair.token1)},
99457
- fee: ${a.contract === "VELODROME_CL_ROUTER" ? pair.tickSpacing : pair.fee}
100539
+ fee: ${["VELODROME_CL_ROUTER", "SHADOW_ROUTER"].includes(a.contract) ? pair.tickSpacing : pair.fee}
99458
100540
  }));`).join("\n");
99459
100541
  return `${contractLine}{
99460
100542
  UniswapV3Pair[] storage uv3p = cp.adapterConfig.uniswapV3Pairs;
@@ -130110,7 +131192,7 @@ var require_chains = __commonJS({
130110
131192
  "../../node_modules/@gearbox-protocol/sdk-gov/lib/core/chains.js"(exports2) {
130111
131193
  "use strict";
130112
131194
  Object.defineProperty(exports2, "__esModule", { value: true });
130113
- exports2.detectNetwork = exports2.isSupportedNetwork = exports2.getNetworkType = exports2.supportedChains = exports2.CHAINS = exports2.BASE_NETWORK = exports2.ARBITRUM_NETWORK = exports2.HARDHAT_NETWORK = exports2.LOCAL_NETWORK = exports2.OPTIMISM_NETWORK = exports2.GOERLI_NETWORK = exports2.MAINNET_NETWORK = void 0;
131195
+ exports2.detectNetwork = exports2.isSupportedNetwork = exports2.getNetworkType = exports2.supportedChains = exports2.CHAINS = exports2.SONIC_NETWORK = exports2.BASE_NETWORK = exports2.ARBITRUM_NETWORK = exports2.HARDHAT_NETWORK = exports2.LOCAL_NETWORK = exports2.OPTIMISM_NETWORK = exports2.GOERLI_NETWORK = exports2.MAINNET_NETWORK = void 0;
130114
131196
  var ethers_1 = require_lib36();
130115
131197
  var token_1 = require_token();
130116
131198
  exports2.MAINNET_NETWORK = 1;
@@ -130120,25 +131202,29 @@ var require_chains = __commonJS({
130120
131202
  exports2.HARDHAT_NETWORK = 31337;
130121
131203
  exports2.ARBITRUM_NETWORK = 42161;
130122
131204
  exports2.BASE_NETWORK = 8453;
131205
+ exports2.SONIC_NETWORK = 146;
130123
131206
  exports2.CHAINS = {
130124
131207
  Mainnet: exports2.MAINNET_NETWORK,
130125
131208
  Arbitrum: exports2.ARBITRUM_NETWORK,
130126
131209
  Local: exports2.LOCAL_NETWORK,
130127
131210
  Hardhat: exports2.HARDHAT_NETWORK,
130128
131211
  Optimism: exports2.OPTIMISM_NETWORK,
130129
- Base: exports2.BASE_NETWORK
131212
+ Base: exports2.BASE_NETWORK,
131213
+ Sonic: exports2.SONIC_NETWORK
130130
131214
  };
130131
131215
  exports2.supportedChains = [
130132
131216
  "Mainnet",
130133
131217
  "Arbitrum",
130134
131218
  "Optimism",
130135
- "Base"
131219
+ "Base",
131220
+ "Sonic"
130136
131221
  ];
130137
131222
  var SUPPORTED_CHAINS2 = {
130138
131223
  [exports2.CHAINS.Mainnet]: "Mainnet",
130139
131224
  [exports2.CHAINS.Arbitrum]: "Arbitrum",
130140
131225
  [exports2.CHAINS.Local]: "Mainnet",
130141
- [exports2.CHAINS.Optimism]: "Optimism"
131226
+ [exports2.CHAINS.Optimism]: "Optimism",
131227
+ [exports2.CHAINS.Sonic]: "Sonic"
130142
131228
  // [CHAINS.Base]: "Polygon",
130143
131229
  };
130144
131230
  var getNetworkType = (chainId, localAs = "Mainnet") => {
@@ -130158,9 +131244,11 @@ var require_chains = __commonJS({
130158
131244
  const mainnetUSDC = token_1.tokenDataByNetwork.Mainnet["USDC"];
130159
131245
  const arbitrumUSDC = token_1.tokenDataByNetwork.Arbitrum["USDC"];
130160
131246
  const optimismUSDC = token_1.tokenDataByNetwork.Optimism["USDC"];
131247
+ const sonicUSDC = token_1.tokenDataByNetwork.Sonic["USDC_e"];
130161
131248
  const mainnetUSDCContract = new ethers_1.Contract(mainnetUSDC, usdcABI, provider);
130162
131249
  const arbitrumUSDCContract = new ethers_1.Contract(arbitrumUSDC, usdcABI, provider);
130163
131250
  const optimismUSDCContract = new ethers_1.Contract(optimismUSDC, usdcABI, provider);
131251
+ const sonicUSDCContract = new ethers_1.Contract(sonicUSDC, usdcABI, provider);
130164
131252
  try {
130165
131253
  await mainnetUSDCContract.symbol();
130166
131254
  return "Mainnet";
@@ -130176,6 +131264,11 @@ var require_chains = __commonJS({
130176
131264
  return "Optimism";
130177
131265
  } catch {
130178
131266
  }
131267
+ try {
131268
+ await sonicUSDCContract.symbol();
131269
+ return "Sonic";
131270
+ } catch {
131271
+ }
130179
131272
  throw new Error("Unsupported network");
130180
131273
  };
130181
131274
  exports2.detectNetwork = detectNetwork2;
@@ -130248,6 +131341,7 @@ var require_priceFeeds = __commonJS({
130248
131341
  "use strict";
130249
131342
  Object.defineProperty(exports2, "__esModule", { value: true });
130250
131343
  exports2.priceFeedsByToken = exports2.getPriceFeedsByToken = exports2.pythByNetwork = exports2.REDSTONE_DEMO_SIGNERS = exports2.REDSTONE_ARBITRUM_SIGNERS = exports2.REDSTONE_SIGNERS = exports2.GAS_PRICE_FEED = void 0;
131344
+ var constants_1 = require_constants3();
130251
131345
  var pricefeedType_1 = require_pricefeedType();
130252
131346
  exports2.GAS_PRICE_FEED = "0x169e633a2d1e6c10dd91238ba11c4a708dfef37c";
130253
131347
  exports2.REDSTONE_SIGNERS = {
@@ -130278,7 +131372,8 @@ var require_priceFeeds = __commonJS({
130278
131372
  Mainnet: "0x4305FB66699C3B2702D4d05CF36551390A4c69C6",
130279
131373
  Arbitrum: "0xff1a0f4744e8582DF1aE09D5611b887B6a12925C",
130280
131374
  Optimism: "0xff1a0f4744e8582DF1aE09D5611b887B6a12925C",
130281
- Base: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a"
131375
+ Base: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
131376
+ Sonic: constants_1.NOT_DEPLOYED
130282
131377
  };
130283
131378
  function getPriceFeedsByToken(token, network) {
130284
131379
  const priceFeed = exports2.priceFeedsByToken[token];
@@ -130684,6 +131779,21 @@ var require_priceFeeds = __commonJS({
130684
131779
  stalenessPeriod: pricefeedType_1.FOUR_MINUTES,
130685
131780
  ...exports2.REDSTONE_SIGNERS
130686
131781
  }
131782
+ },
131783
+ Sonic: {
131784
+ Main: {
131785
+ type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
131786
+ address: "0x55bCa887199d5520B3Ce285D41e6dC10C08716C9",
131787
+ trusted: false,
131788
+ stalenessPeriod: pricefeedType_1.HOUR_24
131789
+ },
131790
+ Reserve: {
131791
+ type: pricefeedType_1.PriceFeedType.REDSTONE_ORACLE,
131792
+ dataServiceId: "redstone-primary-prod",
131793
+ dataId: "USDC",
131794
+ stalenessPeriod: pricefeedType_1.FOUR_MINUTES,
131795
+ ...exports2.REDSTONE_SIGNERS
131796
+ }
130687
131797
  }
130688
131798
  },
130689
131799
  USDT: {
@@ -130872,6 +131982,80 @@ var require_priceFeeds = __commonJS({
130872
131982
  stalenessPeriod: pricefeedType_1.FOUR_MINUTES,
130873
131983
  ...exports2.REDSTONE_SIGNERS
130874
131984
  }
131985
+ },
131986
+ Sonic: {
131987
+ Main: {
131988
+ type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
131989
+ address: "0x824364077993847f71293B24ccA8567c00c2de11",
131990
+ trusted: false,
131991
+ stalenessPeriod: pricefeedType_1.HOUR_24
131992
+ },
131993
+ Reserve: {
131994
+ type: pricefeedType_1.PriceFeedType.REDSTONE_ORACLE,
131995
+ dataServiceId: "redstone-primary-prod",
131996
+ dataId: "ETH",
131997
+ stalenessPeriod: pricefeedType_1.FOUR_MINUTES,
131998
+ ...exports2.REDSTONE_SIGNERS
131999
+ }
132000
+ }
132001
+ },
132002
+ wS: {
132003
+ Sonic: {
132004
+ Main: {
132005
+ type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
132006
+ address: "0xc76dFb89fF298145b417d221B2c747d84952e01d",
132007
+ stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED,
132008
+ trusted: false
132009
+ },
132010
+ Reserve: {
132011
+ type: pricefeedType_1.PriceFeedType.REDSTONE_ORACLE,
132012
+ dataServiceId: "redstone-primary-prod",
132013
+ dataId: "S",
132014
+ stalenessPeriod: pricefeedType_1.FOUR_MINUTES,
132015
+ ...exports2.REDSTONE_SIGNERS
132016
+ }
132017
+ }
132018
+ },
132019
+ stS: {
132020
+ Sonic: {
132021
+ Main: {
132022
+ type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
132023
+ targetToBasePriceFeed: {
132024
+ type: pricefeedType_1.PriceFeedType.REDSTONE_ORACLE,
132025
+ dataServiceId: "redstone-primary-prod",
132026
+ dataId: "stS_FUNDAMENTAL",
132027
+ stalenessPeriod: pricefeedType_1.FOUR_MINUTES,
132028
+ ...exports2.REDSTONE_SIGNERS
132029
+ },
132030
+ baseToUsdPriceFeed: {
132031
+ type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
132032
+ address: "0xc76dFb89fF298145b417d221B2c747d84952e01d",
132033
+ stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
132034
+ },
132035
+ trusted: false
132036
+ },
132037
+ Reserve: {
132038
+ type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
132039
+ address: "0xc76dFb89fF298145b417d221B2c747d84952e01d",
132040
+ stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
132041
+ }
132042
+ }
132043
+ },
132044
+ scUSD: {
132045
+ Sonic: {
132046
+ Main: {
132047
+ type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
132048
+ address: "0x55bCa887199d5520B3Ce285D41e6dC10C08716C9",
132049
+ trusted: false,
132050
+ stalenessPeriod: pricefeedType_1.HOUR_24
132051
+ },
132052
+ Reserve: {
132053
+ type: pricefeedType_1.PriceFeedType.REDSTONE_ORACLE,
132054
+ dataServiceId: "redstone-primary-prod",
132055
+ dataId: "USDC",
132056
+ stalenessPeriod: pricefeedType_1.FOUR_MINUTES,
132057
+ ...exports2.REDSTONE_SIGNERS
132058
+ }
130875
132059
  }
130876
132060
  },
130877
132061
  YFI: {
@@ -131939,6 +133123,14 @@ var require_priceFeeds = __commonJS({
131939
133123
  }
131940
133124
  }
131941
133125
  },
133126
+ MORPHO: {
133127
+ AllNetworks: {
133128
+ Main: {
133129
+ type: pricefeedType_1.PriceFeedType.ZERO_ORACLE,
133130
+ trusted: false
133131
+ }
133132
+ }
133133
+ },
131942
133134
  AURA: {
131943
133135
  AllNetworks: {
131944
133136
  Main: {
@@ -132387,6 +133579,14 @@ var require_priceFeeds = __commonJS({
132387
133579
  }
132388
133580
  }
132389
133581
  },
133582
+ USDLUSDC: {
133583
+ AllNetworks: {
133584
+ Main: {
133585
+ type: pricefeedType_1.PriceFeedType.ZERO_ORACLE,
133586
+ trusted: false
133587
+ }
133588
+ }
133589
+ },
132390
133590
  wstETHCRV: {
132391
133591
  AllNetworks: {
132392
133592
  Main: {
@@ -133127,6 +134327,38 @@ var require_priceFeeds = __commonJS({
133127
134327
  }
133128
134328
  }
133129
134329
  },
134330
+ bpt_rsb: {
134331
+ AllNetworks: {
134332
+ Main: {
134333
+ type: pricefeedType_1.PriceFeedType.ZERO_ORACLE,
134334
+ trusted: false
134335
+ }
134336
+ }
134337
+ },
134338
+ bpt_sss: {
134339
+ AllNetworks: {
134340
+ Main: {
134341
+ type: pricefeedType_1.PriceFeedType.ZERO_ORACLE,
134342
+ trusted: false
134343
+ }
134344
+ }
134345
+ },
134346
+ BPT_scUSD_stS: {
134347
+ AllNetworks: {
134348
+ Main: {
134349
+ type: pricefeedType_1.PriceFeedType.ZERO_ORACLE,
134350
+ trusted: false
134351
+ }
134352
+ }
134353
+ },
134354
+ BPT_USDCe_stS: {
134355
+ AllNetworks: {
134356
+ Main: {
134357
+ type: pricefeedType_1.PriceFeedType.ZERO_ORACLE,
134358
+ trusted: false
134359
+ }
134360
+ }
134361
+ },
133130
134362
  tETH_wstETH_BPT: {
133131
134363
  AllNetworks: {
133132
134364
  Main: {
@@ -133382,6 +134614,14 @@ var require_priceFeeds = __commonJS({
133382
134614
  }
133383
134615
  }
133384
134616
  },
134617
+ dwSV3: {
134618
+ Sonic: {
134619
+ Main: {
134620
+ type: pricefeedType_1.PriceFeedType.ZERO_ORACLE,
134621
+ trusted: false
134622
+ }
134623
+ }
134624
+ },
133385
134625
  sdWBTCV3: {
133386
134626
  Mainnet: {
133387
134627
  Main: {
@@ -133821,6 +135061,39 @@ var require_priceFeeds = __commonJS({
133821
135061
  }
133822
135062
  }
133823
135063
  },
135064
+ USDL: {
135065
+ Mainnet: {
135066
+ Main: {
135067
+ type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
135068
+ address: "0x8fFfFfd4AfB6115b954Bd326cbe7B4BA576818f6",
135069
+ stalenessPeriod: pricefeedType_1.HOUR_24,
135070
+ trusted: false
135071
+ }
135072
+ }
135073
+ },
135074
+ wUSDL: {
135075
+ Mainnet: {
135076
+ Main: {
135077
+ type: pricefeedType_1.PriceFeedType.ERC4626_VAULT_ORACLE,
135078
+ underlying: "USDL",
135079
+ trusted: false
135080
+ }
135081
+ }
135082
+ },
135083
+ csUSDL: {
135084
+ Mainnet: {
135085
+ Main: {
135086
+ type: pricefeedType_1.PriceFeedType.ERC4626_VAULT_ORACLE,
135087
+ underlying: "wUSDL",
135088
+ trusted: false
135089
+ },
135090
+ Reserve: {
135091
+ type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
135092
+ address: "0x8fFfFfd4AfB6115b954Bd326cbe7B4BA576818f6",
135093
+ stalenessPeriod: pricefeedType_1.HOUR_24
135094
+ }
135095
+ }
135096
+ },
133824
135097
  // AURA
133825
135098
  auraB_rETH_STABLE: {
133826
135099
  AllNetworks: {
@@ -134437,9 +135710,10 @@ var require_components = __commonJS({
134437
135710
  RouterProtocols2[RouterProtocols2["DaiUsdsSwap"] = 18] = "DaiUsdsSwap";
134438
135711
  RouterProtocols2[RouterProtocols2["SKY"] = 19] = "SKY";
134439
135712
  RouterProtocols2[RouterProtocols2["LlamaThena"] = 20] = "LlamaThena";
134440
- RouterProtocols2[RouterProtocols2["BalancerV3"] = 21] = "BalancerV3";
134441
- RouterProtocols2[RouterProtocols2["Mellow4626"] = 22] = "Mellow4626";
134442
- RouterProtocols2[RouterProtocols2["ERC4626Swapper"] = 23] = "ERC4626Swapper";
135713
+ RouterProtocols2[RouterProtocols2["Equalizer"] = 21] = "Equalizer";
135714
+ RouterProtocols2[RouterProtocols2["BalancerV3"] = 22] = "BalancerV3";
135715
+ RouterProtocols2[RouterProtocols2["Mellow4626"] = 23] = "Mellow4626";
135716
+ RouterProtocols2[RouterProtocols2["ERC4626Swapper"] = 24] = "ERC4626Swapper";
134443
135717
  })(RouterProtocols || (exports2.RouterProtocols = RouterProtocols = {}));
134444
135718
  var RouterComponent;
134445
135719
  (function(RouterComponent2) {
@@ -134534,7 +135808,8 @@ var require_tokenData = __commonJS({
134534
135808
  ],
134535
135809
  Arbitrum: ["WETH", "DAI", "USDC", "USDT", "rETH", "USDC_e", "wstETH"],
134536
135810
  Optimism: ["WETH", "USDC", "USDT", "USDC_e", "wstETH"],
134537
- Base: ["WETH", "USDC", "USDT"]
135811
+ Base: ["WETH", "USDC", "USDT"],
135812
+ Sonic: ["wS"]
134538
135813
  };
134539
135814
  function getConnectors2(networkType) {
134540
135815
  return exports2.connectors[networkType].map((e) => {
@@ -134734,10 +136009,10 @@ var require_sleep = __commonJS({
134734
136009
  "use strict";
134735
136010
  Object.defineProperty(exports2, "__esModule", { value: true });
134736
136011
  exports2.sleep = void 0;
134737
- function sleep(ms) {
136012
+ function sleep2(ms) {
134738
136013
  return new Promise((resolve2) => setTimeout(resolve2, ms));
134739
136014
  }
134740
- exports2.sleep = sleep;
136015
+ exports2.sleep = sleep2;
134741
136016
  }
134742
136017
  });
134743
136018
 
@@ -135065,13 +136340,15 @@ var require_explorers = __commonJS({
135065
136340
  Mainnet: "https://etherscan.io",
135066
136341
  Arbitrum: "https://arbiscan.io",
135067
136342
  Optimism: "https://optimistic.etherscan.io",
135068
- Base: "https://basescan.org"
136343
+ Base: "https://basescan.org",
136344
+ Sonic: "https://sonicscan.org/"
135069
136345
  };
135070
136346
  exports2.explorerApiUrls = {
135071
136347
  Mainnet: "https://api.etherscan.io/api",
135072
136348
  Arbitrum: "https://api.arbiscan.io/api",
135073
136349
  Optimism: "https://api-optimistic.etherscan.io/api",
135074
- Base: "https://api.basescan.org/api"
136350
+ Base: "https://api.basescan.org/api",
136351
+ Sonic: "https://api.sonicscan.org/api"
135075
136352
  };
135076
136353
  }
135077
136354
  });
@@ -136501,7 +137778,7 @@ var require_atomic_sleep = __commonJS({
136501
137778
  "../../node_modules/atomic-sleep/index.js"(exports2, module2) {
136502
137779
  "use strict";
136503
137780
  if (typeof SharedArrayBuffer !== "undefined" && typeof Atomics !== "undefined") {
136504
- let sleep = function(ms) {
137781
+ let sleep2 = function(ms) {
136505
137782
  const valid = ms > 0 && ms < Infinity;
136506
137783
  if (valid === false) {
136507
137784
  if (typeof ms !== "number" && typeof ms !== "bigint") {
@@ -136512,9 +137789,9 @@ var require_atomic_sleep = __commonJS({
136512
137789
  Atomics.wait(nil, 0, 0, Number(ms));
136513
137790
  };
136514
137791
  const nil = new Int32Array(new SharedArrayBuffer(4));
136515
- module2.exports = sleep;
137792
+ module2.exports = sleep2;
136516
137793
  } else {
136517
- let sleep = function(ms) {
137794
+ let sleep2 = function(ms) {
136518
137795
  const valid = ms > 0 && ms < Infinity;
136519
137796
  if (valid === false) {
136520
137797
  if (typeof ms !== "number" && typeof ms !== "bigint") {
@@ -136526,7 +137803,7 @@ var require_atomic_sleep = __commonJS({
136526
137803
  while (target > Date.now()) {
136527
137804
  }
136528
137805
  };
136529
- module2.exports = sleep;
137806
+ module2.exports = sleep2;
136530
137807
  }
136531
137808
  }
136532
137809
  });
@@ -136539,7 +137816,7 @@ var require_sonic_boom = __commonJS({
136539
137816
  var EventEmitter = __require("events");
136540
137817
  var inherits = __require("util").inherits;
136541
137818
  var path12 = __require("path");
136542
- var sleep = require_atomic_sleep();
137819
+ var sleep2 = require_atomic_sleep();
136543
137820
  var assert3 = __require("assert");
136544
137821
  var BUSY_WRITE_TIMEOUT = 100;
136545
137822
  var kEmptyBuffer = Buffer.allocUnsafe(0);
@@ -136675,7 +137952,7 @@ var require_sonic_boom = __commonJS({
136675
137952
  if ((err.code === "EAGAIN" || err.code === "EBUSY") && this.retryEAGAIN(err, this._writingBuf.length, this._len - this._writingBuf.length)) {
136676
137953
  if (this.sync) {
136677
137954
  try {
136678
- sleep(BUSY_WRITE_TIMEOUT);
137955
+ sleep2(BUSY_WRITE_TIMEOUT);
136679
137956
  this.release(void 0, 0);
136680
137957
  } catch (err2) {
136681
137958
  this.release(err2);
@@ -136986,7 +138263,7 @@ var require_sonic_boom = __commonJS({
136986
138263
  if (shouldRetry2 && !this.retryEAGAIN(err, buf.length, this._len - buf.length)) {
136987
138264
  throw err;
136988
138265
  }
136989
- sleep(BUSY_WRITE_TIMEOUT);
138266
+ sleep2(BUSY_WRITE_TIMEOUT);
136990
138267
  }
136991
138268
  }
136992
138269
  try {
@@ -137023,7 +138300,7 @@ var require_sonic_boom = __commonJS({
137023
138300
  if (shouldRetry2 && !this.retryEAGAIN(err, buf.length, this._len - buf.length)) {
137024
138301
  throw err;
137025
138302
  }
137026
- sleep(BUSY_WRITE_TIMEOUT);
138303
+ sleep2(BUSY_WRITE_TIMEOUT);
137027
138304
  }
137028
138305
  }
137029
138306
  }
@@ -137764,7 +139041,7 @@ var require_transport = __commonJS({
137764
139041
  var { createRequire } = __require("module");
137765
139042
  var getCallers = require_caller();
137766
139043
  var { join: join3, isAbsolute, sep } = __require("node:path");
137767
- var sleep = require_atomic_sleep();
139044
+ var sleep2 = require_atomic_sleep();
137768
139045
  var onExit = require_on_exit_leak_free();
137769
139046
  var ThreadStream = require_thread_stream();
137770
139047
  function setupOnExit(stream) {
@@ -137798,7 +139075,7 @@ var require_transport = __commonJS({
137798
139075
  return;
137799
139076
  }
137800
139077
  stream.flushSync();
137801
- sleep(100);
139078
+ sleep2(100);
137802
139079
  stream.end();
137803
139080
  }
137804
139081
  return stream;
@@ -149837,234 +151114,6 @@ var require_main = __commonJS({
149837
151114
  }
149838
151115
  });
149839
151116
 
149840
- // ../../node_modules/retry/lib/retry_operation.js
149841
- var require_retry_operation = __commonJS({
149842
- "../../node_modules/retry/lib/retry_operation.js"(exports2, module2) {
149843
- function RetryOperation(timeouts, options) {
149844
- if (typeof options === "boolean") {
149845
- options = { forever: options };
149846
- }
149847
- this._originalTimeouts = JSON.parse(JSON.stringify(timeouts));
149848
- this._timeouts = timeouts;
149849
- this._options = options || {};
149850
- this._maxRetryTime = options && options.maxRetryTime || Infinity;
149851
- this._fn = null;
149852
- this._errors = [];
149853
- this._attempts = 1;
149854
- this._operationTimeout = null;
149855
- this._operationTimeoutCb = null;
149856
- this._timeout = null;
149857
- this._operationStart = null;
149858
- this._timer = null;
149859
- if (this._options.forever) {
149860
- this._cachedTimeouts = this._timeouts.slice(0);
149861
- }
149862
- }
149863
- module2.exports = RetryOperation;
149864
- RetryOperation.prototype.reset = function() {
149865
- this._attempts = 1;
149866
- this._timeouts = this._originalTimeouts.slice(0);
149867
- };
149868
- RetryOperation.prototype.stop = function() {
149869
- if (this._timeout) {
149870
- clearTimeout(this._timeout);
149871
- }
149872
- if (this._timer) {
149873
- clearTimeout(this._timer);
149874
- }
149875
- this._timeouts = [];
149876
- this._cachedTimeouts = null;
149877
- };
149878
- RetryOperation.prototype.retry = function(err) {
149879
- if (this._timeout) {
149880
- clearTimeout(this._timeout);
149881
- }
149882
- if (!err) {
149883
- return false;
149884
- }
149885
- var currentTime = (/* @__PURE__ */ new Date()).getTime();
149886
- if (err && currentTime - this._operationStart >= this._maxRetryTime) {
149887
- this._errors.push(err);
149888
- this._errors.unshift(new Error("RetryOperation timeout occurred"));
149889
- return false;
149890
- }
149891
- this._errors.push(err);
149892
- var timeout = this._timeouts.shift();
149893
- if (timeout === void 0) {
149894
- if (this._cachedTimeouts) {
149895
- this._errors.splice(0, this._errors.length - 1);
149896
- timeout = this._cachedTimeouts.slice(-1);
149897
- } else {
149898
- return false;
149899
- }
149900
- }
149901
- var self2 = this;
149902
- this._timer = setTimeout(function() {
149903
- self2._attempts++;
149904
- if (self2._operationTimeoutCb) {
149905
- self2._timeout = setTimeout(function() {
149906
- self2._operationTimeoutCb(self2._attempts);
149907
- }, self2._operationTimeout);
149908
- if (self2._options.unref) {
149909
- self2._timeout.unref();
149910
- }
149911
- }
149912
- self2._fn(self2._attempts);
149913
- }, timeout);
149914
- if (this._options.unref) {
149915
- this._timer.unref();
149916
- }
149917
- return true;
149918
- };
149919
- RetryOperation.prototype.attempt = function(fn, timeoutOps) {
149920
- this._fn = fn;
149921
- if (timeoutOps) {
149922
- if (timeoutOps.timeout) {
149923
- this._operationTimeout = timeoutOps.timeout;
149924
- }
149925
- if (timeoutOps.cb) {
149926
- this._operationTimeoutCb = timeoutOps.cb;
149927
- }
149928
- }
149929
- var self2 = this;
149930
- if (this._operationTimeoutCb) {
149931
- this._timeout = setTimeout(function() {
149932
- self2._operationTimeoutCb();
149933
- }, self2._operationTimeout);
149934
- }
149935
- this._operationStart = (/* @__PURE__ */ new Date()).getTime();
149936
- this._fn(this._attempts);
149937
- };
149938
- RetryOperation.prototype.try = function(fn) {
149939
- console.log("Using RetryOperation.try() is deprecated");
149940
- this.attempt(fn);
149941
- };
149942
- RetryOperation.prototype.start = function(fn) {
149943
- console.log("Using RetryOperation.start() is deprecated");
149944
- this.attempt(fn);
149945
- };
149946
- RetryOperation.prototype.start = RetryOperation.prototype.try;
149947
- RetryOperation.prototype.errors = function() {
149948
- return this._errors;
149949
- };
149950
- RetryOperation.prototype.attempts = function() {
149951
- return this._attempts;
149952
- };
149953
- RetryOperation.prototype.mainError = function() {
149954
- if (this._errors.length === 0) {
149955
- return null;
149956
- }
149957
- var counts = {};
149958
- var mainError = null;
149959
- var mainErrorCount = 0;
149960
- for (var i = 0; i < this._errors.length; i++) {
149961
- var error = this._errors[i];
149962
- var message = error.message;
149963
- var count = (counts[message] || 0) + 1;
149964
- counts[message] = count;
149965
- if (count >= mainErrorCount) {
149966
- mainError = error;
149967
- mainErrorCount = count;
149968
- }
149969
- }
149970
- return mainError;
149971
- };
149972
- }
149973
- });
149974
-
149975
- // ../../node_modules/retry/lib/retry.js
149976
- var require_retry2 = __commonJS({
149977
- "../../node_modules/retry/lib/retry.js"(exports2) {
149978
- var RetryOperation = require_retry_operation();
149979
- exports2.operation = function(options) {
149980
- var timeouts = exports2.timeouts(options);
149981
- return new RetryOperation(timeouts, {
149982
- forever: options && (options.forever || options.retries === Infinity),
149983
- unref: options && options.unref,
149984
- maxRetryTime: options && options.maxRetryTime
149985
- });
149986
- };
149987
- exports2.timeouts = function(options) {
149988
- if (options instanceof Array) {
149989
- return [].concat(options);
149990
- }
149991
- var opts = {
149992
- retries: 10,
149993
- factor: 2,
149994
- minTimeout: 1 * 1e3,
149995
- maxTimeout: Infinity,
149996
- randomize: false
149997
- };
149998
- for (var key in options) {
149999
- opts[key] = options[key];
150000
- }
150001
- if (opts.minTimeout > opts.maxTimeout) {
150002
- throw new Error("minTimeout is greater than maxTimeout");
150003
- }
150004
- var timeouts = [];
150005
- for (var i = 0; i < opts.retries; i++) {
150006
- timeouts.push(this.createTimeout(i, opts));
150007
- }
150008
- if (options && options.forever && !timeouts.length) {
150009
- timeouts.push(this.createTimeout(i, opts));
150010
- }
150011
- timeouts.sort(function(a, b) {
150012
- return a - b;
150013
- });
150014
- return timeouts;
150015
- };
150016
- exports2.createTimeout = function(attempt, opts) {
150017
- var random = opts.randomize ? Math.random() + 1 : 1;
150018
- var timeout = Math.round(random * Math.max(opts.minTimeout, 1) * Math.pow(opts.factor, attempt));
150019
- timeout = Math.min(timeout, opts.maxTimeout);
150020
- return timeout;
150021
- };
150022
- exports2.wrap = function(obj, options, methods) {
150023
- if (options instanceof Array) {
150024
- methods = options;
150025
- options = null;
150026
- }
150027
- if (!methods) {
150028
- methods = [];
150029
- for (var key in obj) {
150030
- if (typeof obj[key] === "function") {
150031
- methods.push(key);
150032
- }
150033
- }
150034
- }
150035
- for (var i = 0; i < methods.length; i++) {
150036
- var method = methods[i];
150037
- var original = obj[method];
150038
- obj[method] = function retryWrapper(original2) {
150039
- var op = exports2.operation(options);
150040
- var args = Array.prototype.slice.call(arguments, 1);
150041
- var callback = args.pop();
150042
- args.push(function(err) {
150043
- if (op.retry(err)) {
150044
- return;
150045
- }
150046
- if (err) {
150047
- arguments[0] = op.mainError();
150048
- }
150049
- callback.apply(this, arguments);
150050
- });
150051
- op.attempt(function() {
150052
- original2.apply(obj, args);
150053
- });
150054
- }.bind(obj, original);
150055
- obj[method].options = options;
150056
- }
150057
- };
150058
- }
150059
- });
150060
-
150061
- // ../../node_modules/retry/index.js
150062
- var require_retry3 = __commonJS({
150063
- "../../node_modules/retry/index.js"(exports2, module2) {
150064
- module2.exports = require_retry2();
150065
- }
150066
- });
150067
-
150068
151117
  // ../../node_modules/webidl-conversions/lib/index.js
150069
151118
  var require_lib38 = __commonJS({
150070
151119
  "../../node_modules/webidl-conversions/lib/index.js"(exports2, module2) {
@@ -161915,7 +162964,7 @@ var require_version28 = __commonJS({
161915
162964
  "use strict";
161916
162965
  Object.defineProperty(exports2, "__esModule", { value: true });
161917
162966
  exports2.version = void 0;
161918
- exports2.version = "2.23.2";
162967
+ exports2.version = "2.23.5";
161919
162968
  }
161920
162969
  });
161921
162970
 
@@ -170113,6 +171162,21 @@ var require_prepareTransactionRequest = __commonJS({
170113
171162
  chainId = chainId_;
170114
171163
  return chainId;
170115
171164
  }
171165
+ if (parameters.includes("nonce") && typeof nonce === "undefined" && account) {
171166
+ if (nonceManager) {
171167
+ const chainId2 = await getChainId2();
171168
+ request.nonce = await nonceManager.consume({
171169
+ address: account.address,
171170
+ chainId: chainId2,
171171
+ client
171172
+ });
171173
+ } else {
171174
+ request.nonce = await (0, getAction_js_1.getAction)(client, getTransactionCount_js_1.getTransactionCount, "getTransactionCount")({
171175
+ address: account.address,
171176
+ blockTag: "pending"
171177
+ });
171178
+ }
171179
+ }
170116
171180
  if ((parameters.includes("blobVersionedHashes") || parameters.includes("sidecars")) && blobs && kzg) {
170117
171181
  const commitments = (0, blobsToCommitments_js_1.blobsToCommitments)({ blobs, kzg });
170118
171182
  if (parameters.includes("blobVersionedHashes")) {
@@ -170184,21 +171248,6 @@ var require_prepareTransactionRequest = __commonJS({
170184
171248
  ...request,
170185
171249
  account: account ? { address: account.address, type: "json-rpc" } : account
170186
171250
  });
170187
- if (parameters.includes("nonce") && typeof nonce === "undefined" && account) {
170188
- if (nonceManager) {
170189
- const chainId2 = await getChainId2();
170190
- request.nonce = await nonceManager.consume({
170191
- address: account.address,
170192
- chainId: chainId2,
170193
- client
170194
- });
170195
- } else {
170196
- request.nonce = await (0, getAction_js_1.getAction)(client, getTransactionCount_js_1.getTransactionCount, "getTransactionCount")({
170197
- address: account.address,
170198
- blockTag: "pending"
170199
- });
170200
- }
170201
- }
170202
171251
  (0, assertRequest_js_1.assertRequest)(request);
170203
171252
  delete request.parameters;
170204
171253
  return request;
@@ -211205,6 +212254,12 @@ var require_b3 = __commonJS({
211205
212254
  url: "https://explorer.b3.fun"
211206
212255
  }
211207
212256
  },
212257
+ contracts: {
212258
+ multicall3: {
212259
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
212260
+ blockCreated: 0
212261
+ }
212262
+ },
211208
212263
  sourceId: sourceId3
211209
212264
  });
211210
212265
  }
@@ -211237,6 +212292,12 @@ var require_b3Sepolia = __commonJS({
211237
212292
  url: "https://sepolia.explorer.b3.fun"
211238
212293
  }
211239
212294
  },
212295
+ contracts: {
212296
+ multicall3: {
212297
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
212298
+ blockCreated: 0
212299
+ }
212300
+ },
211240
212301
  testnet: true,
211241
212302
  sourceId: sourceId3
211242
212303
  });
@@ -211657,6 +212718,12 @@ var require_berachainTestnet = __commonJS({
211657
212718
  url: "https://artio.beratrail.io"
211658
212719
  }
211659
212720
  },
212721
+ contracts: {
212722
+ multicall3: {
212723
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
212724
+ blockCreated: 866924
212725
+ }
212726
+ },
211660
212727
  testnet: true
211661
212728
  });
211662
212729
  }
@@ -214371,7 +215438,7 @@ var require_donatuz = __commonJS({
214371
215438
  symbol: "ETH"
214372
215439
  },
214373
215440
  rpcUrls: {
214374
- default: { http: ["ttps://rpc.donatuz.com"] }
215441
+ default: { http: ["https://rpc.donatuz.com"] }
214375
215442
  },
214376
215443
  blockExplorers: {
214377
215444
  default: {
@@ -215165,6 +216232,41 @@ var require_etherlinkTestnet = __commonJS({
215165
216232
  }
215166
216233
  });
215167
216234
 
216235
+ // ../../node_modules/viem/_cjs/chains/definitions/ethernity.js
216236
+ var require_ethernity = __commonJS({
216237
+ "../../node_modules/viem/_cjs/chains/definitions/ethernity.js"(exports2) {
216238
+ "use strict";
216239
+ Object.defineProperty(exports2, "__esModule", { value: true });
216240
+ exports2.ethernity = void 0;
216241
+ var defineChain_js_1 = require_defineChain();
216242
+ exports2.ethernity = (0, defineChain_js_1.defineChain)({
216243
+ id: 183,
216244
+ name: "Ethernity",
216245
+ nativeCurrency: {
216246
+ decimals: 18,
216247
+ name: "Ether",
216248
+ symbol: "ETH"
216249
+ },
216250
+ rpcUrls: {
216251
+ default: { http: ["https://mainnet.ethernitychain.io"] }
216252
+ },
216253
+ blockExplorers: {
216254
+ default: {
216255
+ name: "Ethernity Explorer",
216256
+ url: "https://ernscan.io"
216257
+ }
216258
+ },
216259
+ contracts: {
216260
+ multicall3: {
216261
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11",
216262
+ blockCreated: 0
216263
+ }
216264
+ },
216265
+ testnet: false
216266
+ });
216267
+ }
216268
+ });
216269
+
215168
216270
  // ../../node_modules/viem/_cjs/chains/definitions/etp.js
215169
216271
  var require_etp = __commonJS({
215170
216272
  "../../node_modules/viem/_cjs/chains/definitions/etp.js"(exports2) {
@@ -215931,6 +217033,137 @@ var require_forma = __commonJS({
215931
217033
  }
215932
217034
  });
215933
217035
 
217036
+ // ../../node_modules/viem/_cjs/chains/definitions/form.js
217037
+ var require_form = __commonJS({
217038
+ "../../node_modules/viem/_cjs/chains/definitions/form.js"(exports2) {
217039
+ "use strict";
217040
+ Object.defineProperty(exports2, "__esModule", { value: true });
217041
+ exports2.form = void 0;
217042
+ var chainConfig_js_1 = require_chainConfig2();
217043
+ var defineChain_js_1 = require_defineChain();
217044
+ var sourceId3 = 1;
217045
+ exports2.form = (0, defineChain_js_1.defineChain)({
217046
+ id: 478,
217047
+ name: "Form Network",
217048
+ nativeCurrency: {
217049
+ decimals: 18,
217050
+ name: "Ethereum",
217051
+ symbol: "ETH"
217052
+ },
217053
+ rpcUrls: {
217054
+ default: {
217055
+ http: ["https://rpc.form.network/http"],
217056
+ webSocket: ["wss://rpc.form.network/ws"]
217057
+ }
217058
+ },
217059
+ blockExplorers: {
217060
+ default: {
217061
+ name: "Form Explorer",
217062
+ url: "https://explorer.form.network"
217063
+ }
217064
+ },
217065
+ contracts: {
217066
+ ...chainConfig_js_1.chainConfig.contracts,
217067
+ addressManager: {
217068
+ [sourceId3]: {
217069
+ address: "0x15c249E46A2F924C2dB3A1560CF86729bAD1f07B"
217070
+ }
217071
+ },
217072
+ l1CrossDomainMessenger: {
217073
+ [sourceId3]: {
217074
+ address: "0xF333158DCCad1dF6C3F0a3aEe8BC31fA94d9eD5c"
217075
+ }
217076
+ },
217077
+ l2OutputOracle: {
217078
+ [sourceId3]: {
217079
+ address: "0x4ccAAF69F41c5810cA875183648B577CaCf1F67E"
217080
+ }
217081
+ },
217082
+ portal: {
217083
+ [sourceId3]: {
217084
+ address: "0x4E259Ee5F4136408908160dD32295A5031Fa426F"
217085
+ }
217086
+ },
217087
+ l1StandardBridge: {
217088
+ [sourceId3]: {
217089
+ address: "0xdc20aA63D3DE59574E065957190D8f24e0F7B8Ba"
217090
+ }
217091
+ },
217092
+ multicall3: {
217093
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11"
217094
+ }
217095
+ },
217096
+ sourceId: sourceId3
217097
+ });
217098
+ }
217099
+ });
217100
+
217101
+ // ../../node_modules/viem/_cjs/chains/definitions/formTestnet.js
217102
+ var require_formTestnet = __commonJS({
217103
+ "../../node_modules/viem/_cjs/chains/definitions/formTestnet.js"(exports2) {
217104
+ "use strict";
217105
+ Object.defineProperty(exports2, "__esModule", { value: true });
217106
+ exports2.formTestnet = void 0;
217107
+ var chainConfig_js_1 = require_chainConfig2();
217108
+ var defineChain_js_1 = require_defineChain();
217109
+ var sourceId3 = 11155111;
217110
+ exports2.formTestnet = (0, defineChain_js_1.defineChain)({
217111
+ id: 132902,
217112
+ name: "Form Testnet",
217113
+ nativeCurrency: {
217114
+ decimals: 18,
217115
+ name: "Ethereum",
217116
+ symbol: "ETH"
217117
+ },
217118
+ rpcUrls: {
217119
+ default: {
217120
+ http: ["https://sepolia-rpc.form.network/http"],
217121
+ webSocket: ["wss://sepolia-rpc.form.network/ws"]
217122
+ }
217123
+ },
217124
+ blockExplorers: {
217125
+ default: {
217126
+ name: "Form Testnet Explorer",
217127
+ url: "https://sepolia-explorer.form.network"
217128
+ }
217129
+ },
217130
+ contracts: {
217131
+ ...chainConfig_js_1.chainConfig.contracts,
217132
+ addressManager: {
217133
+ [sourceId3]: {
217134
+ address: "0xd5C38fa934f7fd7477D4800F4f38a1c5BFdF1373"
217135
+ }
217136
+ },
217137
+ l1CrossDomainMessenger: {
217138
+ [sourceId3]: {
217139
+ address: "0x37A68565c4BE9700b3E3Ec60cC4416cAC3052FAa"
217140
+ }
217141
+ },
217142
+ l2OutputOracle: {
217143
+ [sourceId3]: {
217144
+ address: "0x9eA2239E65a59EC9C7F1ED4C116dD58Da71Fc1e2"
217145
+ }
217146
+ },
217147
+ portal: {
217148
+ [sourceId3]: {
217149
+ address: "0x60377e3cE15dF4CCA24c4beF076b60314240b032"
217150
+ }
217151
+ },
217152
+ l1StandardBridge: {
217153
+ [sourceId3]: {
217154
+ address: "0xD4531f633942b2725896F47cD2aFd260b44Ab1F7"
217155
+ }
217156
+ },
217157
+ multicall3: {
217158
+ address: "0xcA11bde05977b3631167028862bE2a173976CA11"
217159
+ }
217160
+ },
217161
+ testnet: true,
217162
+ sourceId: sourceId3
217163
+ });
217164
+ }
217165
+ });
217166
+
215934
217167
  // ../../node_modules/viem/_cjs/chains/definitions/forta.js
215935
217168
  var require_forta = __commonJS({
215936
217169
  "../../node_modules/viem/_cjs/chains/definitions/forta.js"(exports2) {
@@ -217061,7 +218294,39 @@ var require_hashkeyChainTestnet = __commonJS({
217061
218294
  name: "HashKey Chain Explorer",
217062
218295
  url: "https://hashkeychain-testnet-explorer.alt.technology"
217063
218296
  }
217064
- }
218297
+ },
218298
+ testnet: true
218299
+ });
218300
+ }
218301
+ });
218302
+
218303
+ // ../../node_modules/viem/_cjs/chains/definitions/haustTestnet.js
218304
+ var require_haustTestnet = __commonJS({
218305
+ "../../node_modules/viem/_cjs/chains/definitions/haustTestnet.js"(exports2) {
218306
+ "use strict";
218307
+ Object.defineProperty(exports2, "__esModule", { value: true });
218308
+ exports2.haustTestnet = void 0;
218309
+ var defineChain_js_1 = require_defineChain();
218310
+ exports2.haustTestnet = (0, defineChain_js_1.defineChain)({
218311
+ id: 1523903251,
218312
+ name: "Haust Network Testnet",
218313
+ nativeCurrency: {
218314
+ decimals: 18,
218315
+ name: "HAUST",
218316
+ symbol: "HAUST"
218317
+ },
218318
+ rpcUrls: {
218319
+ default: {
218320
+ http: ["https://rpc-testnet.haust.app"]
218321
+ }
218322
+ },
218323
+ blockExplorers: {
218324
+ default: {
218325
+ name: "Haust Network Testnet Explorer",
218326
+ url: "https://explorer-testnet.haust.app"
218327
+ }
218328
+ },
218329
+ testnet: true
217065
218330
  });
217066
218331
  }
217067
218332
  });
@@ -219323,6 +220588,62 @@ var require_lumiaTestnet = __commonJS({
219323
220588
  }
219324
220589
  });
219325
220590
 
220591
+ // ../../node_modules/viem/_cjs/chains/definitions/lumoz.js
220592
+ var require_lumoz = __commonJS({
220593
+ "../../node_modules/viem/_cjs/chains/definitions/lumoz.js"(exports2) {
220594
+ "use strict";
220595
+ Object.defineProperty(exports2, "__esModule", { value: true });
220596
+ exports2.lumoz = void 0;
220597
+ var defineChain_js_1 = require_defineChain();
220598
+ exports2.lumoz = (0, defineChain_js_1.defineChain)({
220599
+ id: 96370,
220600
+ name: "Lumoz",
220601
+ nativeCurrency: {
220602
+ decimals: 18,
220603
+ name: "Lumoz Token",
220604
+ symbol: "MOZ"
220605
+ },
220606
+ rpcUrls: {
220607
+ default: {
220608
+ http: ["https://rpc.lumoz.org"]
220609
+ }
220610
+ },
220611
+ blockExplorers: {
220612
+ default: {
220613
+ name: "Lumoz Scan",
220614
+ url: "https://scan.lumoz.info"
220615
+ }
220616
+ },
220617
+ testnet: false
220618
+ });
220619
+ }
220620
+ });
220621
+
220622
+ // ../../node_modules/viem/_cjs/chains/definitions/lumozTestnet.js
220623
+ var require_lumozTestnet = __commonJS({
220624
+ "../../node_modules/viem/_cjs/chains/definitions/lumozTestnet.js"(exports2) {
220625
+ "use strict";
220626
+ Object.defineProperty(exports2, "__esModule", { value: true });
220627
+ exports2.lumozTestnet = void 0;
220628
+ var defineChain_js_1 = require_defineChain();
220629
+ exports2.lumozTestnet = (0, defineChain_js_1.defineChain)({
220630
+ id: 105363,
220631
+ name: "Lumoz Testnet",
220632
+ nativeCurrency: {
220633
+ decimals: 18,
220634
+ name: "Lumoz Testnet Token",
220635
+ symbol: "MOZ"
220636
+ },
220637
+ rpcUrls: {
220638
+ default: {
220639
+ http: ["https://testnet-rpc.lumoz.org"]
220640
+ }
220641
+ },
220642
+ testnet: true
220643
+ });
220644
+ }
220645
+ });
220646
+
219326
220647
  // ../../node_modules/viem/_cjs/chains/definitions/lycan.js
219327
220648
  var require_lycan = __commonJS({
219328
220649
  "../../node_modules/viem/_cjs/chains/definitions/lycan.js"(exports2) {
@@ -220996,6 +222317,37 @@ var require_neoxT4 = __commonJS({
220996
222317
  }
220997
222318
  });
220998
222319
 
222320
+ // ../../node_modules/viem/_cjs/chains/definitions/newton.js
222321
+ var require_newton = __commonJS({
222322
+ "../../node_modules/viem/_cjs/chains/definitions/newton.js"(exports2) {
222323
+ "use strict";
222324
+ Object.defineProperty(exports2, "__esModule", { value: true });
222325
+ exports2.newton = void 0;
222326
+ var defineChain_js_1 = require_defineChain();
222327
+ exports2.newton = (0, defineChain_js_1.defineChain)({
222328
+ id: 1012,
222329
+ name: "Newton",
222330
+ nativeCurrency: {
222331
+ name: "Newton",
222332
+ symbol: "NEW",
222333
+ decimals: 18
222334
+ },
222335
+ rpcUrls: {
222336
+ default: {
222337
+ http: ["hhttps://global.rpc.mainnet.newtonproject.org"]
222338
+ }
222339
+ },
222340
+ blockExplorers: {
222341
+ default: {
222342
+ name: "NewFi explorer",
222343
+ url: "https://explorer.newtonproject.org/"
222344
+ }
222345
+ },
222346
+ testnet: false
222347
+ });
222348
+ }
222349
+ });
222350
+
220999
222351
  // ../../node_modules/viem/_cjs/chains/definitions/nexi.js
221000
222352
  var require_nexi = __commonJS({
221001
222353
  "../../node_modules/viem/_cjs/chains/definitions/nexi.js"(exports2) {
@@ -221748,6 +223100,52 @@ var require_palmTestnet = __commonJS({
221748
223100
  }
221749
223101
  });
221750
223102
 
223103
+ // ../../node_modules/viem/_cjs/chains/definitions/peaq.js
223104
+ var require_peaq = __commonJS({
223105
+ "../../node_modules/viem/_cjs/chains/definitions/peaq.js"(exports2) {
223106
+ "use strict";
223107
+ Object.defineProperty(exports2, "__esModule", { value: true });
223108
+ exports2.peaq = void 0;
223109
+ var defineChain_js_1 = require_defineChain();
223110
+ exports2.peaq = (0, defineChain_js_1.defineChain)({
223111
+ id: 3338,
223112
+ name: "Peaq",
223113
+ nativeCurrency: {
223114
+ decimals: 18,
223115
+ name: "peaq",
223116
+ symbol: "PEAQ"
223117
+ },
223118
+ rpcUrls: {
223119
+ default: {
223120
+ http: [
223121
+ "https://peaq.api.onfinality.io/public",
223122
+ "https://peaq-rpc.dwellir.com",
223123
+ "https://peaq-rpc.publicnode.com",
223124
+ "https://evm.peaq.network"
223125
+ ],
223126
+ webSocket: [
223127
+ "wss://peaq.api.onfinality.io/public",
223128
+ "wss://peaq-rpc.publicnode.com",
223129
+ "wss://peaq-rpc.dwellir.com"
223130
+ ]
223131
+ }
223132
+ },
223133
+ blockExplorers: {
223134
+ default: {
223135
+ name: "Subscan",
223136
+ url: "https://peaq.subscan.io"
223137
+ }
223138
+ },
223139
+ contracts: {
223140
+ multicall3: {
223141
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
223142
+ blockCreated: 3566354
223143
+ }
223144
+ }
223145
+ });
223146
+ }
223147
+ });
223148
+
221751
223149
  // ../../node_modules/viem/_cjs/chains/definitions/pgn.js
221752
223150
  var require_pgn = __commonJS({
221753
223151
  "../../node_modules/viem/_cjs/chains/definitions/pgn.js"(exports2) {
@@ -222340,6 +223738,78 @@ var require_polygonZkEvmTestnet = __commonJS({
222340
223738
  }
222341
223739
  });
222342
223740
 
223741
+ // ../../node_modules/viem/_cjs/chains/definitions/polynomial.js
223742
+ var require_polynomial = __commonJS({
223743
+ "../../node_modules/viem/_cjs/chains/definitions/polynomial.js"(exports2) {
223744
+ "use strict";
223745
+ Object.defineProperty(exports2, "__esModule", { value: true });
223746
+ exports2.polynomial = void 0;
223747
+ var defineChain_js_1 = require_defineChain();
223748
+ exports2.polynomial = (0, defineChain_js_1.defineChain)({
223749
+ id: 8008,
223750
+ name: "Polynomial",
223751
+ nativeCurrency: {
223752
+ decimals: 18,
223753
+ name: "Ether",
223754
+ symbol: "ETH"
223755
+ },
223756
+ rpcUrls: {
223757
+ default: {
223758
+ http: ["https://rpc.polynomial.fi"]
223759
+ }
223760
+ },
223761
+ blockExplorers: {
223762
+ default: {
223763
+ name: "Polynomial Scan",
223764
+ url: "https://polynomialscan.io"
223765
+ }
223766
+ },
223767
+ testnet: false,
223768
+ contracts: {
223769
+ multicall3: {
223770
+ address: "0xca11bde05977b3631167028862be2a173976ca11"
223771
+ }
223772
+ }
223773
+ });
223774
+ }
223775
+ });
223776
+
223777
+ // ../../node_modules/viem/_cjs/chains/definitions/polynomialSepolia.js
223778
+ var require_polynomialSepolia = __commonJS({
223779
+ "../../node_modules/viem/_cjs/chains/definitions/polynomialSepolia.js"(exports2) {
223780
+ "use strict";
223781
+ Object.defineProperty(exports2, "__esModule", { value: true });
223782
+ exports2.polynomialSepolia = void 0;
223783
+ var defineChain_js_1 = require_defineChain();
223784
+ exports2.polynomialSepolia = (0, defineChain_js_1.defineChain)({
223785
+ id: 80008,
223786
+ name: "Polynomia Sepolia",
223787
+ nativeCurrency: {
223788
+ decimals: 18,
223789
+ name: "Ether",
223790
+ symbol: "ETH"
223791
+ },
223792
+ rpcUrls: {
223793
+ default: {
223794
+ http: ["https://rpc.sepolia.polynomial.fi"]
223795
+ }
223796
+ },
223797
+ blockExplorers: {
223798
+ default: {
223799
+ name: "Polynomial Scan",
223800
+ url: "https://sepolia.polynomialscan.io"
223801
+ }
223802
+ },
223803
+ testnet: true,
223804
+ contracts: {
223805
+ multicall3: {
223806
+ address: "0xca11bde05977b3631167028862be2a173976ca11"
223807
+ }
223808
+ }
223809
+ });
223810
+ }
223811
+ });
223812
+
222343
223813
  // ../../node_modules/viem/_cjs/chains/definitions/premiumBlock.js
222344
223814
  var require_premiumBlock = __commonJS({
222345
223815
  "../../node_modules/viem/_cjs/chains/definitions/premiumBlock.js"(exports2) {
@@ -224830,6 +226300,35 @@ var require_sonicTestnet = __commonJS({
224830
226300
  }
224831
226301
  });
224832
226302
 
226303
+ // ../../node_modules/viem/_cjs/chains/definitions/sonicBlazeTestnet.js
226304
+ var require_sonicBlazeTestnet = __commonJS({
226305
+ "../../node_modules/viem/_cjs/chains/definitions/sonicBlazeTestnet.js"(exports2) {
226306
+ "use strict";
226307
+ Object.defineProperty(exports2, "__esModule", { value: true });
226308
+ exports2.sonicBlazeTestnet = void 0;
226309
+ var defineChain_js_1 = require_defineChain();
226310
+ exports2.sonicBlazeTestnet = (0, defineChain_js_1.defineChain)({
226311
+ id: 57054,
226312
+ name: "Sonic Blaze Testnet",
226313
+ nativeCurrency: {
226314
+ decimals: 18,
226315
+ name: "Sonic",
226316
+ symbol: "S"
226317
+ },
226318
+ rpcUrls: {
226319
+ default: { http: ["https://rpc.blaze.soniclabs.com"] }
226320
+ },
226321
+ blockExplorers: {
226322
+ default: {
226323
+ name: "Sonic Blaze Testnet Explorer",
226324
+ url: "https://testnet.sonicscan.org"
226325
+ }
226326
+ },
226327
+ testnet: true
226328
+ });
226329
+ }
226330
+ });
226331
+
224833
226332
  // ../../node_modules/viem/_cjs/chains/definitions/songbird.js
224834
226333
  var require_songbird = __commonJS({
224835
226334
  "../../node_modules/viem/_cjs/chains/definitions/songbird.js"(exports2) {
@@ -225060,11 +226559,54 @@ var require_story = __commonJS({
225060
226559
  rpcUrls: {
225061
226560
  default: { http: ["https://mainnet.storyrpc.io"] }
225062
226561
  },
226562
+ blockExplorers: {
226563
+ default: {
226564
+ name: "Story explorer",
226565
+ url: "https://storyscan.xyz",
226566
+ apiUrl: "https://storyscan.xyz/api/v2"
226567
+ }
226568
+ },
225063
226569
  testnet: false
225064
226570
  });
225065
226571
  }
225066
226572
  });
225067
226573
 
226574
+ // ../../node_modules/viem/_cjs/chains/definitions/storyAeneid.js
226575
+ var require_storyAeneid = __commonJS({
226576
+ "../../node_modules/viem/_cjs/chains/definitions/storyAeneid.js"(exports2) {
226577
+ "use strict";
226578
+ Object.defineProperty(exports2, "__esModule", { value: true });
226579
+ exports2.storyAeneid = void 0;
226580
+ var defineChain_js_1 = require_defineChain();
226581
+ exports2.storyAeneid = (0, defineChain_js_1.defineChain)({
226582
+ id: 1315,
226583
+ name: "Story Aeneid",
226584
+ network: "story-aeneid",
226585
+ nativeCurrency: {
226586
+ decimals: 18,
226587
+ name: "IP",
226588
+ symbol: "IP"
226589
+ },
226590
+ rpcUrls: {
226591
+ default: { http: ["https://aeneid.storyrpc.io"] }
226592
+ },
226593
+ blockExplorers: {
226594
+ default: {
226595
+ name: "Story Aeneid Explorer",
226596
+ url: "https://aeneid.storyscan.xyz"
226597
+ }
226598
+ },
226599
+ contracts: {
226600
+ multicall3: {
226601
+ address: "0xca11bde05977b3631167028862be2a173976ca11",
226602
+ blockCreated: 1792
226603
+ }
226604
+ },
226605
+ testnet: true
226606
+ });
226607
+ }
226608
+ });
226609
+
225068
226610
  // ../../node_modules/viem/_cjs/chains/definitions/storyOdyssey.js
225069
226611
  var require_storyOdyssey = __commonJS({
225070
226612
  "../../node_modules/viem/_cjs/chains/definitions/storyOdyssey.js"(exports2) {
@@ -227028,7 +228570,7 @@ var require_worldchain = __commonJS({
227028
228570
  },
227029
228571
  disputeGameFactory: {
227030
228572
  [sourceId3]: {
227031
- address: "0x0E90dCAFBC242D2C861A20Bb20EC8E7182965a52"
228573
+ address: "0x069c4c579671f8c120b1327a73217D01Ea2EC5ea"
227032
228574
  }
227033
228575
  },
227034
228576
  l2OutputOracle: {
@@ -227216,7 +228758,7 @@ var require_xdc = __commonJS({
227216
228758
  var defineChain_js_1 = require_defineChain();
227217
228759
  exports2.xdc = (0, defineChain_js_1.defineChain)({
227218
228760
  id: 50,
227219
- name: "XinFin Network",
228761
+ name: "XDC Network",
227220
228762
  nativeCurrency: {
227221
228763
  decimals: 18,
227222
228764
  name: "XDC",
@@ -227552,6 +229094,33 @@ var require_g = __commonJS({
227552
229094
  }
227553
229095
  });
227554
229096
 
229097
+ // ../../node_modules/viem/_cjs/chains/definitions/zeroNetwork.js
229098
+ var require_zeroNetwork = __commonJS({
229099
+ "../../node_modules/viem/_cjs/chains/definitions/zeroNetwork.js"(exports2) {
229100
+ "use strict";
229101
+ Object.defineProperty(exports2, "__esModule", { value: true });
229102
+ exports2.zeroNetwork = void 0;
229103
+ var defineChain_js_1 = require_defineChain();
229104
+ exports2.zeroNetwork = (0, defineChain_js_1.defineChain)({
229105
+ id: 543210,
229106
+ name: "Zero Network",
229107
+ nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
229108
+ rpcUrls: {
229109
+ default: {
229110
+ http: ["https://rpc.zerion.io/v1/zero"]
229111
+ }
229112
+ },
229113
+ blockExplorers: {
229114
+ default: {
229115
+ name: "Zero Network Explorer",
229116
+ url: "https://explorer.zero.network"
229117
+ }
229118
+ },
229119
+ testnet: false
229120
+ });
229121
+ }
229122
+ });
229123
+
227555
229124
  // ../../node_modules/viem/_cjs/chains/definitions/zetachain.js
227556
229125
  var require_zetachain = __commonJS({
227557
229126
  "../../node_modules/viem/_cjs/chains/definitions/zetachain.js"(exports2) {
@@ -228355,15 +229924,15 @@ var require_chains2 = __commonJS({
228355
229924
  Object.defineProperty(exports2, "__esModule", { value: true });
228356
229925
  exports2.bevmMainnet = exports2.berachainTestnetbArtio = exports2.berachainTestnet = exports2.berachain = exports2.bearNetworkChainTestnet = exports2.bearNetworkChainMainnet = exports2.beamTestnet = exports2.beam = exports2.baseSepolia = exports2.baseGoerli = exports2.base = exports2.bahamut = exports2.b3Sepolia = exports2.b3 = exports2.avalancheFuji = exports2.avalanche = exports2.auroria = exports2.auroraTestnet = exports2.aurora = exports2.atletaOlympia = exports2.astarZkyoto = exports2.astarZkEVM = exports2.astar = exports2.assetChainTestnet = exports2.assetChain = exports2.artheraTestnet = exports2.arthera = exports2.artelaTestnet = exports2.areonNetworkTestnet = exports2.areonNetwork = exports2.arbitrumSepolia = exports2.arbitrumNova = exports2.arbitrumGoerli = exports2.arbitrum = exports2.apexTestnet = exports2.apeChain = exports2.anvil = exports2.ancient8Sepolia = exports2.ancient8 = exports2.alienxHalTestnet = exports2.alienx = exports2.alephZeroTestnet = exports2.alephZero = exports2.aioz = exports2.adf = exports2.acria = exports2.acala = exports2.abstractTestnet = exports2.abstract = exports2.abey = void 0;
228357
229926
  exports2.creditCoin3Mainnet = exports2.creatorTestnet = exports2.crab = exports2.cornTestnet = exports2.corn = exports2.coreDao = exports2.confluxESpaceTestnet = exports2.confluxESpace = exports2.coinex = exports2.coinbit = exports2.classic = exports2.citreaTestnet = exports2.chips = exports2.chiliz = exports2.chang = exports2.celoAlfajores = exports2.celo = exports2.canto = exports2.cannon = exports2.bxnTestnet = exports2.bxn = exports2.btrTestnet = exports2.btr = exports2.bsquaredTestnet = exports2.bsquared = exports2.bscTestnet = exports2.bscGreenfield = exports2.bsc = exports2.bronosTestnet = exports2.bronos = exports2.bounceBitTestnet = exports2.bounceBit = exports2.botanixTestnet = exports2.boolBetaMainnet = exports2.bobSepolia = exports2.bobaSepolia = exports2.boba = exports2.bob = exports2.blastSepolia = exports2.blast = exports2.birdlayer = exports2.bitTorrentTestnet = exports2.bitTorrent = exports2.bitrock = exports2.bitlayerTestnet = exports2.bitlayer = exports2.bitkubTestnet = exports2.bitkub = exports2.bitgert = exports2.bifrost = void 0;
228358
- exports2.evmosTestnet = exports2.evmos = exports2.etp = exports2.etherlinkTestnet = exports2.etherlink = exports2.eosTestnet = exports2.eos = exports2.eon = exports2.enuls = exports2.energy = exports2.elysiumTestnet = exports2.electroneumTestnet = exports2.electroneum = exports2.elastosTestnet = exports2.elastos = exports2.ektaTestnet = exports2.ekta = exports2.edgewareTestnet = exports2.edgeware = exports2.edgelessTestnet = exports2.edgeless = exports2.dymension = exports2.dustboyIoT = exports2.dreyerxTestnet = exports2.dreyerxMainnet = exports2.dosChainTestnet = exports2.dosChain = exports2.donatuz = exports2.dogechain = exports2.dodochainTestnet = exports2.disChain = exports2.diode = exports2.dfk = exports2.degen = exports2.defichainEvmTestnet = exports2.defichainEvm = exports2.dchainTestnet = exports2.dchain = exports2.darwinia = exports2.dailyNetworkTestnet = exports2.dailyNetwork = exports2.cyberTestnet = exports2.cyber = exports2.curtis = exports2.crossbell = exports2.cronoszkEVMTestnet = exports2.cronoszkEVM = exports2.cronosTestnet = exports2.cronos = exports2.creditCoin3Testnet = void 0;
228359
- exports2.haqqTestedge2 = exports2.haqqMainnet = exports2.happychainTestnet = exports2.ham = exports2.guruTestnet = exports2.guruNetwork = exports2.gravity = exports2.goerli = exports2.godwoken = exports2.goChain = exports2.gobi = exports2.goat = exports2.gnosisChiado = exports2.gnosis = exports2.glideL2Protocol = exports2.glideL1Protocol = exports2.genesys = exports2.geist = exports2.garnet = exports2.fusionTestnet = exports2.fusion = exports2.fuseSparknet = exports2.fuse = exports2.funkiSepolia = exports2.funkiMainnet = exports2.fraxtalTestnet = exports2.fraxtal = exports2.foundry = exports2.forta = exports2.forma = exports2.fluenceTestnet = exports2.fluenceStage = exports2.fluence = exports2.flowTestnet = exports2.flowPreviewnet = exports2.flowMainnet = exports2.flareTestnet = exports2.flare = exports2.fireChain = exports2.filecoinHyperspace = exports2.filecoinCalibration = exports2.filecoin = exports2.fibo = exports2.fantomTestnet = exports2.fantomSonicTestnet = exports2.fantom = exports2.exsatTestnet = exports2.exsat = exports2.expanse = exports2.excelonMainnet = void 0;
228360
- exports2.l3xTestnet = exports2.l3x = exports2.kromaSepolia = exports2.kroma = exports2.koi = exports2.klaytnBaobab = exports2.kairos = exports2.kaia = exports2.klaytn = exports2.kinto = exports2.kcc = exports2.kavaTestnet = exports2.kava = exports2.kardiaChain = exports2.kakarotStarknetSepolia = exports2.kakarotSepolia = exports2.karura = exports2.jbcTestnet = exports2.jbc = exports2.iSunCoin = exports2.iotexTestnet = exports2.iotex = exports2.iotaTestnet = exports2.iota = exports2.inkSepolia = exports2.ink = exports2.initVerseGenesis = exports2.initVerse = exports2.inEVM = exports2.immutableZkEvmTestnet = exports2.immutableZkEvm = exports2.idchain = exports2.hychainTestnet = exports2.hychain = exports2.humanodeTestnet5 = exports2.humanode = exports2.huddle01Testnet = exports2.huddle01Mainnet = exports2.hpb = exports2.holesky = exports2.hemiSepolia = exports2.hemi = exports2.hela = exports2.hederaTestnet = exports2.hederaPreviewnet = exports2.hedera = exports2.hashkeyTestnet = exports2.hashkey = exports2.harmonyOne = exports2.hardhat = void 0;
228361
- exports2.monadTestnet = exports2.modeTestnet = exports2.mode = exports2.mitosisTestnet = exports2.mintSepoliaTestnet = exports2.mint = exports2.mevTestnet = exports2.mev = exports2.metisGoerli = exports2.metisSepolia = exports2.metis = exports2.meterTestnet = exports2.meter = exports2.metalL2 = exports2.metadium = exports2.metachainIstanbul = exports2.metachain = exports2.merlin = exports2.meld = exports2.mekong = exports2.mchVerse = exports2.matchainTestnet = exports2.matchain = exports2.mapProtocol = exports2.mantleTestnet = exports2.mantleSepoliaTestnet = exports2.mantle = exports2.mantaTestnet = exports2.mantaSepoliaTestnet = exports2.manta = exports2.mandala = exports2.mainnet = exports2.lyra = exports2.lycan = exports2.lumiaTestnet = exports2.lumiaMainnet = exports2.luksoTestnet = exports2.lukso = exports2.loop = exports2.localhost = exports2.liskSepolia = exports2.lisk = exports2.lineaTestnet = exports2.lineaSepolia = exports2.lineaGoerli = exports2.linea = exports2.lightlinkPhoenix = exports2.lightlinkPegasus = exports2.lensTestnet = exports2.lavita = void 0;
228362
- exports2.polygonZkEvm = exports2.polygonMumbai = exports2.polygonAmoy = exports2.polygon = exports2.polterTestnet = exports2.plumeTestnet = exports2.plumeDevnet = exports2.plume = exports2.plinga = exports2.playfiAlbireo = exports2.planq = exports2.phoenix = exports2.pgnTestnet = exports2.pgn = exports2.palmTestnet = exports2.palm = exports2.otimDevnet = exports2.orderlySepolia = exports2.orderly = exports2.optopiaTestnet = exports2.optopia = exports2.optimismSepolia = exports2.optimismGoerli = exports2.optimism = exports2.opBNBTestnet = exports2.opBNB = exports2.oortMainnetDev = exports2.oneWorld = exports2.omax = exports2.okc = exports2.odysseyTestnet = exports2.oasys = exports2.oasisTestnet = exports2.nexilix = exports2.nexi = exports2.neoxT4 = exports2.neoxMainnet = exports2.neonMainnet = exports2.neonDevnet = exports2.nearTestnet = exports2.near = exports2.nautilus = exports2.nahmii = exports2.morphSepolia = exports2.morphHolesky = exports2.morph = exports2.moonriver = exports2.moonbeamDev = exports2.moonbeam = exports2.moonbaseAlpha = void 0;
228363
- exports2.siliconSepolia = exports2.silicon = exports2.sidraChain = exports2.shimmerTestnet = exports2.shimmer = exports2.shiden = exports2.shibariumTestnet = exports2.shibarium = exports2.shardeumSphinx = exports2.shapeSepolia = exports2.shape = exports2.sepolia = exports2.seiTestnet = exports2.seiDevnet = exports2.sei = exports2.scrollSepolia = exports2.satoshiVMTestnet = exports2.satoshiVM = exports2.sapphireTestnet = exports2.sapphire = exports2.sanko = exports2.saigon = exports2.saga = exports2.saakuru = exports2.rss3Sepolia = exports2.rss3 = exports2.rootstockTestnet = exports2.rootstock = exports2.rootPorcini = exports2.root = exports2.ronin = exports2.rolluxTestnet = exports2.rollux = exports2.rivalz = exports2.reddioSepolia = exports2.reyaNetwork = exports2.rei = exports2.redstone = exports2.redbellyTestnet = exports2.redbellyMainnet = exports2.real = exports2.qTestnet = exports2.qMainnet = exports2.ql1 = exports2.pumpfiTestnet = exports2.pulsechainV4 = exports2.pulsechain = exports2.premiumBlockTestnet = exports2.polygonZkEvmTestnet = exports2.polygonZkEvmCardona = void 0;
228364
- exports2.taraxaTestnet = exports2.taraxa = exports2.taikoTestnetSepolia = exports2.taikoKatla = exports2.taikoJolnir = exports2.taikoHekla = exports2.taiko = exports2.syscoinTestnet = exports2.syscoin = exports2.swissdlt = exports2.swellchain = exports2.swanSaturnTestnet = exports2.swanProximaTestnet = exports2.swan = exports2.superseedSepolia = exports2.superseed = exports2.superposition = exports2.superlumio = exports2.stratis = exports2.storyTestnet = exports2.storyOdyssey = exports2.story = exports2.step = exports2.spicy = exports2.sophonTestnet = exports2.sophon = exports2.songbirdTestnet = exports2.songbird = exports2.sonicTestnet = exports2.sonic = exports2.soneiumMinato = exports2.soneium = exports2.snaxTestnet = exports2.snax = exports2.sketchpad = exports2.skaleTitanTestnet = exports2.skaleTitan = exports2.skaleRazor = exports2.skaleNebulaTestnet = exports2.skaleNebula = exports2.skaleHumanProtocol = exports2.skaleExorde = exports2.skaleEuropaTestnet = exports2.skaleEuropa = exports2.skaleCryptoColosseum = exports2.skaleCryptoBlades = exports2.skaleCalypsoTestnet = exports2.skaleCalypso = exports2.skaleBlockBrawlers = exports2.sixProtocol = void 0;
228365
- exports2.xLayerTestnet = exports2.x1Testnet = exports2.xLayer = exports2.xdcTestnet = exports2.xdc = exports2.xaiTestnet = exports2.xai = exports2.worldLand = exports2.worldchainSepolia = exports2.worldchain = exports2.wmcTestnet = exports2.wemixTestnet = exports2.wemix = exports2.weaveVMAlphanet = exports2.wanchainTestnet = exports2.wanchain = exports2.visionTestnet = exports2.vision = exports2.victionTestnet = exports2.viction = exports2.velas = exports2.vechain = exports2.vanar = exports2.unreal = exports2.uniqueQuartz = exports2.uniqueOpal = exports2.unique = exports2.unichainSepolia = exports2.unichain = exports2.ultronTestnet = exports2.ultron = exports2.ultraTestnet = exports2.ultra = exports2.ubiq = exports2.tron = exports2.treasureTopaz = exports2.treasure = exports2.tomb = exports2.tiktrixTestnet = exports2.thunderTestnet = exports2.thunderCore = exports2.thetaTestnet = exports2.theta = exports2.that = exports2.thaiChain = exports2.ternoa = exports2.tenet = exports2.telosTestnet = exports2.telos = exports2.telcoinTestnet = void 0;
228366
- exports2.zoraTestnet = exports2.zoraSepolia = exports2.zora = exports2.zksyncSepoliaTestnet = exports2.zkSyncSepoliaTestnet = exports2.zksyncLocalNode = exports2.zkSyncLocalNode = exports2.zksyncLocalHyperchainL1 = exports2.zksyncLocalHyperchain = exports2.zksyncLocalCustomHyperchain = exports2.zksyncInMemoryNode = exports2.zkSyncInMemoryNode = exports2.zksync = exports2.zkSync = exports2.zkLinkNovaSepoliaTestnet = exports2.zkLinkNova = exports2.zkFairTestnet = exports2.zkFair = exports2.zircuitTestnet = exports2.zircuit = exports2.zilliqaTestnet = exports2.zilliqa = exports2.zhejiang = exports2.zetachainAthensTestnet = exports2.zetachain = exports2.zeroG = exports2.zeniq = exports2.zenchainTestnet = exports2.yooldoVerseTestnet = exports2.yooldoVerse = exports2.xrSepolia = exports2.xrOne = void 0;
229927
+ exports2.evmos = exports2.etp = exports2.ethernity = exports2.etherlinkTestnet = exports2.etherlink = exports2.eosTestnet = exports2.eos = exports2.eon = exports2.enuls = exports2.energy = exports2.elysiumTestnet = exports2.electroneumTestnet = exports2.electroneum = exports2.elastosTestnet = exports2.elastos = exports2.ektaTestnet = exports2.ekta = exports2.edgewareTestnet = exports2.edgeware = exports2.edgelessTestnet = exports2.edgeless = exports2.dymension = exports2.dustboyIoT = exports2.dreyerxTestnet = exports2.dreyerxMainnet = exports2.dosChainTestnet = exports2.dosChain = exports2.donatuz = exports2.dogechain = exports2.dodochainTestnet = exports2.disChain = exports2.diode = exports2.dfk = exports2.degen = exports2.defichainEvmTestnet = exports2.defichainEvm = exports2.dchainTestnet = exports2.dchain = exports2.darwinia = exports2.dailyNetworkTestnet = exports2.dailyNetwork = exports2.cyberTestnet = exports2.cyber = exports2.curtis = exports2.crossbell = exports2.cronoszkEVMTestnet = exports2.cronoszkEVM = exports2.cronosTestnet = exports2.cronos = exports2.creditCoin3Testnet = void 0;
229928
+ exports2.ham = exports2.guruTestnet = exports2.guruNetwork = exports2.gravity = exports2.goerli = exports2.godwoken = exports2.goChain = exports2.gobi = exports2.goat = exports2.gnosisChiado = exports2.gnosis = exports2.glideL2Protocol = exports2.glideL1Protocol = exports2.genesys = exports2.geist = exports2.garnet = exports2.fusionTestnet = exports2.fusion = exports2.fuseSparknet = exports2.fuse = exports2.funkiSepolia = exports2.funkiMainnet = exports2.fraxtalTestnet = exports2.fraxtal = exports2.foundry = exports2.forta = exports2.formTestnet = exports2.form = exports2.forma = exports2.fluenceTestnet = exports2.fluenceStage = exports2.fluence = exports2.flowTestnet = exports2.flowPreviewnet = exports2.flowMainnet = exports2.flareTestnet = exports2.flare = exports2.fireChain = exports2.filecoinHyperspace = exports2.filecoinCalibration = exports2.filecoin = exports2.fibo = exports2.fantomTestnet = exports2.fantomSonicTestnet = exports2.fantom = exports2.exsatTestnet = exports2.exsat = exports2.expanse = exports2.excelonMainnet = exports2.evmosTestnet = void 0;
229929
+ exports2.koi = exports2.klaytnBaobab = exports2.kairos = exports2.kaia = exports2.klaytn = exports2.kinto = exports2.kcc = exports2.kavaTestnet = exports2.kava = exports2.kardiaChain = exports2.kakarotStarknetSepolia = exports2.kakarotSepolia = exports2.karura = exports2.jbcTestnet = exports2.jbc = exports2.iSunCoin = exports2.iotexTestnet = exports2.iotex = exports2.iotaTestnet = exports2.iota = exports2.inkSepolia = exports2.ink = exports2.initVerseGenesis = exports2.initVerse = exports2.inEVM = exports2.immutableZkEvmTestnet = exports2.immutableZkEvm = exports2.idchain = exports2.hychainTestnet = exports2.hychain = exports2.humanodeTestnet5 = exports2.humanode = exports2.huddle01Testnet = exports2.huddle01Mainnet = exports2.hpb = exports2.holesky = exports2.hemiSepolia = exports2.hemi = exports2.hela = exports2.hederaTestnet = exports2.hederaPreviewnet = exports2.hedera = exports2.haustTestnet = exports2.hashkeyTestnet = exports2.hashkey = exports2.harmonyOne = exports2.hardhat = exports2.haqqTestedge2 = exports2.haqqMainnet = exports2.happychainTestnet = void 0;
229930
+ exports2.mevTestnet = exports2.mev = exports2.metisGoerli = exports2.metisSepolia = exports2.metis = exports2.meterTestnet = exports2.meter = exports2.metalL2 = exports2.metadium = exports2.metachainIstanbul = exports2.metachain = exports2.merlin = exports2.meld = exports2.mekong = exports2.mchVerse = exports2.matchainTestnet = exports2.matchain = exports2.mapProtocol = exports2.mantleTestnet = exports2.mantleSepoliaTestnet = exports2.mantle = exports2.mantaTestnet = exports2.mantaSepoliaTestnet = exports2.manta = exports2.mandala = exports2.mainnet = exports2.lyra = exports2.lycan = exports2.lumozTestnet = exports2.lumoz = exports2.lumiaTestnet = exports2.lumiaMainnet = exports2.luksoTestnet = exports2.lukso = exports2.loop = exports2.localhost = exports2.liskSepolia = exports2.lisk = exports2.lineaTestnet = exports2.lineaSepolia = exports2.lineaGoerli = exports2.linea = exports2.lightlinkPhoenix = exports2.lightlinkPegasus = exports2.lensTestnet = exports2.lavita = exports2.l3xTestnet = exports2.l3x = exports2.kromaSepolia = exports2.kroma = void 0;
229931
+ exports2.plinga = exports2.playfiAlbireo = exports2.planq = exports2.phoenix = exports2.pgnTestnet = exports2.pgn = exports2.peaq = exports2.palmTestnet = exports2.palm = exports2.otimDevnet = exports2.orderlySepolia = exports2.orderly = exports2.optopiaTestnet = exports2.optopia = exports2.optimismSepolia = exports2.optimismGoerli = exports2.optimism = exports2.opBNBTestnet = exports2.opBNB = exports2.oortMainnetDev = exports2.oneWorld = exports2.omax = exports2.okc = exports2.odysseyTestnet = exports2.oasys = exports2.oasisTestnet = exports2.nexilix = exports2.nexi = exports2.newton = exports2.neoxT4 = exports2.neoxMainnet = exports2.neonMainnet = exports2.neonDevnet = exports2.nearTestnet = exports2.near = exports2.nautilus = exports2.nahmii = exports2.morphSepolia = exports2.morphHolesky = exports2.morph = exports2.moonriver = exports2.moonbeamDev = exports2.moonbeam = exports2.moonbaseAlpha = exports2.monadTestnet = exports2.modeTestnet = exports2.mode = exports2.mitosisTestnet = exports2.mintSepoliaTestnet = exports2.mint = void 0;
229932
+ exports2.shape = exports2.sepolia = exports2.seiTestnet = exports2.seiDevnet = exports2.sei = exports2.scrollSepolia = exports2.satoshiVMTestnet = exports2.satoshiVM = exports2.sapphireTestnet = exports2.sapphire = exports2.sanko = exports2.saigon = exports2.saga = exports2.saakuru = exports2.rss3Sepolia = exports2.rss3 = exports2.rootstockTestnet = exports2.rootstock = exports2.rootPorcini = exports2.root = exports2.ronin = exports2.rolluxTestnet = exports2.rollux = exports2.rivalz = exports2.reddioSepolia = exports2.reyaNetwork = exports2.rei = exports2.redstone = exports2.redbellyTestnet = exports2.redbellyMainnet = exports2.real = exports2.qTestnet = exports2.qMainnet = exports2.ql1 = exports2.pumpfiTestnet = exports2.pulsechainV4 = exports2.pulsechain = exports2.premiumBlockTestnet = exports2.polynomialSepolia = exports2.polynomial = exports2.polygonZkEvmTestnet = exports2.polygonZkEvmCardona = exports2.polygonZkEvm = exports2.polygonMumbai = exports2.polygonAmoy = exports2.polygon = exports2.polterTestnet = exports2.plumeTestnet = exports2.plumeDevnet = exports2.plume = void 0;
229933
+ exports2.swanProximaTestnet = exports2.swan = exports2.superseedSepolia = exports2.superseed = exports2.superposition = exports2.superlumio = exports2.stratis = exports2.storyTestnet = exports2.storyOdyssey = exports2.storyAeneid = exports2.story = exports2.step = exports2.spicy = exports2.sophonTestnet = exports2.sophon = exports2.songbirdTestnet = exports2.songbird = exports2.sonicBlazeTestnet = exports2.sonicTestnet = exports2.sonic = exports2.soneiumMinato = exports2.soneium = exports2.snaxTestnet = exports2.snax = exports2.sketchpad = exports2.skaleTitanTestnet = exports2.skaleTitan = exports2.skaleRazor = exports2.skaleNebulaTestnet = exports2.skaleNebula = exports2.skaleHumanProtocol = exports2.skaleExorde = exports2.skaleEuropaTestnet = exports2.skaleEuropa = exports2.skaleCryptoColosseum = exports2.skaleCryptoBlades = exports2.skaleCalypsoTestnet = exports2.skaleCalypso = exports2.skaleBlockBrawlers = exports2.sixProtocol = exports2.siliconSepolia = exports2.silicon = exports2.sidraChain = exports2.shimmerTestnet = exports2.shimmer = exports2.shiden = exports2.shibariumTestnet = exports2.shibarium = exports2.shardeumSphinx = exports2.shapeSepolia = void 0;
229934
+ exports2.wemix = exports2.weaveVMAlphanet = exports2.wanchainTestnet = exports2.wanchain = exports2.visionTestnet = exports2.vision = exports2.victionTestnet = exports2.viction = exports2.velas = exports2.vechain = exports2.vanar = exports2.unreal = exports2.uniqueQuartz = exports2.uniqueOpal = exports2.unique = exports2.unichainSepolia = exports2.unichain = exports2.ultronTestnet = exports2.ultron = exports2.ultraTestnet = exports2.ultra = exports2.ubiq = exports2.tron = exports2.treasureTopaz = exports2.treasure = exports2.tomb = exports2.tiktrixTestnet = exports2.thunderTestnet = exports2.thunderCore = exports2.thetaTestnet = exports2.theta = exports2.that = exports2.thaiChain = exports2.ternoa = exports2.tenet = exports2.telosTestnet = exports2.telos = exports2.telcoinTestnet = exports2.taraxaTestnet = exports2.taraxa = exports2.taikoTestnetSepolia = exports2.taikoKatla = exports2.taikoJolnir = exports2.taikoHekla = exports2.taiko = exports2.syscoinTestnet = exports2.syscoin = exports2.swissdlt = exports2.swellchain = exports2.swanSaturnTestnet = void 0;
229935
+ exports2.zoraTestnet = exports2.zoraSepolia = exports2.zora = exports2.zksyncSepoliaTestnet = exports2.zkSyncSepoliaTestnet = exports2.zksyncLocalNode = exports2.zkSyncLocalNode = exports2.zksyncLocalHyperchainL1 = exports2.zksyncLocalHyperchain = exports2.zksyncLocalCustomHyperchain = exports2.zksyncInMemoryNode = exports2.zkSyncInMemoryNode = exports2.zksync = exports2.zkSync = exports2.zkLinkNovaSepoliaTestnet = exports2.zkLinkNova = exports2.zkFairTestnet = exports2.zkFair = exports2.zircuitTestnet = exports2.zircuit = exports2.zilliqaTestnet = exports2.zilliqa = exports2.zhejiang = exports2.zetachainAthensTestnet = exports2.zetachain = exports2.zeroNetwork = exports2.zeroG = exports2.zeniq = exports2.zenchainTestnet = exports2.yooldoVerseTestnet = exports2.yooldoVerse = exports2.xrSepolia = exports2.xrOne = exports2.xLayerTestnet = exports2.x1Testnet = exports2.xLayer = exports2.xdcTestnet = exports2.xdc = exports2.xaiTestnet = exports2.xai = exports2.worldLand = exports2.worldchainSepolia = exports2.worldchain = exports2.wmcTestnet = exports2.wemixTestnet = void 0;
228367
229936
  var abey_js_1 = require_abey();
228368
229937
  Object.defineProperty(exports2, "abey", { enumerable: true, get: function() {
228369
229938
  return abey_js_1.abey;
@@ -228952,6 +230521,10 @@ var require_chains2 = __commonJS({
228952
230521
  Object.defineProperty(exports2, "etherlinkTestnet", { enumerable: true, get: function() {
228953
230522
  return etherlinkTestnet_js_1.etherlinkTestnet;
228954
230523
  } });
230524
+ var ethernity_js_1 = require_ethernity();
230525
+ Object.defineProperty(exports2, "ethernity", { enumerable: true, get: function() {
230526
+ return ethernity_js_1.ethernity;
230527
+ } });
228955
230528
  var etp_js_1 = require_etp();
228956
230529
  Object.defineProperty(exports2, "etp", { enumerable: true, get: function() {
228957
230530
  return etp_js_1.etp;
@@ -229048,6 +230621,14 @@ var require_chains2 = __commonJS({
229048
230621
  Object.defineProperty(exports2, "forma", { enumerable: true, get: function() {
229049
230622
  return forma_js_1.forma;
229050
230623
  } });
230624
+ var form_js_1 = require_form();
230625
+ Object.defineProperty(exports2, "form", { enumerable: true, get: function() {
230626
+ return form_js_1.form;
230627
+ } });
230628
+ var formTestnet_js_1 = require_formTestnet();
230629
+ Object.defineProperty(exports2, "formTestnet", { enumerable: true, get: function() {
230630
+ return formTestnet_js_1.formTestnet;
230631
+ } });
229051
230632
  var forta_js_1 = require_forta();
229052
230633
  Object.defineProperty(exports2, "forta", { enumerable: true, get: function() {
229053
230634
  return forta_js_1.forta;
@@ -229180,6 +230761,10 @@ var require_chains2 = __commonJS({
229180
230761
  Object.defineProperty(exports2, "hashkeyTestnet", { enumerable: true, get: function() {
229181
230762
  return hashkeyChainTestnet_js_1.hashkeyTestnet;
229182
230763
  } });
230764
+ var haustTestnet_js_1 = require_haustTestnet();
230765
+ Object.defineProperty(exports2, "haustTestnet", { enumerable: true, get: function() {
230766
+ return haustTestnet_js_1.haustTestnet;
230767
+ } });
229183
230768
  var hedera_js_1 = require_hedera();
229184
230769
  Object.defineProperty(exports2, "hedera", { enumerable: true, get: function() {
229185
230770
  return hedera_js_1.hedera;
@@ -229428,6 +231013,14 @@ var require_chains2 = __commonJS({
229428
231013
  Object.defineProperty(exports2, "lumiaTestnet", { enumerable: true, get: function() {
229429
231014
  return lumiaTestnet_js_1.lumiaTestnet;
229430
231015
  } });
231016
+ var lumoz_js_1 = require_lumoz();
231017
+ Object.defineProperty(exports2, "lumoz", { enumerable: true, get: function() {
231018
+ return lumoz_js_1.lumoz;
231019
+ } });
231020
+ var lumozTestnet_js_1 = require_lumozTestnet();
231021
+ Object.defineProperty(exports2, "lumozTestnet", { enumerable: true, get: function() {
231022
+ return lumozTestnet_js_1.lumozTestnet;
231023
+ } });
229431
231024
  var lycan_js_1 = require_lycan();
229432
231025
  Object.defineProperty(exports2, "lycan", { enumerable: true, get: function() {
229433
231026
  return lycan_js_1.lycan;
@@ -229624,6 +231217,10 @@ var require_chains2 = __commonJS({
229624
231217
  Object.defineProperty(exports2, "neoxT4", { enumerable: true, get: function() {
229625
231218
  return neoxT4_js_1.neoxT4;
229626
231219
  } });
231220
+ var newton_js_1 = require_newton();
231221
+ Object.defineProperty(exports2, "newton", { enumerable: true, get: function() {
231222
+ return newton_js_1.newton;
231223
+ } });
229627
231224
  var nexi_js_1 = require_nexi();
229628
231225
  Object.defineProperty(exports2, "nexi", { enumerable: true, get: function() {
229629
231226
  return nexi_js_1.nexi;
@@ -229708,6 +231305,10 @@ var require_chains2 = __commonJS({
229708
231305
  Object.defineProperty(exports2, "palmTestnet", { enumerable: true, get: function() {
229709
231306
  return palmTestnet_js_1.palmTestnet;
229710
231307
  } });
231308
+ var peaq_js_1 = require_peaq();
231309
+ Object.defineProperty(exports2, "peaq", { enumerable: true, get: function() {
231310
+ return peaq_js_1.peaq;
231311
+ } });
229711
231312
  var pgn_js_1 = require_pgn();
229712
231313
  Object.defineProperty(exports2, "pgn", { enumerable: true, get: function() {
229713
231314
  return pgn_js_1.pgn;
@@ -229772,6 +231373,14 @@ var require_chains2 = __commonJS({
229772
231373
  Object.defineProperty(exports2, "polygonZkEvmTestnet", { enumerable: true, get: function() {
229773
231374
  return polygonZkEvmTestnet_js_1.polygonZkEvmTestnet;
229774
231375
  } });
231376
+ var polynomial_js_1 = require_polynomial();
231377
+ Object.defineProperty(exports2, "polynomial", { enumerable: true, get: function() {
231378
+ return polynomial_js_1.polynomial;
231379
+ } });
231380
+ var polynomialSepolia_js_1 = require_polynomialSepolia();
231381
+ Object.defineProperty(exports2, "polynomialSepolia", { enumerable: true, get: function() {
231382
+ return polynomialSepolia_js_1.polynomialSepolia;
231383
+ } });
229775
231384
  var premiumBlock_js_1 = require_premiumBlock();
229776
231385
  Object.defineProperty(exports2, "premiumBlockTestnet", { enumerable: true, get: function() {
229777
231386
  return premiumBlock_js_1.premiumBlockTestnet;
@@ -230056,6 +231665,10 @@ var require_chains2 = __commonJS({
230056
231665
  Object.defineProperty(exports2, "sonicTestnet", { enumerable: true, get: function() {
230057
231666
  return sonicTestnet_js_1.sonicTestnet;
230058
231667
  } });
231668
+ var sonicBlazeTestnet_js_1 = require_sonicBlazeTestnet();
231669
+ Object.defineProperty(exports2, "sonicBlazeTestnet", { enumerable: true, get: function() {
231670
+ return sonicBlazeTestnet_js_1.sonicBlazeTestnet;
231671
+ } });
230059
231672
  var songbird_js_1 = require_songbird();
230060
231673
  Object.defineProperty(exports2, "songbird", { enumerable: true, get: function() {
230061
231674
  return songbird_js_1.songbird;
@@ -230084,6 +231697,10 @@ var require_chains2 = __commonJS({
230084
231697
  Object.defineProperty(exports2, "story", { enumerable: true, get: function() {
230085
231698
  return story_js_1.story;
230086
231699
  } });
231700
+ var storyAeneid_js_1 = require_storyAeneid();
231701
+ Object.defineProperty(exports2, "storyAeneid", { enumerable: true, get: function() {
231702
+ return storyAeneid_js_1.storyAeneid;
231703
+ } });
230087
231704
  var storyOdyssey_js_1 = require_storyOdyssey();
230088
231705
  Object.defineProperty(exports2, "storyOdyssey", { enumerable: true, get: function() {
230089
231706
  return storyOdyssey_js_1.storyOdyssey;
@@ -230395,6 +232012,10 @@ var require_chains2 = __commonJS({
230395
232012
  Object.defineProperty(exports2, "zeroG", { enumerable: true, get: function() {
230396
232013
  return _0g_js_1.zeroG;
230397
232014
  } });
232015
+ var zeroNetwork_js_1 = require_zeroNetwork();
232016
+ Object.defineProperty(exports2, "zeroNetwork", { enumerable: true, get: function() {
232017
+ return zeroNetwork_js_1.zeroNetwork;
232018
+ } });
230398
232019
  var zetachain_js_1 = require_zetachain();
230399
232020
  Object.defineProperty(exports2, "zetachain", { enumerable: true, get: function() {
230400
232021
  return zetachain_js_1.zetachain;
@@ -263312,7 +264933,7 @@ var require_getProtocolKitVersion = __commonJS({
263312
264933
  "use strict";
263313
264934
  Object.defineProperty(exports2, "__esModule", { value: true });
263314
264935
  exports2.getProtocolKitVersion = void 0;
263315
- var getProtocolKitVersion = () => "5.2.2";
264936
+ var getProtocolKitVersion = () => "5.2.4";
263316
264937
  exports2.getProtocolKitVersion = getProtocolKitVersion;
263317
264938
  }
263318
264939
  });
@@ -265852,6 +267473,234 @@ var require_src9 = __commonJS({
265852
267473
  }
265853
267474
  });
265854
267475
 
267476
+ // ../../node_modules/retry/lib/retry_operation.js
267477
+ var require_retry_operation = __commonJS({
267478
+ "../../node_modules/retry/lib/retry_operation.js"(exports2, module2) {
267479
+ function RetryOperation(timeouts, options) {
267480
+ if (typeof options === "boolean") {
267481
+ options = { forever: options };
267482
+ }
267483
+ this._originalTimeouts = JSON.parse(JSON.stringify(timeouts));
267484
+ this._timeouts = timeouts;
267485
+ this._options = options || {};
267486
+ this._maxRetryTime = options && options.maxRetryTime || Infinity;
267487
+ this._fn = null;
267488
+ this._errors = [];
267489
+ this._attempts = 1;
267490
+ this._operationTimeout = null;
267491
+ this._operationTimeoutCb = null;
267492
+ this._timeout = null;
267493
+ this._operationStart = null;
267494
+ this._timer = null;
267495
+ if (this._options.forever) {
267496
+ this._cachedTimeouts = this._timeouts.slice(0);
267497
+ }
267498
+ }
267499
+ module2.exports = RetryOperation;
267500
+ RetryOperation.prototype.reset = function() {
267501
+ this._attempts = 1;
267502
+ this._timeouts = this._originalTimeouts.slice(0);
267503
+ };
267504
+ RetryOperation.prototype.stop = function() {
267505
+ if (this._timeout) {
267506
+ clearTimeout(this._timeout);
267507
+ }
267508
+ if (this._timer) {
267509
+ clearTimeout(this._timer);
267510
+ }
267511
+ this._timeouts = [];
267512
+ this._cachedTimeouts = null;
267513
+ };
267514
+ RetryOperation.prototype.retry = function(err) {
267515
+ if (this._timeout) {
267516
+ clearTimeout(this._timeout);
267517
+ }
267518
+ if (!err) {
267519
+ return false;
267520
+ }
267521
+ var currentTime = (/* @__PURE__ */ new Date()).getTime();
267522
+ if (err && currentTime - this._operationStart >= this._maxRetryTime) {
267523
+ this._errors.push(err);
267524
+ this._errors.unshift(new Error("RetryOperation timeout occurred"));
267525
+ return false;
267526
+ }
267527
+ this._errors.push(err);
267528
+ var timeout = this._timeouts.shift();
267529
+ if (timeout === void 0) {
267530
+ if (this._cachedTimeouts) {
267531
+ this._errors.splice(0, this._errors.length - 1);
267532
+ timeout = this._cachedTimeouts.slice(-1);
267533
+ } else {
267534
+ return false;
267535
+ }
267536
+ }
267537
+ var self2 = this;
267538
+ this._timer = setTimeout(function() {
267539
+ self2._attempts++;
267540
+ if (self2._operationTimeoutCb) {
267541
+ self2._timeout = setTimeout(function() {
267542
+ self2._operationTimeoutCb(self2._attempts);
267543
+ }, self2._operationTimeout);
267544
+ if (self2._options.unref) {
267545
+ self2._timeout.unref();
267546
+ }
267547
+ }
267548
+ self2._fn(self2._attempts);
267549
+ }, timeout);
267550
+ if (this._options.unref) {
267551
+ this._timer.unref();
267552
+ }
267553
+ return true;
267554
+ };
267555
+ RetryOperation.prototype.attempt = function(fn, timeoutOps) {
267556
+ this._fn = fn;
267557
+ if (timeoutOps) {
267558
+ if (timeoutOps.timeout) {
267559
+ this._operationTimeout = timeoutOps.timeout;
267560
+ }
267561
+ if (timeoutOps.cb) {
267562
+ this._operationTimeoutCb = timeoutOps.cb;
267563
+ }
267564
+ }
267565
+ var self2 = this;
267566
+ if (this._operationTimeoutCb) {
267567
+ this._timeout = setTimeout(function() {
267568
+ self2._operationTimeoutCb();
267569
+ }, self2._operationTimeout);
267570
+ }
267571
+ this._operationStart = (/* @__PURE__ */ new Date()).getTime();
267572
+ this._fn(this._attempts);
267573
+ };
267574
+ RetryOperation.prototype.try = function(fn) {
267575
+ console.log("Using RetryOperation.try() is deprecated");
267576
+ this.attempt(fn);
267577
+ };
267578
+ RetryOperation.prototype.start = function(fn) {
267579
+ console.log("Using RetryOperation.start() is deprecated");
267580
+ this.attempt(fn);
267581
+ };
267582
+ RetryOperation.prototype.start = RetryOperation.prototype.try;
267583
+ RetryOperation.prototype.errors = function() {
267584
+ return this._errors;
267585
+ };
267586
+ RetryOperation.prototype.attempts = function() {
267587
+ return this._attempts;
267588
+ };
267589
+ RetryOperation.prototype.mainError = function() {
267590
+ if (this._errors.length === 0) {
267591
+ return null;
267592
+ }
267593
+ var counts = {};
267594
+ var mainError = null;
267595
+ var mainErrorCount = 0;
267596
+ for (var i = 0; i < this._errors.length; i++) {
267597
+ var error = this._errors[i];
267598
+ var message = error.message;
267599
+ var count = (counts[message] || 0) + 1;
267600
+ counts[message] = count;
267601
+ if (count >= mainErrorCount) {
267602
+ mainError = error;
267603
+ mainErrorCount = count;
267604
+ }
267605
+ }
267606
+ return mainError;
267607
+ };
267608
+ }
267609
+ });
267610
+
267611
+ // ../../node_modules/retry/lib/retry.js
267612
+ var require_retry2 = __commonJS({
267613
+ "../../node_modules/retry/lib/retry.js"(exports2) {
267614
+ var RetryOperation = require_retry_operation();
267615
+ exports2.operation = function(options) {
267616
+ var timeouts = exports2.timeouts(options);
267617
+ return new RetryOperation(timeouts, {
267618
+ forever: options && (options.forever || options.retries === Infinity),
267619
+ unref: options && options.unref,
267620
+ maxRetryTime: options && options.maxRetryTime
267621
+ });
267622
+ };
267623
+ exports2.timeouts = function(options) {
267624
+ if (options instanceof Array) {
267625
+ return [].concat(options);
267626
+ }
267627
+ var opts = {
267628
+ retries: 10,
267629
+ factor: 2,
267630
+ minTimeout: 1 * 1e3,
267631
+ maxTimeout: Infinity,
267632
+ randomize: false
267633
+ };
267634
+ for (var key in options) {
267635
+ opts[key] = options[key];
267636
+ }
267637
+ if (opts.minTimeout > opts.maxTimeout) {
267638
+ throw new Error("minTimeout is greater than maxTimeout");
267639
+ }
267640
+ var timeouts = [];
267641
+ for (var i = 0; i < opts.retries; i++) {
267642
+ timeouts.push(this.createTimeout(i, opts));
267643
+ }
267644
+ if (options && options.forever && !timeouts.length) {
267645
+ timeouts.push(this.createTimeout(i, opts));
267646
+ }
267647
+ timeouts.sort(function(a, b) {
267648
+ return a - b;
267649
+ });
267650
+ return timeouts;
267651
+ };
267652
+ exports2.createTimeout = function(attempt, opts) {
267653
+ var random = opts.randomize ? Math.random() + 1 : 1;
267654
+ var timeout = Math.round(random * Math.max(opts.minTimeout, 1) * Math.pow(opts.factor, attempt));
267655
+ timeout = Math.min(timeout, opts.maxTimeout);
267656
+ return timeout;
267657
+ };
267658
+ exports2.wrap = function(obj, options, methods) {
267659
+ if (options instanceof Array) {
267660
+ methods = options;
267661
+ options = null;
267662
+ }
267663
+ if (!methods) {
267664
+ methods = [];
267665
+ for (var key in obj) {
267666
+ if (typeof obj[key] === "function") {
267667
+ methods.push(key);
267668
+ }
267669
+ }
267670
+ }
267671
+ for (var i = 0; i < methods.length; i++) {
267672
+ var method = methods[i];
267673
+ var original = obj[method];
267674
+ obj[method] = function retryWrapper(original2) {
267675
+ var op = exports2.operation(options);
267676
+ var args = Array.prototype.slice.call(arguments, 1);
267677
+ var callback = args.pop();
267678
+ args.push(function(err) {
267679
+ if (op.retry(err)) {
267680
+ return;
267681
+ }
267682
+ if (err) {
267683
+ arguments[0] = op.mainError();
267684
+ }
267685
+ callback.apply(this, arguments);
267686
+ });
267687
+ op.attempt(function() {
267688
+ original2.apply(obj, args);
267689
+ });
267690
+ }.bind(obj, original);
267691
+ obj[method].options = options;
267692
+ }
267693
+ };
267694
+ }
267695
+ });
267696
+
267697
+ // ../../node_modules/retry/index.js
267698
+ var require_retry3 = __commonJS({
267699
+ "../../node_modules/retry/index.js"(exports2, module2) {
267700
+ module2.exports = require_retry2();
267701
+ }
267702
+ });
267703
+
265855
267704
  // ../../node_modules/@ethereum-sourcify/lib-sourcify/build/main/lib/logger.js
265856
267705
  var require_logger2 = __commonJS({
265857
267706
  "../../node_modules/@ethereum-sourcify/lib-sourcify/build/main/lib/logger.js"(exports2) {
@@ -338242,6 +340091,21 @@ async function prepareTransactionRequest(client, args) {
338242
340091
  chainId = chainId_;
338243
340092
  return chainId;
338244
340093
  }
340094
+ if (parameters.includes("nonce") && typeof nonce === "undefined" && account) {
340095
+ if (nonceManager) {
340096
+ const chainId2 = await getChainId2();
340097
+ request.nonce = await nonceManager.consume({
340098
+ address: account.address,
340099
+ chainId: chainId2,
340100
+ client
340101
+ });
340102
+ } else {
340103
+ request.nonce = await getAction(client, getTransactionCount, "getTransactionCount")({
340104
+ address: account.address,
340105
+ blockTag: "pending"
340106
+ });
340107
+ }
340108
+ }
338245
340109
  if ((parameters.includes("blobVersionedHashes") || parameters.includes("sidecars")) && blobs && kzg) {
338246
340110
  const commitments = blobsToCommitments({ blobs, kzg });
338247
340111
  if (parameters.includes("blobVersionedHashes")) {
@@ -338313,21 +340177,6 @@ async function prepareTransactionRequest(client, args) {
338313
340177
  ...request,
338314
340178
  account: account ? { address: account.address, type: "json-rpc" } : account
338315
340179
  });
338316
- if (parameters.includes("nonce") && typeof nonce === "undefined" && account) {
338317
- if (nonceManager) {
338318
- const chainId2 = await getChainId2();
338319
- request.nonce = await nonceManager.consume({
338320
- address: account.address,
338321
- chainId: chainId2,
338322
- client
338323
- });
338324
- } else {
338325
- request.nonce = await getAction(client, getTransactionCount, "getTransactionCount")({
338326
- address: account.address,
338327
- blockTag: "pending"
338328
- });
338329
- }
338330
- }
338331
340180
  assertRequest(request);
338332
340181
  delete request.parameters;
338333
340182
  return request;
@@ -400359,6 +402208,37 @@ function etherscanApiUrl(chainId) {
400359
402208
  throw new Error(`unsupported chain id: ${chainId}`);
400360
402209
  }
400361
402210
 
402211
+ // ../../packages/shared/dist/sleep.js
402212
+ async function sleep(ms) {
402213
+ return new Promise((resolve2) => {
402214
+ setTimeout(resolve2, ms);
402215
+ });
402216
+ }
402217
+
402218
+ // ../../packages/shared/dist/fetchRetry.js
402219
+ var DEFAULT_RETRIES = 5;
402220
+ var DEFAULT_RETRY_INTERVAL = 1e3;
402221
+ async function fetchRetry(input, init = {}) {
402222
+ const { retries = DEFAULT_RETRIES, retryInterval = DEFAULT_RETRY_INTERVAL, validateResponse, ...options } = init;
402223
+ try {
402224
+ const response = await fetch(input, options);
402225
+ validateResponse?.(response);
402226
+ return response;
402227
+ } catch (e) {
402228
+ if (retries > 0) {
402229
+ await sleep(retryInterval);
402230
+ return fetchRetry(input, {
402231
+ ...options,
402232
+ retries: retries - 1,
402233
+ retryInterval,
402234
+ validateResponse
402235
+ });
402236
+ } else {
402237
+ throw e;
402238
+ }
402239
+ }
402240
+ }
402241
+
400362
402242
  // ../../node_modules/zod/lib/index.mjs
400363
402243
  var util;
400364
402244
  (function(util2) {
@@ -404446,7 +406326,7 @@ var ForkTemplate = z.object({
404446
406326
  message: "gip id must contain lowercase letters, numbers, dashes and underscores, and must be minimum 4 symbols"
404447
406327
  }).or(z.literal("")).nullish(),
404448
406328
  /**
404449
- * Anvil chain id override, if not set, defaults to 7878... etc.
406329
+ * Anvil chain id override, if not set, defaults to same as original network chain id (e.g. 1 for mainnet)
404450
406330
  */
404451
406331
  chainId: z.number().int().nonnegative().nullish().transform((v) => v || void 0),
404452
406332
  /**
@@ -406258,7 +408138,7 @@ function sortedUniqBy(array, iteratee) {
406258
408138
  }
406259
408139
  var sortedUniqBy_default = sortedUniqBy;
406260
408140
 
406261
- // ../../packages/shared/dist/safe.js
408141
+ // ../../packages/shared/dist/safe/getTransactionsToExecute.js
406262
408142
  function getTransactionsToExecute(resp) {
406263
408143
  return sortedUniqBy_default(resp.results.sort((a, b) => {
406264
408144
  if (a.nonce !== b.nonce) {
@@ -406279,6 +408159,232 @@ function getTransactionsToExecute(resp) {
406279
408159
  }), "nonce");
406280
408160
  }
406281
408161
 
408162
+ // ../../packages/shared/dist/safe/parseTxId.js
408163
+ function parseTxId(id) {
408164
+ const [__, multisig, safeTxHash] = id.split("_");
408165
+ return {
408166
+ multisig,
408167
+ safeTxHash
408168
+ };
408169
+ }
408170
+
408171
+ // ../../packages/shared/dist/safe/AlternativeSafeApi.js
408172
+ var AlternativeSafeApi = class {
408173
+ #urlBase;
408174
+ #multisig;
408175
+ #logger;
408176
+ constructor(options) {
408177
+ const { chainId, multisig, logger: logger2 } = options;
408178
+ this.#logger = logger2?.child?.({ name: "alt-safe-api" });
408179
+ this.#multisig = multisig;
408180
+ this.#urlBase = `https://safe-client.safe.global/v1/chains/${chainId}`;
408181
+ }
408182
+ async listTransactions() {
408183
+ const resp = await this.#fetch(`${this.#urlBase}/safes/${this.#multisig}/multisig-transactions`);
408184
+ return resp.results.map((tx) => ({
408185
+ safeTxHash: parseTxId(tx.transaction.id).safeTxHash,
408186
+ safe: this.#multisig,
408187
+ isExecuted: ["SUCCESS", "CANCELLED", "FAILED"].includes(tx.transaction.txStatus),
408188
+ nonce: tx.transaction.executionInfo.nonce,
408189
+ confirmationsRequired: tx.transaction.executionInfo.confirmationsRequired,
408190
+ confirmationsSubmitted: tx.transaction.executionInfo.confirmationsSubmitted,
408191
+ submissionDate: new Date(tx.transaction.timestamp).toISOString(),
408192
+ executionDate: null
408193
+ }));
408194
+ }
408195
+ async getTransaction(hash2) {
408196
+ this.#logger?.debug(`loading tx ${hash2}`);
408197
+ const data = await this.#fetch(`${this.#urlBase}/transactions/${hash2}`);
408198
+ this.#logger?.debug(`loaded tx ${hash2}`);
408199
+ return convertTx(data);
408200
+ }
408201
+ async getPendingTransactions() {
408202
+ const url = `${this.#urlBase}/safes/${this.#multisig}/multisig-transactions`;
408203
+ const resp = await this.#fetch(url);
408204
+ const txsIds = resp.results.filter((tx) => tx.transaction.txStatus === "AWAITING_CONFIRMATIONS" || tx.transaction.txStatus === "AWAITING_EXECUTION").map((tx) => tx.transaction.id);
408205
+ this.#logger?.debug(`loaded ${txsIds.length} pending transactions, next: ${resp.next}`);
408206
+ const txs = [];
408207
+ for (const txId of txsIds) {
408208
+ const { safeTxHash } = parseTxId(txId);
408209
+ const tx = await this.getTransaction(safeTxHash);
408210
+ txs.push(tx);
408211
+ await sleep(500);
408212
+ }
408213
+ return { results: txs };
408214
+ }
408215
+ async #fetch(url) {
408216
+ this.#logger?.debug(`fetching ${url}`);
408217
+ const resp = await fetchRetry(url, {
408218
+ retries: 10,
408219
+ validateResponse: (r) => {
408220
+ if (!r.ok) {
408221
+ throw new Error(`invalid response status: ${r.status}`);
408222
+ }
408223
+ const ct = r.headers.get("Content-Type");
408224
+ if (!ct?.includes("application/json")) {
408225
+ throw new Error(`invalid content type: ${ct}`);
408226
+ }
408227
+ }
408228
+ });
408229
+ return resp.json();
408230
+ }
408231
+ };
408232
+ function convertTx(tx) {
408233
+ const { safeTxHash } = parseTxId(tx.txId);
408234
+ return {
408235
+ safe: tx.safeAddress,
408236
+ to: tx.txInfo.to.value,
408237
+ value: tx.txInfo.value,
408238
+ // data?: string;
408239
+ operation: tx.txData.operation,
408240
+ gasToken: tx.detailedExecutionInfo.gasToken,
408241
+ safeTxGas: Number(tx.detailedExecutionInfo.safeTxGas),
408242
+ baseGas: Number(tx.detailedExecutionInfo.baseGas),
408243
+ gasPrice: tx.detailedExecutionInfo.gasPrice,
408244
+ refundReceiver: tx.detailedExecutionInfo.refundReceiver.value,
408245
+ nonce: tx.detailedExecutionInfo.nonce,
408246
+ executionDate: tx.executedAt ? new Date(tx.executedAt).toISOString() : "",
408247
+ submissionDate: new Date(tx.detailedExecutionInfo.submittedAt).toISOString(),
408248
+ modified: "",
408249
+ // blockNumber?: number;
408250
+ transactionHash: tx.txHash ?? "",
408251
+ safeTxHash,
408252
+ // executor?: string;
408253
+ proposer: tx.detailedExecutionInfo.proposer.value,
408254
+ isExecuted: !!tx.executedAt,
408255
+ isSuccessful: tx.executedAt ? tx.txStatus === "SUCCESS" : void 0,
408256
+ // ethGasPrice?: tx.detailedExecutionInfo.gasPrice,
408257
+ // gasUsed?:string
408258
+ // fee?: string;
408259
+ origin: "0x0",
408260
+ dataDecoded: tx.txData.dataDecoded,
408261
+ confirmationsRequired: tx.detailedExecutionInfo.confirmationsRequired,
408262
+ confirmations: tx.detailedExecutionInfo.confirmations,
408263
+ trusted: tx.detailedExecutionInfo.trusted
408264
+ // signatures?: string
408265
+ };
408266
+ }
408267
+
408268
+ // ../../packages/shared/dist/safe/ClassicSafeApi.js
408269
+ var import_api_kit = __toESM(require_src9(), 1);
408270
+ var ClassicSafeApi = class {
408271
+ #logger;
408272
+ #service;
408273
+ #multisig;
408274
+ constructor(options) {
408275
+ const { logger: logger2, chainId, multisig } = options;
408276
+ this.#logger = logger2?.child?.({ name: "classic-safe-api" });
408277
+ this.#multisig = multisig;
408278
+ try {
408279
+ const Constructor = "default" in import_api_kit.default ? import_api_kit.default.default : import_api_kit.default;
408280
+ this.#service = new Constructor({
408281
+ chainId: BigInt(chainId)
408282
+ });
408283
+ } catch (e) {
408284
+ this.#logger?.error(`failed to instantiate SafeApiKit: ${e}`);
408285
+ }
408286
+ }
408287
+ async listTransactions() {
408288
+ try {
408289
+ const resp = await this.service.getMultisigTransactions(this.#multisig);
408290
+ return resp.results.map((tx) => ({
408291
+ safeTxHash: tx.safeTxHash,
408292
+ safe: tx.safe,
408293
+ isExecuted: tx.isExecuted,
408294
+ nonce: tx.nonce,
408295
+ confirmationsRequired: tx.confirmationsRequired,
408296
+ confirmationsSubmitted: tx.confirmations?.length ?? 0,
408297
+ executionDate: tx.executionDate,
408298
+ submissionDate: tx.submissionDate
408299
+ }));
408300
+ } catch (e) {
408301
+ throw new Error(`failed to list transactions: ${e}`);
408302
+ }
408303
+ }
408304
+ async getTransaction(hash2) {
408305
+ return this.service.getTransaction(hash2);
408306
+ }
408307
+ async getPendingTransactions() {
408308
+ return this.service.getPendingTransactions(this.#multisig);
408309
+ }
408310
+ // safe-api-kit does not work with esm
408311
+ get service() {
408312
+ if (!this.#service) {
408313
+ throw new Error("safe api service not initialized");
408314
+ }
408315
+ return this.#service;
408316
+ }
408317
+ };
408318
+
408319
+ // ../../packages/shared/dist/safe/SafeApiWrapper.js
408320
+ var SafeApiWrapper = class {
408321
+ #classic;
408322
+ #alternative;
408323
+ #logger;
408324
+ #mode;
408325
+ constructor(options, mode = "fallback") {
408326
+ const { logger: logger2 } = options;
408327
+ this.#logger = logger2?.child?.({ name: "safe-api-wrapper" });
408328
+ this.#classic = new ClassicSafeApi(options);
408329
+ this.#alternative = new AlternativeSafeApi(options);
408330
+ this.#mode = mode;
408331
+ }
408332
+ async listTransactions() {
408333
+ if (this.#mode === "classic") {
408334
+ return this.#classic.listTransactions();
408335
+ } else if (this.#mode === "alternative") {
408336
+ return this.#alternative.listTransactions();
408337
+ } else {
408338
+ try {
408339
+ const classic = await this.#classic.listTransactions();
408340
+ return classic;
408341
+ } catch (e) {
408342
+ this.#logger?.error(e);
408343
+ this.#logger?.warn("falling back to alternative api");
408344
+ const alt = await this.#alternative.listTransactions();
408345
+ return alt;
408346
+ }
408347
+ }
408348
+ }
408349
+ /**
408350
+ * Returns transactions from Safe API
408351
+ * If hashes are not given, will return pending transactions (deduped by nonce)
408352
+ * @param hashes
408353
+ * @returns
408354
+ */
408355
+ async getSafeTransactions(hashes) {
408356
+ if (this.#mode === "classic") {
408357
+ return this.#getSafeTransactions(this.#classic, hashes);
408358
+ } else if (this.#mode === "alternative") {
408359
+ return this.#getSafeTransactions(this.#alternative, hashes);
408360
+ } else {
408361
+ try {
408362
+ const classic = await this.#getSafeTransactions(this.#classic, hashes);
408363
+ return classic;
408364
+ } catch (e) {
408365
+ this.#logger?.error(e);
408366
+ this.#logger?.warn("falling back to alternative api");
408367
+ const alt = await this.#getSafeTransactions(this.#alternative, hashes);
408368
+ return alt;
408369
+ }
408370
+ }
408371
+ }
408372
+ async #getSafeTransactions(api, hashes) {
408373
+ let transactions = [];
408374
+ if (hashes) {
408375
+ for (const hash2 of hashes) {
408376
+ const tx = await api.getTransaction(hash2);
408377
+ transactions.push(tx);
408378
+ await sleep(500);
408379
+ }
408380
+ } else {
408381
+ const resp = await api.getPendingTransactions();
408382
+ transactions = getTransactionsToExecute(resp);
408383
+ }
408384
+ return transactions;
408385
+ }
408386
+ };
408387
+
406282
408388
  // ../../packages/shared/dist/version.js
406283
408389
  function major(v) {
406284
408390
  return v >= 100 ? Math.floor(v / 100) : v;
@@ -406396,7 +408502,6 @@ async function pRetry(input, options) {
406396
408502
 
406397
408503
  // ../../packages/node/dist/ProviderBase.js
406398
408504
  import { readFile as readFile4 } from "node:fs/promises";
406399
- import { setTimeout as setTimeout2 } from "node:timers/promises";
406400
408505
 
406401
408506
  // ../../node_modules/viem/_esm/accounts/generatePrivateKey.js
406402
408507
  init_secp256k1();
@@ -408668,9 +410773,6 @@ async function setLTZero(anvil, cm, logger2) {
408668
410773
  await anvil.stopImpersonatingAccount({ address: configuratorAddr });
408669
410774
  }
408670
410775
 
408671
- // ../../packages/node/dist/ProviderBase.js
408672
- var import_api_kit = __toESM(require_src9(), 1);
408673
-
408674
410776
  // ../../packages/node/dist/utilityContracts.js
408675
410777
  var utilityContracts_exports = {};
408676
410778
  __export(utilityContracts_exports, {
@@ -408773,13 +410875,13 @@ var NetworkMismatchError = class extends Error {
408773
410875
  };
408774
410876
  var ProviderBase = class {
408775
410877
  logger = log_default;
408776
- #service;
408777
410878
  #initialized = false;
408778
410879
  #client;
408779
410880
  #network;
408780
410881
  #chainId;
408781
410882
  #overrides;
408782
410883
  #options;
410884
+ #safe;
408783
410885
  constructor(opts) {
408784
410886
  this.#options = opts;
408785
410887
  }
@@ -408795,13 +410897,6 @@ var ProviderBase = class {
408795
410897
  });
408796
410898
  this.#network = await detectNetwork(this.#client);
408797
410899
  this.#chainId = chains[this.#network].id;
408798
- try {
408799
- this.#service = new import_api_kit.default.default({
408800
- chainId: BigInt(this.#chainId)
408801
- });
408802
- } catch (e) {
408803
- this.logger.error(`failed to instantiate SafeApiKit: ${e}`);
408804
- }
408805
410900
  if (this.#options.addressProviderJson) {
408806
410901
  try {
408807
410902
  this.logger.debug(`reading address provider json ${this.#options.addressProviderJson}`);
@@ -408857,19 +410952,17 @@ var ProviderBase = class {
408857
410952
  * @returns
408858
410953
  */
408859
410954
  async getSafeTransactions(hashes) {
408860
- let transactions = [];
408861
- if (hashes) {
408862
- for (const hash2 of hashes) {
408863
- const tx = await this.service.getTransaction(hash2);
408864
- this.logger.trace(`loaded safe tx ${hash2}`);
408865
- transactions.push(tx);
408866
- await setTimeout2(500);
408867
- }
408868
- } else {
408869
- const resp = await this.service.getPendingTransactions(this.address("MULTISIG"));
408870
- transactions = getTransactionsToExecute(resp);
410955
+ return this.safe.getSafeTransactions(hashes);
410956
+ }
410957
+ get safe() {
410958
+ if (!this.#safe) {
410959
+ this.#safe = new SafeApiWrapper({
410960
+ multisig: this.address("MULTISIG"),
410961
+ chainId: this.chainId,
410962
+ logger: log_default
410963
+ }, this.#options.safeApi);
408871
410964
  }
408872
- return transactions;
410965
+ return this.#safe;
408873
410966
  }
408874
410967
  get options() {
408875
410968
  if (!this.#initialized) {
@@ -408895,13 +410988,6 @@ var ProviderBase = class {
408895
410988
  }
408896
410989
  return this.#chainId;
408897
410990
  }
408898
- // safe-api-kit does not work with esm
408899
- get service() {
408900
- if (!this.#service) {
408901
- throw new Error("safe api service not initialized");
408902
- }
408903
- return this.#service;
408904
- }
408905
410991
  get isDeployFromScratch() {
408906
410992
  return !!this.#overrides;
408907
410993
  }
@@ -411332,6 +413418,34 @@ var ACLParser = class extends AbstractParser {
411332
413418
  }
411333
413419
  };
411334
413420
 
413421
+ // ../../packages/node/dist/parsers/adapters/helpers/constants.js
413422
+ var ADAPTER_HELPER_NAMES = {
413423
+ BalancerV3RouterGateway: "ADAPTER_HELPER_BALANCER_V3_ROUTER_GATEWAY"
413424
+ };
413425
+
413426
+ // ../../packages/node/dist/parsers/adapters/helpers/BalancerV3RouterGatewayParser.js
413427
+ init_exports();
413428
+ var BalancerV3RouterGatewayParser = class extends AbstractParser {
413429
+ constructor(contractType) {
413430
+ super(contractType, "constructor(address _balancerV3Router, address _permit2)");
413431
+ this._abi = parseAbi([
413432
+ "constructor(address _balancerV3Router, address _permit2)",
413433
+ "function swapSingleTokenExactIn( address pool, IERC20 tokenIn, IERC20 tokenOut, uint256 exactAmountIn, uint256 minAmountOut, uint256 deadline, bool wethIsEth, bytes calldata userData ) external returns (uint256 amountOut)"
413434
+ ]);
413435
+ this.parameterParsers = {
413436
+ constructor: [parseAddress(), parseAddress()]
413437
+ };
413438
+ }
413439
+ };
413440
+
413441
+ // ../../packages/node/dist/parsers/adapters/helpers/factory.js
413442
+ function adapterHelperParser(contract, version4, contractName) {
413443
+ switch (contract) {
413444
+ case "ADAPTER_HELPER_BALANCER_V3_ROUTER_GATEWAY":
413445
+ return new BalancerV3RouterGatewayParser(contract);
413446
+ }
413447
+ }
413448
+
411335
413449
  // ../../packages/node/dist/parsers/adapters/constants.js
411336
413450
  var ADAPTER_NAMES = {
411337
413451
  // ABSTRACT = 0,
@@ -411388,6 +413502,7 @@ var ADAPTER_NAMES = {
411388
413502
  StakingRewardsAdapter: "ADAPTER_STAKING_REWARDS",
411389
413503
  DaiUsdsAdapter: "ADAPTER_DAI_USDS_EXCHANGE",
411390
413504
  MellowVaultAdapter: "ADAPTER_MELLOW_LRT_VAULT",
413505
+ Mellow4626VaultAdapter: "ADAPTER_MELLOW_ERC4626_VAULT",
411391
413506
  PendleRouterAdapter: "ADAPTER_PENDLE_ROUTER",
411392
413507
  BalancerV3RouterAdapter: "ADAPTER_BALANCER_V3_ROUTER",
411393
413508
  EqualizerRouterAdapter: "ADAPTER_EQUALIZER_ROUTER"
@@ -413561,6 +415676,7 @@ var CONTRACT_NAME_TO_TYPE = new Map([
413561
415676
  ["BatchesChain", "BATCH_CHAIN"],
413562
415677
  ...Object.keys(ZAPPER_CONSTRUCTORS).map((z2) => [z2, "ZAPPER"]),
413563
415678
  ...Object.entries(ADAPTER_NAMES),
415679
+ ...Object.entries(ADAPTER_HELPER_NAMES),
413564
415680
  ...Object.entries(FEED_NAMES)
413565
415681
  ]);
413566
415682
  function parserForContractName(name) {
@@ -413571,7 +415687,7 @@ function parserForContractName(name) {
413571
415687
  return parserForContractType(contractType, void 0, name);
413572
415688
  }
413573
415689
  function parserForContractType(contract, version4, contractName) {
413574
- let parser = adapterParser(contract, version4, contractName) ?? priceFeedParser(contract, version4, contractName);
415690
+ let parser = adapterParser(contract, version4, contractName) ?? adapterHelperParser(contract, version4, contractName) ?? priceFeedParser(contract, version4, contractName);
413575
415691
  if (parser) {
413576
415692
  return parser;
413577
415693
  }
@@ -413908,6 +416024,8 @@ function newCommand() {
413908
416024
  "--market-configurators <comma-separated-addresses>",
413909
416025
  "Market configurators addresses to use in sdk"
413910
416026
  ).argParser(commaSeparatedList).env("MARKET_CONFIGURATORS")
416027
+ ).addOption(
416028
+ new Option("--safe-api <api>", "Which safe api to use").choices(["classic", "fallback", "alternative"]).env("SAFE_API")
413911
416029
  );
413912
416030
  }
413913
416031
 
@@ -415325,7 +417443,7 @@ function getRenderer(opts) {
415325
417443
  var package_default = {
415326
417444
  name: "@gearbox-protocol/deploy-tools",
415327
417445
  description: "Gearbox deploy tools",
415328
- version: "5.13.5",
417446
+ version: "5.14.1",
415329
417447
  homepage: "https://gearbox.fi",
415330
417448
  keywords: [
415331
417449
  "gearbox"
@@ -415349,7 +417467,7 @@ var package_default = {
415349
417467
  scripts: {
415350
417468
  clean: "rm -rf ./dist",
415351
417469
  build: "node esbuild.config.mjs",
415352
- start: "tsx -r dotenv/config ./src/index.ts",
417470
+ start: `sh -c 'tsx --env-file .env src/index.ts "$@" | pino-pretty --colorize' --`,
415353
417471
  prettier: "prettier --write .",
415354
417472
  "prettier:ci": "npx prettier --check .",
415355
417473
  lint: 'eslint "**/*.ts" --fix',
@@ -415363,15 +417481,15 @@ var package_default = {
415363
417481
  "@actions/core": "^1.11.1",
415364
417482
  "@chialab/esbuild-plugin-commonjs": "^0.18.0",
415365
417483
  "@commander-js/extra-typings": "^13.1.0",
415366
- "@ethereum-sourcify/bytecode-utils": "^1.3.1",
415367
- "@ethereum-sourcify/lib-sourcify": "^1.12.0",
417484
+ "@ethereum-sourcify/bytecode-utils": "^1.3.2",
417485
+ "@ethereum-sourcify/lib-sourcify": "^1.12.1",
415368
417486
  "@gearbox-protocol/deploy-tools-node": "0.0.0",
415369
417487
  "@gearbox-protocol/deploy-tools-shared": "0.0.0",
415370
417488
  "@gearbox-protocol/deploy-tools-types": "0.0.0",
415371
417489
  "@gearbox-protocol/sdk": "3.0.0-vfour.264",
415372
- "@gearbox-protocol/sdk-gov": "^2.35.0",
417490
+ "@gearbox-protocol/sdk-gov": "^2.36.5",
415373
417491
  "@types/lodash-es": "^4.17.12",
415374
- "@types/node": "^22.13.4",
417492
+ "@types/node": "^22.13.5",
415375
417493
  "@types/react": "^19.0.10",
415376
417494
  "@types/react-dom": "^19.0.4",
415377
417495
  abitype: "^1.0.8",
@@ -415389,8 +417507,8 @@ var package_default = {
415389
417507
  react: "^19.0.0",
415390
417508
  "react-dom": "^19.0.0",
415391
417509
  table: "^6.9.0",
415392
- tsx: "^4.19.2",
415393
- viem: "^2.23.2",
417510
+ tsx: "^4.19.3",
417511
+ viem: "^2.23.5",
415394
417512
  yaml: "^2.7.0",
415395
417513
  zod: "^3.24.2"
415396
417514
  },
@@ -415446,7 +417564,10 @@ function parse() {
415446
417564
  container.addressTree = new GearboxAddressTree(opts);
415447
417565
  await container.addressTree.build();
415448
417566
  const parser = new UpdateParser(opts, version_default);
415449
- const result = await parser.parse(opts);
417567
+ const result = await parser.parse({
417568
+ ...opts,
417569
+ safeTxHashes: opts.safeTxHashes
417570
+ });
415450
417571
  if (opts.outFile) {
415451
417572
  await writeFile7(opts.outFile, json_stringify(result), "utf-8");
415452
417573
  }
@@ -415631,6 +417752,9 @@ mime-types/index.js:
415631
417752
  * MIT Licensed
415632
417753
  *)
415633
417754
 
417755
+ axios/dist/node/axios.cjs:
417756
+ (*! Axios v1.8.1 Copyright (c) 2025 Matt Zabriskie and contributors *)
417757
+
415634
417758
  lodash/lodash.js:
415635
417759
  (**
415636
417760
  * @license