@bgd-labs/toolbox 0.0.15 → 0.0.16

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.
package/dist/node.js CHANGED
@@ -100,6 +100,7 @@ __export(node_exports, {
100
100
  getExplicitRPC: () => getExplicitRPC,
101
101
  getExplorer: () => getExplorer,
102
102
  getGovernance: () => getGovernance,
103
+ getHyperRPC: () => getHyperRPC,
103
104
  getImplementationSlot: () => getImplementationSlot,
104
105
  getLogsRecursive: () => getLogsRecursive,
105
106
  getMarketReferenceCurrencyAndUsdBalance: () => getMarketReferenceCurrencyAndUsdBalance,
@@ -116,6 +117,7 @@ __export(node_exports, {
116
117
  getReserveConfigurations: () => getReserveConfigurations,
117
118
  getReserveTokens: () => getReserveTokens,
118
119
  getSourceCode: () => getSourceCode,
120
+ hyperRPCSupportedNetworks: () => hyperRPCSupportedNetworks,
119
121
  isPayloadFinal: () => isPayloadFinal,
120
122
  isProposalFinal: () => isProposalFinal,
121
123
  makePayloadExecutableOnTestClient: () => makePayloadExecutableOnTestClient,
@@ -11154,7 +11156,7 @@ async function getReserveConfigurations(client, pool, reserves) {
11154
11156
  };
11155
11157
  }
11156
11158
 
11157
- // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.15.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IPayloadsControllerCore.mjs
11159
+ // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.21.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IPayloadsControllerCore.mjs
11158
11160
  var IPayloadsControllerCore_ABI = [
11159
11161
  {
11160
11162
  type: "function",
@@ -11659,7 +11661,7 @@ var IPayloadsControllerCore_ABI = [
11659
11661
  }
11660
11662
  ];
11661
11663
 
11662
- // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.15.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IGovernanceCore.mjs
11664
+ // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.21.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IGovernanceCore.mjs
11663
11665
  var IGovernanceCore_ABI = [
11664
11666
  {
11665
11667
  type: "function",
@@ -13271,6 +13273,10 @@ var routescanExplorers = {
13271
13273
  api: "https://api.routescan.io/v2/network/testnet/evm/987/etherscan",
13272
13274
  explorer: "987.routescan.io"
13273
13275
  },
13276
+ 999: {
13277
+ api: "https://api.routescan.io/v2/network/mainnet/evm/999/etherscan",
13278
+ explorer: "999.routescan.io"
13279
+ },
13274
13280
  1010: {
13275
13281
  api: "https://api.routescan.io/v2/network/mainnet/evm/1010/etherscan",
13276
13282
  explorer: "1010.routescan.io"
@@ -13371,6 +13377,10 @@ var routescanExplorers = {
13371
13377
  api: "https://api.routescan.io/v2/network/testnet/evm/3636/etherscan",
13372
13378
  explorer: "3636.routescan.io"
13373
13379
  },
13380
+ 3637: {
13381
+ api: "https://api.routescan.io/v2/network/mainnet/evm/3637/etherscan",
13382
+ explorer: "3637.routescan.io"
13383
+ },
13374
13384
  3939: {
13375
13385
  api: "https://api.routescan.io/v2/network/testnet/evm/3939/etherscan",
13376
13386
  explorer: "3939.routescan.io"
@@ -13831,6 +13841,10 @@ var routescanExplorers = {
13831
13841
  api: "https://api.routescan.io/v2/network/testnet/evm/11155931/etherscan",
13832
13842
  explorer: "11155931.routescan.io"
13833
13843
  },
13844
+ 12345678: {
13845
+ api: "https://api.routescan.io/v2/network/mainnet/evm/12345678/etherscan",
13846
+ explorer: "12345678.routescan.io"
13847
+ },
13834
13848
  13068200: {
13835
13849
  api: "https://api.routescan.io/v2/network/testnet/evm/13068200/etherscan",
13836
13850
  explorer: "13068200.routescan.io"
@@ -14006,6 +14020,7 @@ async function tenderly_createVnet({
14006
14020
  response = await createVnet();
14007
14021
  }
14008
14022
  if (response.error) {
14023
+ console.error(`Error: ${response.error.message}`);
14009
14024
  throw new Error("Tenderly vnet could not be created");
14010
14025
  }
14011
14026
  const rpc = response.rpcs.find(
@@ -14110,8 +14125,18 @@ var ChainList = {
14110
14125
  [ChainId.mainnet]: import_chains.mainnet,
14111
14126
  [ChainId.polygon]: import_chains.polygon,
14112
14127
  [ChainId.polygon_amoy]: import_chains.polygonAmoy,
14113
- [ChainId.avalanche]: import_chains.avalanche,
14114
- [ChainId.avalanche_fuji]: import_chains.avalancheFuji,
14128
+ [ChainId.avalanche]: {
14129
+ ...import_chains.avalanche,
14130
+ blockExplorers: {
14131
+ default: { url: "https://snowscan.xyz", name: "Snowscan" }
14132
+ }
14133
+ },
14134
+ [ChainId.avalanche_fuji]: {
14135
+ ...import_chains.avalancheFuji,
14136
+ blockExplorers: {
14137
+ default: { url: "https://testnet.snowscan.xyz", name: "Snowscan Fuji" }
14138
+ }
14139
+ },
14115
14140
  [ChainId.arbitrum]: import_chains.arbitrum,
14116
14141
  [ChainId.arbitrum_sepolia]: import_chains.arbitrumSepolia,
14117
14142
  [ChainId.fantom]: import_chains.fantom,
@@ -14166,14 +14191,16 @@ var alchemyNetworkMap = {
14166
14191
  1088: "metis-mainnet",
14167
14192
  1101: "polygonzkevm-mainnet",
14168
14193
  1301: "unichain-sepolia",
14194
+ 1315: "story-aeneid",
14169
14195
  1328: "sei-testnet",
14170
14196
  1329: "sei-mainnet",
14197
+ 1514: "story-mainnet",
14171
14198
  1868: "soneium-mainnet",
14172
14199
  1946: "soneium-minato",
14173
14200
  2020: "ronin-mainnet",
14174
14201
  2021: "ronin-saigon",
14175
14202
  2442: "polygonzkevm-cardona",
14176
- 2522: "frax-sepolia",
14203
+ 2523: "frax-sepolia",
14177
14204
  2741: "abstract-mainnet",
14178
14205
  4002: "fantom-testnet",
14179
14206
  4157: "crossfi-testnet",
@@ -14185,10 +14212,11 @@ var alchemyNetworkMap = {
14185
14212
  5371: "settlus-mainnet",
14186
14213
  5373: "settlus-septestnet",
14187
14214
  5611: "opbnb-testnet",
14215
+ 6342: "megaeth-testnet",
14216
+ 6900: "anime-sepolia",
14188
14217
  7e3: "zetachain-mainnet",
14189
14218
  7001: "zetachain-testnet",
14190
14219
  8008: "polynomial-mainnet",
14191
- 8009: "polynomial-sepolia",
14192
14220
  8453: "base-mainnet",
14193
14221
  10143: "monad-testnet",
14194
14222
  10200: "gnosis-chiado",
@@ -14210,9 +14238,9 @@ var alchemyNetworkMap = {
14210
14238
  57073: "ink-mainnet",
14211
14239
  59141: "linea-sepolia",
14212
14240
  59144: "linea-mainnet",
14213
- 62320: "celo-baklava",
14214
- 63157: "geist-mainnet",
14241
+ 69e3: "anime-mainnet",
14215
14242
  80002: "polygon-amoy",
14243
+ 80008: "polynomial-sepolia",
14216
14244
  80069: "berachain-bepolia",
14217
14245
  80094: "berachain-mainnet",
14218
14246
  81457: "blast-mainnet",
@@ -14221,7 +14249,6 @@ var alchemyNetworkMap = {
14221
14249
  534351: "scroll-sepolia",
14222
14250
  534352: "scroll-mainnet",
14223
14251
  560048: "eth-hoodi",
14224
- 631571: "geist-polter",
14225
14252
  685685: "gensyn-testnet",
14226
14253
  763373: "ink-sepolia",
14227
14254
  7777777: "zora-mainnet",
@@ -14232,7 +14259,8 @@ var alchemyNetworkMap = {
14232
14259
  666666666: "degen-mainnet",
14233
14260
  994873017: "lumia-prism",
14234
14261
  999999999: "zora-sepolia",
14235
- 1952959480: "lumia-testnet"
14262
+ 1952959480: "lumia-testnet",
14263
+ "null": "sui-testnet"
14236
14264
  };
14237
14265
 
14238
14266
  // src/ecosystem/generated/quicknodeNetworkMap.ts
@@ -14374,6 +14402,12 @@ function getPublicRpc(chainId) {
14374
14402
  throw new Error(`No default public rpc for '${chainId}' configured.`);
14375
14403
  return publicRpc;
14376
14404
  }
14405
+ function getHyperRPC(chainId) {
14406
+ if (hyperRPCSupportedNetworks.includes(chainId)) {
14407
+ return `https://${chainId}.rpc.hypersync.xyz`;
14408
+ }
14409
+ throw new Error(`HyperRPC is not supported for '${chainId}'`);
14410
+ }
14377
14411
  function getQuicknodeRpc(chainId, options) {
14378
14412
  const quickNodeSlug = quicknodeNetworkMap[chainId];
14379
14413
  if (!quickNodeSlug) {
@@ -14687,6 +14721,7 @@ function priceUpdateDecoder(receiver, calldata) {
14687
14721
  ],
14688
14722
  data: calldata
14689
14723
  });
14724
+ console.log(transmitParams);
14690
14725
  const report = (0, import_viem8.decodeAbiParameters)(
14691
14726
  [
14692
14727
  { name: "observationsTimestamp", type: "uint32" },
@@ -14696,11 +14731,13 @@ function priceUpdateDecoder(receiver, calldata) {
14696
14731
  ],
14697
14732
  transmitParams.args[1]
14698
14733
  );
14699
- if (report[2].length)
14734
+ console.log("report", report);
14735
+ if (report[2].length) {
14700
14736
  return {
14701
14737
  receiver,
14702
14738
  answer: report[2][Math.floor(report[2].length / 2)]
14703
14739
  };
14740
+ }
14704
14741
  } catch (e) {
14705
14742
  console.log("could not decode event (which probably is fine)");
14706
14743
  }
@@ -15214,6 +15251,12 @@ var chainlinkFeeds = {
15214
15251
  "decimals": 8,
15215
15252
  "name": "SKY / USD"
15216
15253
  },
15254
+ {
15255
+ "contractAddress": "0x646772c691b2a84CA889f55253C560D38E3766e1",
15256
+ "proxyAddress": "0xF0d9bb015Cd7BfAb877B7156146dc09Bf461370d",
15257
+ "decimals": 8,
15258
+ "name": "USD1 / USD"
15259
+ },
15217
15260
  {
15218
15261
  "contractAddress": "0x64DEE1Bc46e817ed93dEA4815F071B20eD218E39",
15219
15262
  "proxyAddress": "0xa81FE04086865e63E12dD3776978E49DEEa2ea4e",
@@ -15293,6 +15336,12 @@ var chainlinkFeeds = {
15293
15336
  "decimals": 8,
15294
15337
  "name": "USR / USD"
15295
15338
  },
15339
+ {
15340
+ "contractAddress": "0x78281937B869bAaDedDdA3d62fC4b6Fc0a196b61",
15341
+ "proxyAddress": "0x2D27d9e1b74936D8E83c4BA118F09A4c4a897f62",
15342
+ "decimals": 8,
15343
+ "name": "SXT / USD"
15344
+ },
15296
15345
  {
15297
15346
  "contractAddress": "0x786ba26Ee47097E6A5086E742aEf5Efbc6A93447",
15298
15347
  "proxyAddress": "0x9656D3A00402bD9c18EeF89b29ca6810734ABCAd",
@@ -15595,6 +15644,12 @@ var chainlinkFeeds = {
15595
15644
  "decimals": 8,
15596
15645
  "name": "WBTC / BTC"
15597
15646
  },
15647
+ {
15648
+ "contractAddress": "0xA618f119504455762c9bBbcE4aC9EE7fde457d05",
15649
+ "proxyAddress": null,
15650
+ "decimals": 0,
15651
+ "name": "sUSDe-USDe Exchange Rate"
15652
+ },
15598
15653
  {
15599
15654
  "contractAddress": "0xA618f119504455762c9bBbcE4aC9EE7fde457d05",
15600
15655
  "proxyAddress": null,
@@ -15631,6 +15686,12 @@ var chainlinkFeeds = {
15631
15686
  "decimals": 18,
15632
15687
  "name": "CELO/USD-RefPrice-DF-stream-EthereumMainnet-001"
15633
15688
  },
15689
+ {
15690
+ "contractAddress": "0xA618f119504455762c9bBbcE4aC9EE7fde457d05",
15691
+ "proxyAddress": null,
15692
+ "decimals": 18,
15693
+ "name": "CAKE/USD-RefPrice-DF-stream-EthereumMainnet-001"
15694
+ },
15634
15695
  {
15635
15696
  "contractAddress": "0xA618f119504455762c9bBbcE4aC9EE7fde457d05",
15636
15697
  "proxyAddress": null,
@@ -15673,6 +15734,12 @@ var chainlinkFeeds = {
15673
15734
  "decimals": 18,
15674
15735
  "name": "USDC/USD-RefPrice-DF-stream-EthereumMainnet-001"
15675
15736
  },
15737
+ {
15738
+ "contractAddress": "0xA674a0fD742F37BD5077AFc90D1E82485c91989C",
15739
+ "proxyAddress": "0x04F84020Fdf10d9ee64D1dcC2986EDF2F556DA11",
15740
+ "decimals": 8,
15741
+ "name": "EURC / USD"
15742
+ },
15676
15743
  {
15677
15744
  "contractAddress": "0xA9845307Bb5F5637B136Ca70914746d1bb7d402a",
15678
15745
  "proxyAddress": "0x14e613AC84a31f709eadbdF89C6CC390fDc9540A",
@@ -16188,6 +16255,12 @@ var chainlinkFeeds = {
16188
16255
  "decimals": 8,
16189
16256
  "name": "SUSD / USD"
16190
16257
  },
16258
+ {
16259
+ "contractAddress": "0x193285B1b49A085EbE60A4764Cd69525c4BF031B",
16260
+ "proxyAddress": "0x0805fAA94F056C06c2a69e115Aa7633EfD3efDca",
16261
+ "decimals": 8,
16262
+ "name": "ALETH / USD"
16263
+ },
16191
16264
  {
16192
16265
  "contractAddress": "0x19BcA7C81f3ed561a49326b78468EaC64D0E8F2a",
16193
16266
  "proxyAddress": "0xee35A95c9a064491531493D8b380bC40A4CCd0Da",
@@ -16314,12 +16387,6 @@ var chainlinkFeeds = {
16314
16387
  "decimals": 8,
16315
16388
  "name": "APE / USD"
16316
16389
  },
16317
- {
16318
- "contractAddress": "0x397c2082dA7A0962A4FBF14e62E72dbCefB7a7Dc",
16319
- "proxyAddress": "0x1520874FC216f5F07E03607303Df2Fda6C3Fc203",
16320
- "decimals": 8,
16321
- "name": "ZIL / USD"
16322
- },
16323
16390
  {
16324
16391
  "contractAddress": "0x3E313e778dA811F79A66570b8703c66204112Dfd",
16325
16392
  "proxyAddress": "0x34E0E85CeEc6be6146c4f0115769a29a9539222e",
@@ -16362,6 +16429,12 @@ var chainlinkFeeds = {
16362
16429
  "decimals": 8,
16363
16430
  "name": "MKR / USD"
16364
16431
  },
16432
+ {
16433
+ "contractAddress": "0x491A63E35688F90780fE57610679D0cfb91a43Fe",
16434
+ "proxyAddress": "0x30F6ffb911ac7B9aDF471f28366ce1826C05776e",
16435
+ "decimals": 8,
16436
+ "name": "USD1 / USD"
16437
+ },
16365
16438
  {
16366
16439
  "contractAddress": "0x4F6dFDFd4d68F68b2692E79f9e94796fC8015770",
16367
16440
  "proxyAddress": "0x0D276FC14719f9292D5C1eA2198673d1f4269246",
@@ -16668,6 +16741,12 @@ var chainlinkFeeds = {
16668
16741
  "decimals": 18,
16669
16742
  "name": "ynETHx / ETH Exchange Rate"
16670
16743
  },
16744
+ {
16745
+ "contractAddress": "0xA0aDEfAD7c8246E2BFaD900dC28539b8C0DC5703",
16746
+ "proxyAddress": "0x1520874FC216f5F07E03607303Df2Fda6C3Fc203",
16747
+ "decimals": 8,
16748
+ "name": "ZIL / USD"
16749
+ },
16671
16750
  {
16672
16751
  "contractAddress": "0xA2f199CDb286C716b4315Ee216192d8BDE617611",
16673
16752
  "proxyAddress": "0xf37c76163b2918bB4533579D449524F8542E64AD",
@@ -17240,6 +17319,12 @@ var chainlinkFeeds = {
17240
17319
  "decimals": 18,
17241
17320
  "name": "XVS / BNB"
17242
17321
  },
17322
+ {
17323
+ "contractAddress": "0x48dB0aDEABFaCc84d567CD520e48c1F677d05311",
17324
+ "proxyAddress": "0xaD8b4e59A7f25B68945fAf0f3a3EAF027832FFB0",
17325
+ "decimals": 8,
17326
+ "name": "USD1 / USD"
17327
+ },
17243
17328
  {
17244
17329
  "contractAddress": "0x4A406c886CEABcc54201ECa1fF1b84c1a62623E2",
17245
17330
  "proxyAddress": "0xD5c40f5144848Bd4EF08a9605d860e727b991513",
@@ -17480,6 +17565,12 @@ var chainlinkFeeds = {
17480
17565
  "decimals": 8,
17481
17566
  "name": "MS / USD"
17482
17567
  },
17568
+ {
17569
+ "contractAddress": "0x91d5fFD8e7060a137925ceD9ad80Dd1979254107",
17570
+ "proxyAddress": "0xE8ed18E29402CD223bC5B73D30e40CCdf7b72986",
17571
+ "decimals": 8,
17572
+ "name": "USR / USD"
17573
+ },
17483
17574
  {
17484
17575
  "contractAddress": "0x923f7aE6BC5FA488D82cFD9130ECE95cF6c975f4",
17485
17576
  "proxyAddress": "0x93A67D414896A280bF8FFB3b389fE3686E014fda",
@@ -19112,6 +19203,12 @@ var chainlinkFeeds = {
19112
19203
  "decimals": 18,
19113
19204
  "name": "wstkscBTC / stkscBTC Exchange Rate"
19114
19205
  },
19206
+ {
19207
+ "contractAddress": "0x7392f6179bda7eB9CAA608963544aA7a914D1fb9",
19208
+ "proxyAddress": "0x21f037F67946A199b1DBF1Cb7DFa21bFde477196",
19209
+ "decimals": 18,
19210
+ "name": "xSolvBTC / SolvBTC Exchange Rate"
19211
+ },
19115
19212
  {
19116
19213
  "contractAddress": "0x7fe2ADDE154eB97ad68D5aD70328a1DB13701Bc2",
19117
19214
  "proxyAddress": "0x824364077993847f71293B24ccA8567c00c2de11",
@@ -19142,6 +19239,12 @@ var chainlinkFeeds = {
19142
19239
  "decimals": 8,
19143
19240
  "name": "SCUSD / USD"
19144
19241
  },
19242
+ {
19243
+ "contractAddress": "0xA0259d0e5f4C451326921Ef9B990A52403F9C216",
19244
+ "proxyAddress": "0x0fceF1123FDBEdC89a0189B15D35B7A33B7694c0",
19245
+ "decimals": 8,
19246
+ "name": "EUR / USD"
19247
+ },
19145
19248
  {
19146
19249
  "contractAddress": "0xB70b802953462312A47c857b940991108F8d43De",
19147
19250
  "proxyAddress": "0x790181e93e9F4Eedb5b864860C12e4d2CffFe73B",
@@ -19202,6 +19305,12 @@ var chainlinkFeeds = {
19202
19305
  "decimals": 8,
19203
19306
  "name": "EURC / USD"
19204
19307
  },
19308
+ {
19309
+ "contractAddress": "0xc7E2Ac28F7cdB250aEe24E1bfadd5FfbC234C979",
19310
+ "proxyAddress": "0xB6D739Ba498a0D8d1e92F81345B764C995Cc4882",
19311
+ "decimals": 8,
19312
+ "name": "USD1 / USD"
19313
+ },
19205
19314
  {
19206
19315
  "contractAddress": "0xcdEb81F86ee3Fc0cF6cbF6505b5a624460777732",
19207
19316
  "proxyAddress": "0x960BDD1dFD20d7c98fa482D793C3dedD73A113a3",
@@ -19508,6 +19617,12 @@ var chainlinkFeeds = {
19508
19617
  "decimals": 8,
19509
19618
  "name": "solvBTC / BTC"
19510
19619
  },
19620
+ {
19621
+ "contractAddress": "0x291ad034EBFF630769F3b0584b7C2AA448818103",
19622
+ "proxyAddress": "0x251Ef178518aba5aa1df24713344EA1C6d9ccc67",
19623
+ "decimals": 8,
19624
+ "name": "USD1 / USD"
19625
+ },
19511
19626
  {
19512
19627
  "contractAddress": "0x304DD98fa8681aF2E32B0e252977a8662C0f431d",
19513
19628
  "proxyAddress": "0x6D414dC3F9D8822D947B737CA8F75b1c4d6C8542",
@@ -19520,6 +19635,12 @@ var chainlinkFeeds = {
19520
19635
  "decimals": 8,
19521
19636
  "name": "WBTC / USD"
19522
19637
  },
19638
+ {
19639
+ "contractAddress": "0x64F4855349188677016A052CcBECbbe07Cd741D3",
19640
+ "proxyAddress": "0x2580FA33f9dfD9D26F1aC418E09113f3E9c316c2",
19641
+ "decimals": 18,
19642
+ "name": "Calculated wstASTR / USD"
19643
+ },
19523
19644
  {
19524
19645
  "contractAddress": "0x7DCcF223c077e8D1e2297d7788Bb6E62af89dFc9",
19525
19646
  "proxyAddress": "0xF049354158e13F6794A3cCD236694E0e1BD9AF79",
@@ -19618,12 +19739,24 @@ var chainlinkFeeds = {
19618
19739
  "decimals": 18,
19619
19740
  "name": "ynETHx / ETH Exchange Rate"
19620
19741
  },
19742
+ {
19743
+ "contractAddress": "0x4606b8D331f07f8167d5bcD891Ff6a4eE984B8e4",
19744
+ "proxyAddress": "0xB16FcAFB8378baA0a69142a325878FDCad58606A",
19745
+ "decimals": 18,
19746
+ "name": "Calculated mETH / USD"
19747
+ },
19621
19748
  {
19622
19749
  "contractAddress": "0x4EE01a89530E481EcCF045642817cEF39184C02a",
19623
19750
  "proxyAddress": "0x6352E3A925E27130317d3A0A5b0b0303e9f2fc7c",
19624
19751
  "decimals": 18,
19625
19752
  "name": "mETH / ETH"
19626
19753
  },
19754
+ {
19755
+ "contractAddress": "0x874effca5376D434d49021B3638d1e1BC214EC27",
19756
+ "proxyAddress": "0x73b15e19b247263D03D7938f1356304b7B330Ff0",
19757
+ "decimals": 18,
19758
+ "name": "Calculated FBTC / USD"
19759
+ },
19627
19760
  {
19628
19761
  "contractAddress": "0xB16d5c70A9c062EF1604a517E4b80dE74670448D",
19629
19762
  "proxyAddress": "0x6d5110FB8F6a65c46B89a64C9ac7E3542D31AbA3",
@@ -20202,6 +20335,12 @@ var chainlinkFeeds = {
20202
20335
  "decimals": 18,
20203
20336
  "name": "CETH Reserves"
20204
20337
  },
20338
+ {
20339
+ "contractAddress": "0xCa1a4BdF7f9f8F8F281E311028dEa7e472a7A194",
20340
+ "proxyAddress": "0x4e7dB2f9a28348AB48a968dd4217D565D1F15Ba4",
20341
+ "decimals": 18,
20342
+ "name": "ynETHx / ETH Exchange Rate"
20343
+ },
20205
20344
  {
20206
20345
  "contractAddress": "0xD0407a6524C7d9075E0b040dCEf4696129B2C3B4",
20207
20346
  "proxyAddress": "0xeDC243c7E3c1A9dAf067C90641D2346d2694d2e5",
@@ -20444,6 +20583,12 @@ var chainlinkFeeds = {
20444
20583
  "decimals": 18,
20445
20584
  "name": "SKYAI/USD-RefPrice-mainnet-production"
20446
20585
  },
20586
+ {
20587
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20588
+ "proxyAddress": null,
20589
+ "decimals": 18,
20590
+ "name": "ACRED/USD-RefPrice-mainnet-production"
20591
+ },
20447
20592
  {
20448
20593
  "contractAddress": "0x0000000000000000000000000000000000000000",
20449
20594
  "proxyAddress": null,
@@ -20480,6 +20625,12 @@ var chainlinkFeeds = {
20480
20625
  "decimals": 18,
20481
20626
  "name": "TROLL/USD-RefPrice-mainnet-production"
20482
20627
  },
20628
+ {
20629
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20630
+ "proxyAddress": null,
20631
+ "decimals": 18,
20632
+ "name": "MYX/USD-RefPrice-mainnet-production"
20633
+ },
20483
20634
  {
20484
20635
  "contractAddress": "0x0000000000000000000000000000000000000000",
20485
20636
  "proxyAddress": null,
@@ -20528,6 +20679,12 @@ var chainlinkFeeds = {
20528
20679
  "decimals": 18,
20529
20680
  "name": "KYSOL/USD-RefPrice-mainnet-production"
20530
20681
  },
20682
+ {
20683
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20684
+ "proxyAddress": null,
20685
+ "decimals": 18,
20686
+ "name": "DEEP/USD-RefPrice-mainnet-production"
20687
+ },
20531
20688
  {
20532
20689
  "contractAddress": "0x0000000000000000000000000000000000000000",
20533
20690
  "proxyAddress": null,
@@ -20558,6 +20715,12 @@ var chainlinkFeeds = {
20558
20715
  "decimals": 18,
20559
20716
  "name": "AIXBT/USD-RefPrice-mainnet-staging"
20560
20717
  },
20718
+ {
20719
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20720
+ "proxyAddress": null,
20721
+ "decimals": 18,
20722
+ "name": "APU/USD-RefPrice-mainnet-production"
20723
+ },
20561
20724
  {
20562
20725
  "contractAddress": "0x0000000000000000000000000000000000000000",
20563
20726
  "proxyAddress": null,
@@ -20576,6 +20739,12 @@ var chainlinkFeeds = {
20576
20739
  "decimals": 18,
20577
20740
  "name": "SYN/USD-RefPrice-mainnet-production"
20578
20741
  },
20742
+ {
20743
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20744
+ "proxyAddress": null,
20745
+ "decimals": 18,
20746
+ "name": "CFG/USD-RefPrice-mainnet-production"
20747
+ },
20579
20748
  {
20580
20749
  "contractAddress": "0x0000000000000000000000000000000000000000",
20581
20750
  "proxyAddress": null,
@@ -20636,6 +20805,12 @@ var chainlinkFeeds = {
20636
20805
  "decimals": 18,
20637
20806
  "name": "BAL/USD-RefPrice-mainnet-production"
20638
20807
  },
20808
+ {
20809
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20810
+ "proxyAddress": null,
20811
+ "decimals": 18,
20812
+ "name": "WELL/USD-RefPrice-mainnet-production"
20813
+ },
20639
20814
  {
20640
20815
  "contractAddress": "0x0000000000000000000000000000000000000000",
20641
20816
  "proxyAddress": null,
@@ -20654,24 +20829,48 @@ var chainlinkFeeds = {
20654
20829
  "decimals": 18,
20655
20830
  "name": "AIXBT/USD-RefPrice-mainnet-production"
20656
20831
  },
20832
+ {
20833
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20834
+ "proxyAddress": null,
20835
+ "decimals": 18,
20836
+ "name": "GT/USD-RefPrice-mainnet-production"
20837
+ },
20657
20838
  {
20658
20839
  "contractAddress": "0x0000000000000000000000000000000000000000",
20659
20840
  "proxyAddress": null,
20660
20841
  "decimals": 18,
20661
20842
  "name": "CATI/USD-RefPrice-mainnet-production"
20662
20843
  },
20844
+ {
20845
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20846
+ "proxyAddress": null,
20847
+ "decimals": 18,
20848
+ "name": "CRO/USD-RefPrice-mainnet-production"
20849
+ },
20663
20850
  {
20664
20851
  "contractAddress": "0x0000000000000000000000000000000000000000",
20665
20852
  "proxyAddress": null,
20666
20853
  "decimals": 18,
20667
20854
  "name": "XPR/USD-RefPrice-mainnet-production"
20668
20855
  },
20856
+ {
20857
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20858
+ "proxyAddress": null,
20859
+ "decimals": 18,
20860
+ "name": "KAITO/USD-RefPrice-mainnet-production"
20861
+ },
20669
20862
  {
20670
20863
  "contractAddress": "0x0000000000000000000000000000000000000000",
20671
20864
  "proxyAddress": null,
20672
20865
  "decimals": 18,
20673
20866
  "name": "HNT/USD-RefPrice-mainnet-production"
20674
20867
  },
20868
+ {
20869
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20870
+ "proxyAddress": null,
20871
+ "decimals": 18,
20872
+ "name": "RSWETH/USD-RefPrice-mainnet-production"
20873
+ },
20675
20874
  {
20676
20875
  "contractAddress": "0x0000000000000000000000000000000000000000",
20677
20876
  "proxyAddress": null,
@@ -20708,6 +20907,18 @@ var chainlinkFeeds = {
20708
20907
  "decimals": 18,
20709
20908
  "name": "METIS/USD-RefPrice-mainnet-production"
20710
20909
  },
20910
+ {
20911
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20912
+ "proxyAddress": null,
20913
+ "decimals": 18,
20914
+ "name": "WBCOIN/USD-RefPrice-mainnet-production"
20915
+ },
20916
+ {
20917
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20918
+ "proxyAddress": null,
20919
+ "decimals": 18,
20920
+ "name": "BBSOL/USD-RefPrice-mainnet-production"
20921
+ },
20711
20922
  {
20712
20923
  "contractAddress": "0x0000000000000000000000000000000000000000",
20713
20924
  "proxyAddress": null,
@@ -20756,6 +20967,12 @@ var chainlinkFeeds = {
20756
20967
  "decimals": 18,
20757
20968
  "name": "LUSD/USD-RefPrice-mainnet-production"
20758
20969
  },
20970
+ {
20971
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20972
+ "proxyAddress": null,
20973
+ "decimals": 18,
20974
+ "name": "FRXETH/USD-RefPrice-mainnet-production"
20975
+ },
20759
20976
  {
20760
20977
  "contractAddress": "0x0000000000000000000000000000000000000000",
20761
20978
  "proxyAddress": null,
@@ -20810,6 +21027,18 @@ var chainlinkFeeds = {
20810
21027
  "decimals": 18,
20811
21028
  "name": "wBTC/USD-RefPrice-mainnet-production"
20812
21029
  },
21030
+ {
21031
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21032
+ "proxyAddress": null,
21033
+ "decimals": 18,
21034
+ "name": "ROSE/USD-RefPrice-mainnet-production"
21035
+ },
21036
+ {
21037
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21038
+ "proxyAddress": null,
21039
+ "decimals": 18,
21040
+ "name": "USD1/USD-RefPrice-mainnet-production"
21041
+ },
20813
21042
  {
20814
21043
  "contractAddress": "0x0000000000000000000000000000000000000000",
20815
21044
  "proxyAddress": null,
@@ -20912,6 +21141,12 @@ var chainlinkFeeds = {
20912
21141
  "decimals": 18,
20913
21142
  "name": "DODO/USD-RefPrice-mainnet-staging"
20914
21143
  },
21144
+ {
21145
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21146
+ "proxyAddress": null,
21147
+ "decimals": 18,
21148
+ "name": "WAL/USD-RefPrice-mainnet-production"
21149
+ },
20915
21150
  {
20916
21151
  "contractAddress": "0x0000000000000000000000000000000000000000",
20917
21152
  "proxyAddress": null,
@@ -21008,6 +21243,12 @@ var chainlinkFeeds = {
21008
21243
  "decimals": 18,
21009
21244
  "name": "GLV [BTC-USDC]/USD-RefPrice-mainnet-production"
21010
21245
  },
21246
+ {
21247
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21248
+ "proxyAddress": null,
21249
+ "decimals": 18,
21250
+ "name": "HUBSOL/USD-RefPrice-mainnet-production"
21251
+ },
21011
21252
  {
21012
21253
  "contractAddress": "0x0000000000000000000000000000000000000000",
21013
21254
  "proxyAddress": null,
@@ -21020,6 +21261,12 @@ var chainlinkFeeds = {
21020
21261
  "decimals": 18,
21021
21262
  "name": "XDC/USD-RefPrice-mainnet-staging"
21022
21263
  },
21264
+ {
21265
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21266
+ "proxyAddress": null,
21267
+ "decimals": 18,
21268
+ "name": "SEND/USD-RefPrice-mainnet-production"
21269
+ },
21023
21270
  {
21024
21271
  "contractAddress": "0x0000000000000000000000000000000000000000",
21025
21272
  "proxyAddress": null,
@@ -21056,6 +21303,12 @@ var chainlinkFeeds = {
21056
21303
  "decimals": 18,
21057
21304
  "name": "DYM/USD-RefPrice-mainnet-staging"
21058
21305
  },
21306
+ {
21307
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21308
+ "proxyAddress": null,
21309
+ "decimals": 18,
21310
+ "name": "SWETH/USD-RefPrice-mainnet-production"
21311
+ },
21059
21312
  {
21060
21313
  "contractAddress": "0x0000000000000000000000000000000000000000",
21061
21314
  "proxyAddress": null,
@@ -21158,6 +21411,30 @@ var chainlinkFeeds = {
21158
21411
  "decimals": 18,
21159
21412
  "name": "GLV [BTC-USDC]/USD-RefPrice-mainnet-staging"
21160
21413
  },
21414
+ {
21415
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21416
+ "proxyAddress": null,
21417
+ "decimals": 18,
21418
+ "name": "METH/USD-RefPrice-mainnet-production"
21419
+ },
21420
+ {
21421
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21422
+ "proxyAddress": null,
21423
+ "decimals": 18,
21424
+ "name": "LST/USD-RefPrice-mainnet-production"
21425
+ },
21426
+ {
21427
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21428
+ "proxyAddress": null,
21429
+ "decimals": 18,
21430
+ "name": "TWT/USD-RefPrice-mainnet-production"
21431
+ },
21432
+ {
21433
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21434
+ "proxyAddress": null,
21435
+ "decimals": 18,
21436
+ "name": "SUSDS/USD-RefPrice-mainnet-production"
21437
+ },
21161
21438
  {
21162
21439
  "contractAddress": "0x0000000000000000000000000000000000000000",
21163
21440
  "proxyAddress": null,
@@ -21296,6 +21573,12 @@ var chainlinkFeeds = {
21296
21573
  "decimals": 18,
21297
21574
  "name": "HYPE/USD-RefPrice-mainnet-staging"
21298
21575
  },
21576
+ {
21577
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21578
+ "proxyAddress": null,
21579
+ "decimals": 18,
21580
+ "name": "KAS/USD-RefPrice-mainnet-production"
21581
+ },
21299
21582
  {
21300
21583
  "contractAddress": "0x0000000000000000000000000000000000000000",
21301
21584
  "proxyAddress": null,
@@ -21440,6 +21723,12 @@ var chainlinkFeeds = {
21440
21723
  "decimals": 18,
21441
21724
  "name": "WEN/USD-RefPrice-mainnet-production"
21442
21725
  },
21726
+ {
21727
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21728
+ "proxyAddress": null,
21729
+ "decimals": 18,
21730
+ "name": "BLUE/USD-RefPrice-mainnet-production"
21731
+ },
21443
21732
  {
21444
21733
  "contractAddress": "0x0000000000000000000000000000000000000000",
21445
21734
  "proxyAddress": null,
@@ -21458,6 +21747,12 @@ var chainlinkFeeds = {
21458
21747
  "decimals": 18,
21459
21748
  "name": "KUDAI/USD-RefPrice-mainnet-production"
21460
21749
  },
21750
+ {
21751
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21752
+ "proxyAddress": null,
21753
+ "decimals": 18,
21754
+ "name": "ZBCN/USD-RefPrice-mainnet-production"
21755
+ },
21461
21756
  {
21462
21757
  "contractAddress": "0x0000000000000000000000000000000000000000",
21463
21758
  "proxyAddress": null,
@@ -21482,6 +21777,12 @@ var chainlinkFeeds = {
21482
21777
  "decimals": 18,
21483
21778
  "name": "BAT/USD-RefPrice-mainnet-production"
21484
21779
  },
21780
+ {
21781
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21782
+ "proxyAddress": null,
21783
+ "decimals": 18,
21784
+ "name": "TOSHI/USD-RefPrice-mainnet-production"
21785
+ },
21485
21786
  {
21486
21787
  "contractAddress": "0x0000000000000000000000000000000000000000",
21487
21788
  "proxyAddress": null,
@@ -21500,6 +21801,54 @@ var chainlinkFeeds = {
21500
21801
  "decimals": 18,
21501
21802
  "name": "SPX/USD-RefPrice-mainnet-staging"
21502
21803
  },
21804
+ {
21805
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21806
+ "proxyAddress": null,
21807
+ "decimals": 18,
21808
+ "name": "SOL/USDT-Binance-FundingRate-mainnet-staging"
21809
+ },
21810
+ {
21811
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21812
+ "proxyAddress": null,
21813
+ "decimals": 18,
21814
+ "name": "ETH/USDT-Deribit-FundingRate-mainnet-staging"
21815
+ },
21816
+ {
21817
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21818
+ "proxyAddress": null,
21819
+ "decimals": 18,
21820
+ "name": "BTC/USDT-Deribit-FundingRate-mainnet-staging"
21821
+ },
21822
+ {
21823
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21824
+ "proxyAddress": null,
21825
+ "decimals": 18,
21826
+ "name": "ETH/USDT-Binance-FundingRate-mainnet-staging"
21827
+ },
21828
+ {
21829
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21830
+ "proxyAddress": null,
21831
+ "decimals": 18,
21832
+ "name": "AERGO/USDT-Binance-FundingRate-mainnet-staging"
21833
+ },
21834
+ {
21835
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21836
+ "proxyAddress": null,
21837
+ "decimals": 18,
21838
+ "name": "BTC/USDT-Binance-FundingRate-mainnet-staging"
21839
+ },
21840
+ {
21841
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21842
+ "proxyAddress": null,
21843
+ "decimals": 18,
21844
+ "name": "BTC-ETH-SOL-USDC-USDT/USD-RefPrice-mainnet-production"
21845
+ },
21846
+ {
21847
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21848
+ "proxyAddress": null,
21849
+ "decimals": 18,
21850
+ "name": "SYRUPUSDC/USDC-ExRate-mainnet-production"
21851
+ },
21503
21852
  {
21504
21853
  "contractAddress": "0x01DD3Cf6118069DB13A2d64d7e1A09FECd587EDD",
21505
21854
  "proxyAddress": "0x8d0CC5f38f9E802475f2CFf4F9fc7000C2E1557c",
@@ -21584,6 +21933,12 @@ var chainlinkFeeds = {
21584
21933
  "decimals": 8,
21585
21934
  "name": "USDS / USD"
21586
21935
  },
21936
+ {
21937
+ "contractAddress": "0x15cDF4FdbC7BD5207B8ba0960731e013e49c5bA9",
21938
+ "proxyAddress": "0xcAc0138592090762385CCB7bb94C9401F734Eb30",
21939
+ "decimals": 8,
21940
+ "name": "USD1 / USD"
21941
+ },
21587
21942
  {
21588
21943
  "contractAddress": "0x17298e460F18f1380fe5Ed68985A566949B91d20",
21589
21944
  "proxyAddress": "0x17d8D87dF3E279c737568aB0C5cC3fF750aB763e",
@@ -21662,6 +22017,12 @@ var chainlinkFeeds = {
21662
22017
  "decimals": 8,
21663
22018
  "name": "USDC / USD"
21664
22019
  },
22020
+ {
22021
+ "contractAddress": "0x29ef0aE1eDb5764b5bd2ff3a605b5d4Eb39a0d63",
22022
+ "proxyAddress": "0x5F25Ea8Cf2a3aB12E4D6fB58FB63C7938473B036",
22023
+ "decimals": 10,
22024
+ "name": "aBTC PoR"
22025
+ },
21665
22026
  {
21666
22027
  "contractAddress": "0x2C50f2Fe9427d120DEA2eb804c148d2780519d59",
21667
22028
  "proxyAddress": "0x221912ce795669f628c51c69b7d0873eDA9C03bB",
@@ -22301,7 +22662,7 @@ var chainlinkFeeds = {
22301
22662
  {
22302
22663
  "contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
22303
22664
  "proxyAddress": null,
22304
- "decimals": 18,
22665
+ "decimals": 0,
22305
22666
  "name": "wstETH/USD-RefPrice-DSstaging-Premium-Global-003"
22306
22667
  },
22307
22668
  {
@@ -24278,6 +24639,12 @@ var chainlinkFeeds = {
24278
24639
  "decimals": 8,
24279
24640
  "name": "TRUMP / USD"
24280
24641
  },
24642
+ {
24643
+ "contractAddress": "0xDB99d80bD3aE8dae5d929493Ddf696196f7f59f2",
24644
+ "proxyAddress": "0xd9344493d99153Ad4353D604A1d80d4089004c5D",
24645
+ "decimals": 8,
24646
+ "name": "zBTC PoR"
24647
+ },
24281
24648
  {
24282
24649
  "contractAddress": "0xDf8a3fc9bC6fA89F1b630e58f6eB4b874f24C165",
24283
24650
  "proxyAddress": "0x3A917e6B5732dFCc4A45257e3930979fAE6a3737",
@@ -24296,6 +24663,12 @@ var chainlinkFeeds = {
24296
24663
  "decimals": 8,
24297
24664
  "name": "TUSD / USD"
24298
24665
  },
24666
+ {
24667
+ "contractAddress": "0xF32Aaecb1909EB672E96522e979c3c5b76a438bB",
24668
+ "proxyAddress": "0xCF9752295D0ac9215461fA095faFEC1B854b849B",
24669
+ "decimals": 8,
24670
+ "name": "EURC / USD"
24671
+ },
24299
24672
  {
24300
24673
  "contractAddress": "0xF5038dD0aBB1aCD297f69494F66a0adF7Bb1B7D2",
24301
24674
  "proxyAddress": "0xc6984fF1047Ddd0AB52D2dFa78381CC677921A85",
@@ -25128,6 +25501,12 @@ var chainlinkFeeds = {
25128
25501
  "decimals": 8,
25129
25502
  "name": "MKR / USD"
25130
25503
  },
25504
+ {
25505
+ "contractAddress": "0xA6D08e6F2b20707D79801Ff419091265DDDCBb58",
25506
+ "proxyAddress": "0xc43861646Cdc051D04CA0c9dF2265FFcFa0dF6f3",
25507
+ "decimals": 18,
25508
+ "name": "MATICX / USD Calculated"
25509
+ },
25131
25510
  {
25132
25511
  "contractAddress": "0xC3e5dDD4f98cDFfaF77685e340FF5c32d7282C5C",
25133
25512
  "proxyAddress": "0xD73a74314AcCb53b30cAfDA0cb61c9772B57C4a2",
@@ -25352,6 +25731,12 @@ var chainlinkFeeds = {
25352
25731
  "decimals": 18,
25353
25732
  "name": "ultraETHs / ETH Exchange Rate"
25354
25733
  },
25734
+ {
25735
+ "contractAddress": "0x5EE2db6D1660CcB518041706d8068F7Bc343ac3c",
25736
+ "proxyAddress": "0xc0068A2F7e4847DF9C3A34B27CCc07b7e15e0458",
25737
+ "decimals": 8,
25738
+ "name": "COMP / USD"
25739
+ },
25355
25740
  {
25356
25741
  "contractAddress": "0x6f0D003A0743F5acea5680B1D128bd433B07ffCE",
25357
25742
  "proxyAddress": "0xEEDF0B095B5dfe75F3881Cb26c19DA209A27463a",
@@ -25693,6 +26078,89 @@ var chainlinkFeeds = {
25693
26078
  ]
25694
26079
  };
25695
26080
 
26081
+ // src/ecosystem/generated/hyperRPC.ts
26082
+ var hyperRPCSupportedNetworks = [
26083
+ 645749,
26084
+ 1923,
26085
+ 130,
26086
+ 33111,
26087
+ 50002,
26088
+ 1868,
26089
+ 1750,
26090
+ 100,
26091
+ 42170,
26092
+ 51,
26093
+ 2741,
26094
+ 57073,
26095
+ 8453,
26096
+ 531050104,
26097
+ 1,
26098
+ 10200,
26099
+ 7e3,
26100
+ 48900,
26101
+ 1301,
26102
+ 10143,
26103
+ 59144,
26104
+ 11155420,
26105
+ 80094,
26106
+ 80084,
26107
+ 5e3,
26108
+ 6342,
26109
+ 2810,
26110
+ 80002,
26111
+ 10,
26112
+ 50,
26113
+ 42220,
26114
+ 100,
26115
+ 204,
26116
+ 480,
26117
+ 43113,
26118
+ 81457,
26119
+ 97,
26120
+ 43114,
26121
+ 17864,
26122
+ 252,
26123
+ 146,
26124
+ 42,
26125
+ 1,
26126
+ 4201,
26127
+ 148,
26128
+ 9889,
26129
+ 7225878,
26130
+ 7560,
26131
+ 84532,
26132
+ 5330,
26133
+ 168587773,
26134
+ 14,
26135
+ 1101,
26136
+ 11155111,
26137
+ 7777777,
26138
+ 137,
26139
+ 5115,
26140
+ 8888,
26141
+ 1287,
26142
+ 255,
26143
+ 1135,
26144
+ 34443,
26145
+ 30,
26146
+ 4200,
26147
+ 288,
26148
+ 696969,
26149
+ 17e3,
26150
+ 421614,
26151
+ 2818,
26152
+ 56,
26153
+ 324,
26154
+ 16666e5,
26155
+ 50104,
26156
+ 534352,
26157
+ 42161,
26158
+ 250,
26159
+ 1313161554,
26160
+ 1284,
26161
+ 169
26162
+ ];
26163
+
25696
26164
  // src/operations/diffCode.ts
25697
26165
  var import_diff = require("diff");
25698
26166
  var import_standalone = require("prettier/standalone");
@@ -26077,6 +26545,7 @@ function diffFoundryStorageLayout(layoutBefore, layoutAfter) {
26077
26545
  getExplicitRPC,
26078
26546
  getExplorer,
26079
26547
  getGovernance,
26548
+ getHyperRPC,
26080
26549
  getImplementationSlot,
26081
26550
  getLogsRecursive,
26082
26551
  getMarketReferenceCurrencyAndUsdBalance,
@@ -26093,6 +26562,7 @@ function diffFoundryStorageLayout(layoutBefore, layoutAfter) {
26093
26562
  getReserveConfigurations,
26094
26563
  getReserveTokens,
26095
26564
  getSourceCode,
26565
+ hyperRPCSupportedNetworks,
26096
26566
  isPayloadFinal,
26097
26567
  isProposalFinal,
26098
26568
  makePayloadExecutableOnTestClient,