@bgd-labs/toolbox 0.0.15 → 0.0.17

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/index.js CHANGED
@@ -97,6 +97,7 @@ __export(index_exports, {
97
97
  getExplicitRPC: () => getExplicitRPC,
98
98
  getExplorer: () => getExplorer,
99
99
  getGovernance: () => getGovernance,
100
+ getHyperRPC: () => getHyperRPC,
100
101
  getImplementationSlot: () => getImplementationSlot,
101
102
  getLogsRecursive: () => getLogsRecursive,
102
103
  getMarketReferenceCurrencyAndUsdBalance: () => getMarketReferenceCurrencyAndUsdBalance,
@@ -113,6 +114,7 @@ __export(index_exports, {
113
114
  getReserveConfigurations: () => getReserveConfigurations,
114
115
  getReserveTokens: () => getReserveTokens,
115
116
  getSourceCode: () => getSourceCode,
117
+ hyperRPCSupportedNetworks: () => hyperRPCSupportedNetworks,
116
118
  isPayloadFinal: () => isPayloadFinal,
117
119
  isProposalFinal: () => isProposalFinal,
118
120
  makePayloadExecutableOnTestClient: () => makePayloadExecutableOnTestClient,
@@ -11151,7 +11153,7 @@ async function getReserveConfigurations(client, pool, reserves) {
11151
11153
  };
11152
11154
  }
11153
11155
 
11154
- // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.15.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IPayloadsControllerCore.mjs
11156
+ // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.21.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IPayloadsControllerCore.mjs
11155
11157
  var IPayloadsControllerCore_ABI = [
11156
11158
  {
11157
11159
  type: "function",
@@ -11656,7 +11658,7 @@ var IPayloadsControllerCore_ABI = [
11656
11658
  }
11657
11659
  ];
11658
11660
 
11659
- // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.15.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IGovernanceCore.mjs
11661
+ // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.21.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IGovernanceCore.mjs
11660
11662
  var IGovernanceCore_ABI = [
11661
11663
  {
11662
11664
  type: "function",
@@ -13268,6 +13270,10 @@ var routescanExplorers = {
13268
13270
  api: "https://api.routescan.io/v2/network/testnet/evm/987/etherscan",
13269
13271
  explorer: "987.routescan.io"
13270
13272
  },
13273
+ 999: {
13274
+ api: "https://api.routescan.io/v2/network/mainnet/evm/999/etherscan",
13275
+ explorer: "999.routescan.io"
13276
+ },
13271
13277
  1010: {
13272
13278
  api: "https://api.routescan.io/v2/network/mainnet/evm/1010/etherscan",
13273
13279
  explorer: "1010.routescan.io"
@@ -13368,6 +13374,10 @@ var routescanExplorers = {
13368
13374
  api: "https://api.routescan.io/v2/network/testnet/evm/3636/etherscan",
13369
13375
  explorer: "3636.routescan.io"
13370
13376
  },
13377
+ 3637: {
13378
+ api: "https://api.routescan.io/v2/network/mainnet/evm/3637/etherscan",
13379
+ explorer: "3637.routescan.io"
13380
+ },
13371
13381
  3939: {
13372
13382
  api: "https://api.routescan.io/v2/network/testnet/evm/3939/etherscan",
13373
13383
  explorer: "3939.routescan.io"
@@ -13828,6 +13838,10 @@ var routescanExplorers = {
13828
13838
  api: "https://api.routescan.io/v2/network/testnet/evm/11155931/etherscan",
13829
13839
  explorer: "11155931.routescan.io"
13830
13840
  },
13841
+ 12345678: {
13842
+ api: "https://api.routescan.io/v2/network/mainnet/evm/12345678/etherscan",
13843
+ explorer: "12345678.routescan.io"
13844
+ },
13831
13845
  13068200: {
13832
13846
  api: "https://api.routescan.io/v2/network/testnet/evm/13068200/etherscan",
13833
13847
  explorer: "13068200.routescan.io"
@@ -14003,6 +14017,7 @@ async function tenderly_createVnet({
14003
14017
  response = await createVnet();
14004
14018
  }
14005
14019
  if (response.error) {
14020
+ console.error(`Error: ${response.error.message}`);
14006
14021
  throw new Error("Tenderly vnet could not be created");
14007
14022
  }
14008
14023
  const rpc = response.rpcs.find(
@@ -14107,8 +14122,18 @@ var ChainList = {
14107
14122
  [ChainId.mainnet]: import_chains.mainnet,
14108
14123
  [ChainId.polygon]: import_chains.polygon,
14109
14124
  [ChainId.polygon_amoy]: import_chains.polygonAmoy,
14110
- [ChainId.avalanche]: import_chains.avalanche,
14111
- [ChainId.avalanche_fuji]: import_chains.avalancheFuji,
14125
+ [ChainId.avalanche]: {
14126
+ ...import_chains.avalanche,
14127
+ blockExplorers: {
14128
+ default: { url: "https://snowscan.xyz", name: "Snowscan" }
14129
+ }
14130
+ },
14131
+ [ChainId.avalanche_fuji]: {
14132
+ ...import_chains.avalancheFuji,
14133
+ blockExplorers: {
14134
+ default: { url: "https://testnet.snowscan.xyz", name: "Snowscan Fuji" }
14135
+ }
14136
+ },
14112
14137
  [ChainId.arbitrum]: import_chains.arbitrum,
14113
14138
  [ChainId.arbitrum_sepolia]: import_chains.arbitrumSepolia,
14114
14139
  [ChainId.fantom]: import_chains.fantom,
@@ -14163,14 +14188,16 @@ var alchemyNetworkMap = {
14163
14188
  1088: "metis-mainnet",
14164
14189
  1101: "polygonzkevm-mainnet",
14165
14190
  1301: "unichain-sepolia",
14191
+ 1315: "story-aeneid",
14166
14192
  1328: "sei-testnet",
14167
14193
  1329: "sei-mainnet",
14194
+ 1514: "story-mainnet",
14168
14195
  1868: "soneium-mainnet",
14169
14196
  1946: "soneium-minato",
14170
14197
  2020: "ronin-mainnet",
14171
14198
  2021: "ronin-saigon",
14172
14199
  2442: "polygonzkevm-cardona",
14173
- 2522: "frax-sepolia",
14200
+ 2523: "frax-sepolia",
14174
14201
  2741: "abstract-mainnet",
14175
14202
  4002: "fantom-testnet",
14176
14203
  4157: "crossfi-testnet",
@@ -14182,10 +14209,11 @@ var alchemyNetworkMap = {
14182
14209
  5371: "settlus-mainnet",
14183
14210
  5373: "settlus-septestnet",
14184
14211
  5611: "opbnb-testnet",
14212
+ 6342: "megaeth-testnet",
14213
+ 6900: "anime-sepolia",
14185
14214
  7e3: "zetachain-mainnet",
14186
14215
  7001: "zetachain-testnet",
14187
14216
  8008: "polynomial-mainnet",
14188
- 8009: "polynomial-sepolia",
14189
14217
  8453: "base-mainnet",
14190
14218
  10143: "monad-testnet",
14191
14219
  10200: "gnosis-chiado",
@@ -14207,9 +14235,9 @@ var alchemyNetworkMap = {
14207
14235
  57073: "ink-mainnet",
14208
14236
  59141: "linea-sepolia",
14209
14237
  59144: "linea-mainnet",
14210
- 62320: "celo-baklava",
14211
- 63157: "geist-mainnet",
14238
+ 69e3: "anime-mainnet",
14212
14239
  80002: "polygon-amoy",
14240
+ 80008: "polynomial-sepolia",
14213
14241
  80069: "berachain-bepolia",
14214
14242
  80094: "berachain-mainnet",
14215
14243
  81457: "blast-mainnet",
@@ -14218,7 +14246,6 @@ var alchemyNetworkMap = {
14218
14246
  534351: "scroll-sepolia",
14219
14247
  534352: "scroll-mainnet",
14220
14248
  560048: "eth-hoodi",
14221
- 631571: "geist-polter",
14222
14249
  685685: "gensyn-testnet",
14223
14250
  763373: "ink-sepolia",
14224
14251
  7777777: "zora-mainnet",
@@ -14229,7 +14256,8 @@ var alchemyNetworkMap = {
14229
14256
  666666666: "degen-mainnet",
14230
14257
  994873017: "lumia-prism",
14231
14258
  999999999: "zora-sepolia",
14232
- 1952959480: "lumia-testnet"
14259
+ 1952959480: "lumia-testnet",
14260
+ "null": "sui-testnet"
14233
14261
  };
14234
14262
 
14235
14263
  // src/ecosystem/generated/quicknodeNetworkMap.ts
@@ -14371,6 +14399,12 @@ function getPublicRpc(chainId) {
14371
14399
  throw new Error(`No default public rpc for '${chainId}' configured.`);
14372
14400
  return publicRpc;
14373
14401
  }
14402
+ function getHyperRPC(chainId) {
14403
+ if (hyperRPCSupportedNetworks.includes(chainId)) {
14404
+ return `https://${chainId}.rpc.hypersync.xyz`;
14405
+ }
14406
+ throw new Error(`HyperRPC is not supported for '${chainId}'`);
14407
+ }
14374
14408
  function getQuicknodeRpc(chainId, options) {
14375
14409
  const quickNodeSlug = quicknodeNetworkMap[chainId];
14376
14410
  if (!quickNodeSlug) {
@@ -14684,6 +14718,7 @@ function priceUpdateDecoder(receiver, calldata) {
14684
14718
  ],
14685
14719
  data: calldata
14686
14720
  });
14721
+ console.log(transmitParams);
14687
14722
  const report = (0, import_viem8.decodeAbiParameters)(
14688
14723
  [
14689
14724
  { name: "observationsTimestamp", type: "uint32" },
@@ -14693,11 +14728,13 @@ function priceUpdateDecoder(receiver, calldata) {
14693
14728
  ],
14694
14729
  transmitParams.args[1]
14695
14730
  );
14696
- if (report[2].length)
14731
+ console.log("report", report);
14732
+ if (report[2].length) {
14697
14733
  return {
14698
14734
  receiver,
14699
14735
  answer: report[2][Math.floor(report[2].length / 2)]
14700
14736
  };
14737
+ }
14701
14738
  } catch (e) {
14702
14739
  console.log("could not decode event (which probably is fine)");
14703
14740
  }
@@ -15211,6 +15248,12 @@ var chainlinkFeeds = {
15211
15248
  "decimals": 8,
15212
15249
  "name": "SKY / USD"
15213
15250
  },
15251
+ {
15252
+ "contractAddress": "0x646772c691b2a84CA889f55253C560D38E3766e1",
15253
+ "proxyAddress": "0xF0d9bb015Cd7BfAb877B7156146dc09Bf461370d",
15254
+ "decimals": 8,
15255
+ "name": "USD1 / USD"
15256
+ },
15214
15257
  {
15215
15258
  "contractAddress": "0x64DEE1Bc46e817ed93dEA4815F071B20eD218E39",
15216
15259
  "proxyAddress": "0xa81FE04086865e63E12dD3776978E49DEEa2ea4e",
@@ -15290,6 +15333,12 @@ var chainlinkFeeds = {
15290
15333
  "decimals": 8,
15291
15334
  "name": "USR / USD"
15292
15335
  },
15336
+ {
15337
+ "contractAddress": "0x78281937B869bAaDedDdA3d62fC4b6Fc0a196b61",
15338
+ "proxyAddress": "0x2D27d9e1b74936D8E83c4BA118F09A4c4a897f62",
15339
+ "decimals": 8,
15340
+ "name": "SXT / USD"
15341
+ },
15293
15342
  {
15294
15343
  "contractAddress": "0x786ba26Ee47097E6A5086E742aEf5Efbc6A93447",
15295
15344
  "proxyAddress": "0x9656D3A00402bD9c18EeF89b29ca6810734ABCAd",
@@ -15592,6 +15641,12 @@ var chainlinkFeeds = {
15592
15641
  "decimals": 8,
15593
15642
  "name": "WBTC / BTC"
15594
15643
  },
15644
+ {
15645
+ "contractAddress": "0xA618f119504455762c9bBbcE4aC9EE7fde457d05",
15646
+ "proxyAddress": null,
15647
+ "decimals": 0,
15648
+ "name": "sUSDe-USDe Exchange Rate"
15649
+ },
15595
15650
  {
15596
15651
  "contractAddress": "0xA618f119504455762c9bBbcE4aC9EE7fde457d05",
15597
15652
  "proxyAddress": null,
@@ -15628,6 +15683,12 @@ var chainlinkFeeds = {
15628
15683
  "decimals": 18,
15629
15684
  "name": "CELO/USD-RefPrice-DF-stream-EthereumMainnet-001"
15630
15685
  },
15686
+ {
15687
+ "contractAddress": "0xA618f119504455762c9bBbcE4aC9EE7fde457d05",
15688
+ "proxyAddress": null,
15689
+ "decimals": 18,
15690
+ "name": "CAKE/USD-RefPrice-DF-stream-EthereumMainnet-001"
15691
+ },
15631
15692
  {
15632
15693
  "contractAddress": "0xA618f119504455762c9bBbcE4aC9EE7fde457d05",
15633
15694
  "proxyAddress": null,
@@ -15670,6 +15731,12 @@ var chainlinkFeeds = {
15670
15731
  "decimals": 18,
15671
15732
  "name": "USDC/USD-RefPrice-DF-stream-EthereumMainnet-001"
15672
15733
  },
15734
+ {
15735
+ "contractAddress": "0xA674a0fD742F37BD5077AFc90D1E82485c91989C",
15736
+ "proxyAddress": "0x04F84020Fdf10d9ee64D1dcC2986EDF2F556DA11",
15737
+ "decimals": 8,
15738
+ "name": "EURC / USD"
15739
+ },
15673
15740
  {
15674
15741
  "contractAddress": "0xA9845307Bb5F5637B136Ca70914746d1bb7d402a",
15675
15742
  "proxyAddress": "0x14e613AC84a31f709eadbdF89C6CC390fDc9540A",
@@ -16185,6 +16252,12 @@ var chainlinkFeeds = {
16185
16252
  "decimals": 8,
16186
16253
  "name": "SUSD / USD"
16187
16254
  },
16255
+ {
16256
+ "contractAddress": "0x193285B1b49A085EbE60A4764Cd69525c4BF031B",
16257
+ "proxyAddress": "0x0805fAA94F056C06c2a69e115Aa7633EfD3efDca",
16258
+ "decimals": 8,
16259
+ "name": "ALETH / USD"
16260
+ },
16188
16261
  {
16189
16262
  "contractAddress": "0x19BcA7C81f3ed561a49326b78468EaC64D0E8F2a",
16190
16263
  "proxyAddress": "0xee35A95c9a064491531493D8b380bC40A4CCd0Da",
@@ -16311,12 +16384,6 @@ var chainlinkFeeds = {
16311
16384
  "decimals": 8,
16312
16385
  "name": "APE / USD"
16313
16386
  },
16314
- {
16315
- "contractAddress": "0x397c2082dA7A0962A4FBF14e62E72dbCefB7a7Dc",
16316
- "proxyAddress": "0x1520874FC216f5F07E03607303Df2Fda6C3Fc203",
16317
- "decimals": 8,
16318
- "name": "ZIL / USD"
16319
- },
16320
16387
  {
16321
16388
  "contractAddress": "0x3E313e778dA811F79A66570b8703c66204112Dfd",
16322
16389
  "proxyAddress": "0x34E0E85CeEc6be6146c4f0115769a29a9539222e",
@@ -16359,6 +16426,12 @@ var chainlinkFeeds = {
16359
16426
  "decimals": 8,
16360
16427
  "name": "MKR / USD"
16361
16428
  },
16429
+ {
16430
+ "contractAddress": "0x491A63E35688F90780fE57610679D0cfb91a43Fe",
16431
+ "proxyAddress": "0x30F6ffb911ac7B9aDF471f28366ce1826C05776e",
16432
+ "decimals": 8,
16433
+ "name": "USD1 / USD"
16434
+ },
16362
16435
  {
16363
16436
  "contractAddress": "0x4F6dFDFd4d68F68b2692E79f9e94796fC8015770",
16364
16437
  "proxyAddress": "0x0D276FC14719f9292D5C1eA2198673d1f4269246",
@@ -16665,6 +16738,12 @@ var chainlinkFeeds = {
16665
16738
  "decimals": 18,
16666
16739
  "name": "ynETHx / ETH Exchange Rate"
16667
16740
  },
16741
+ {
16742
+ "contractAddress": "0xA0aDEfAD7c8246E2BFaD900dC28539b8C0DC5703",
16743
+ "proxyAddress": "0x1520874FC216f5F07E03607303Df2Fda6C3Fc203",
16744
+ "decimals": 8,
16745
+ "name": "ZIL / USD"
16746
+ },
16668
16747
  {
16669
16748
  "contractAddress": "0xA2f199CDb286C716b4315Ee216192d8BDE617611",
16670
16749
  "proxyAddress": "0xf37c76163b2918bB4533579D449524F8542E64AD",
@@ -17237,6 +17316,12 @@ var chainlinkFeeds = {
17237
17316
  "decimals": 18,
17238
17317
  "name": "XVS / BNB"
17239
17318
  },
17319
+ {
17320
+ "contractAddress": "0x48dB0aDEABFaCc84d567CD520e48c1F677d05311",
17321
+ "proxyAddress": "0xaD8b4e59A7f25B68945fAf0f3a3EAF027832FFB0",
17322
+ "decimals": 8,
17323
+ "name": "USD1 / USD"
17324
+ },
17240
17325
  {
17241
17326
  "contractAddress": "0x4A406c886CEABcc54201ECa1fF1b84c1a62623E2",
17242
17327
  "proxyAddress": "0xD5c40f5144848Bd4EF08a9605d860e727b991513",
@@ -17477,6 +17562,12 @@ var chainlinkFeeds = {
17477
17562
  "decimals": 8,
17478
17563
  "name": "MS / USD"
17479
17564
  },
17565
+ {
17566
+ "contractAddress": "0x91d5fFD8e7060a137925ceD9ad80Dd1979254107",
17567
+ "proxyAddress": "0xE8ed18E29402CD223bC5B73D30e40CCdf7b72986",
17568
+ "decimals": 8,
17569
+ "name": "USR / USD"
17570
+ },
17480
17571
  {
17481
17572
  "contractAddress": "0x923f7aE6BC5FA488D82cFD9130ECE95cF6c975f4",
17482
17573
  "proxyAddress": "0x93A67D414896A280bF8FFB3b389fE3686E014fda",
@@ -19109,6 +19200,12 @@ var chainlinkFeeds = {
19109
19200
  "decimals": 18,
19110
19201
  "name": "wstkscBTC / stkscBTC Exchange Rate"
19111
19202
  },
19203
+ {
19204
+ "contractAddress": "0x7392f6179bda7eB9CAA608963544aA7a914D1fb9",
19205
+ "proxyAddress": "0x21f037F67946A199b1DBF1Cb7DFa21bFde477196",
19206
+ "decimals": 18,
19207
+ "name": "xSolvBTC / SolvBTC Exchange Rate"
19208
+ },
19112
19209
  {
19113
19210
  "contractAddress": "0x7fe2ADDE154eB97ad68D5aD70328a1DB13701Bc2",
19114
19211
  "proxyAddress": "0x824364077993847f71293B24ccA8567c00c2de11",
@@ -19139,6 +19236,12 @@ var chainlinkFeeds = {
19139
19236
  "decimals": 8,
19140
19237
  "name": "SCUSD / USD"
19141
19238
  },
19239
+ {
19240
+ "contractAddress": "0xA0259d0e5f4C451326921Ef9B990A52403F9C216",
19241
+ "proxyAddress": "0x0fceF1123FDBEdC89a0189B15D35B7A33B7694c0",
19242
+ "decimals": 8,
19243
+ "name": "EUR / USD"
19244
+ },
19142
19245
  {
19143
19246
  "contractAddress": "0xB70b802953462312A47c857b940991108F8d43De",
19144
19247
  "proxyAddress": "0x790181e93e9F4Eedb5b864860C12e4d2CffFe73B",
@@ -19199,6 +19302,12 @@ var chainlinkFeeds = {
19199
19302
  "decimals": 8,
19200
19303
  "name": "EURC / USD"
19201
19304
  },
19305
+ {
19306
+ "contractAddress": "0xc7E2Ac28F7cdB250aEe24E1bfadd5FfbC234C979",
19307
+ "proxyAddress": "0xB6D739Ba498a0D8d1e92F81345B764C995Cc4882",
19308
+ "decimals": 8,
19309
+ "name": "USD1 / USD"
19310
+ },
19202
19311
  {
19203
19312
  "contractAddress": "0xcdEb81F86ee3Fc0cF6cbF6505b5a624460777732",
19204
19313
  "proxyAddress": "0x960BDD1dFD20d7c98fa482D793C3dedD73A113a3",
@@ -19505,6 +19614,12 @@ var chainlinkFeeds = {
19505
19614
  "decimals": 8,
19506
19615
  "name": "solvBTC / BTC"
19507
19616
  },
19617
+ {
19618
+ "contractAddress": "0x291ad034EBFF630769F3b0584b7C2AA448818103",
19619
+ "proxyAddress": "0x251Ef178518aba5aa1df24713344EA1C6d9ccc67",
19620
+ "decimals": 8,
19621
+ "name": "USD1 / USD"
19622
+ },
19508
19623
  {
19509
19624
  "contractAddress": "0x304DD98fa8681aF2E32B0e252977a8662C0f431d",
19510
19625
  "proxyAddress": "0x6D414dC3F9D8822D947B737CA8F75b1c4d6C8542",
@@ -19517,6 +19632,12 @@ var chainlinkFeeds = {
19517
19632
  "decimals": 8,
19518
19633
  "name": "WBTC / USD"
19519
19634
  },
19635
+ {
19636
+ "contractAddress": "0x64F4855349188677016A052CcBECbbe07Cd741D3",
19637
+ "proxyAddress": "0x2580FA33f9dfD9D26F1aC418E09113f3E9c316c2",
19638
+ "decimals": 18,
19639
+ "name": "Calculated wstASTR / USD"
19640
+ },
19520
19641
  {
19521
19642
  "contractAddress": "0x7DCcF223c077e8D1e2297d7788Bb6E62af89dFc9",
19522
19643
  "proxyAddress": "0xF049354158e13F6794A3cCD236694E0e1BD9AF79",
@@ -19615,12 +19736,24 @@ var chainlinkFeeds = {
19615
19736
  "decimals": 18,
19616
19737
  "name": "ynETHx / ETH Exchange Rate"
19617
19738
  },
19739
+ {
19740
+ "contractAddress": "0x4606b8D331f07f8167d5bcD891Ff6a4eE984B8e4",
19741
+ "proxyAddress": "0xB16FcAFB8378baA0a69142a325878FDCad58606A",
19742
+ "decimals": 18,
19743
+ "name": "Calculated mETH / USD"
19744
+ },
19618
19745
  {
19619
19746
  "contractAddress": "0x4EE01a89530E481EcCF045642817cEF39184C02a",
19620
19747
  "proxyAddress": "0x6352E3A925E27130317d3A0A5b0b0303e9f2fc7c",
19621
19748
  "decimals": 18,
19622
19749
  "name": "mETH / ETH"
19623
19750
  },
19751
+ {
19752
+ "contractAddress": "0x874effca5376D434d49021B3638d1e1BC214EC27",
19753
+ "proxyAddress": "0x73b15e19b247263D03D7938f1356304b7B330Ff0",
19754
+ "decimals": 18,
19755
+ "name": "Calculated FBTC / USD"
19756
+ },
19624
19757
  {
19625
19758
  "contractAddress": "0xB16d5c70A9c062EF1604a517E4b80dE74670448D",
19626
19759
  "proxyAddress": "0x6d5110FB8F6a65c46B89a64C9ac7E3542D31AbA3",
@@ -20199,6 +20332,12 @@ var chainlinkFeeds = {
20199
20332
  "decimals": 18,
20200
20333
  "name": "CETH Reserves"
20201
20334
  },
20335
+ {
20336
+ "contractAddress": "0xCa1a4BdF7f9f8F8F281E311028dEa7e472a7A194",
20337
+ "proxyAddress": "0x4e7dB2f9a28348AB48a968dd4217D565D1F15Ba4",
20338
+ "decimals": 18,
20339
+ "name": "ynETHx / ETH Exchange Rate"
20340
+ },
20202
20341
  {
20203
20342
  "contractAddress": "0xD0407a6524C7d9075E0b040dCEf4696129B2C3B4",
20204
20343
  "proxyAddress": "0xeDC243c7E3c1A9dAf067C90641D2346d2694d2e5",
@@ -20441,6 +20580,12 @@ var chainlinkFeeds = {
20441
20580
  "decimals": 18,
20442
20581
  "name": "SKYAI/USD-RefPrice-mainnet-production"
20443
20582
  },
20583
+ {
20584
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20585
+ "proxyAddress": null,
20586
+ "decimals": 18,
20587
+ "name": "ACRED/USD-RefPrice-mainnet-production"
20588
+ },
20444
20589
  {
20445
20590
  "contractAddress": "0x0000000000000000000000000000000000000000",
20446
20591
  "proxyAddress": null,
@@ -20477,6 +20622,12 @@ var chainlinkFeeds = {
20477
20622
  "decimals": 18,
20478
20623
  "name": "TROLL/USD-RefPrice-mainnet-production"
20479
20624
  },
20625
+ {
20626
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20627
+ "proxyAddress": null,
20628
+ "decimals": 18,
20629
+ "name": "MYX/USD-RefPrice-mainnet-production"
20630
+ },
20480
20631
  {
20481
20632
  "contractAddress": "0x0000000000000000000000000000000000000000",
20482
20633
  "proxyAddress": null,
@@ -20525,6 +20676,12 @@ var chainlinkFeeds = {
20525
20676
  "decimals": 18,
20526
20677
  "name": "KYSOL/USD-RefPrice-mainnet-production"
20527
20678
  },
20679
+ {
20680
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20681
+ "proxyAddress": null,
20682
+ "decimals": 18,
20683
+ "name": "DEEP/USD-RefPrice-mainnet-production"
20684
+ },
20528
20685
  {
20529
20686
  "contractAddress": "0x0000000000000000000000000000000000000000",
20530
20687
  "proxyAddress": null,
@@ -20555,6 +20712,12 @@ var chainlinkFeeds = {
20555
20712
  "decimals": 18,
20556
20713
  "name": "AIXBT/USD-RefPrice-mainnet-staging"
20557
20714
  },
20715
+ {
20716
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20717
+ "proxyAddress": null,
20718
+ "decimals": 18,
20719
+ "name": "APU/USD-RefPrice-mainnet-production"
20720
+ },
20558
20721
  {
20559
20722
  "contractAddress": "0x0000000000000000000000000000000000000000",
20560
20723
  "proxyAddress": null,
@@ -20573,6 +20736,12 @@ var chainlinkFeeds = {
20573
20736
  "decimals": 18,
20574
20737
  "name": "SYN/USD-RefPrice-mainnet-production"
20575
20738
  },
20739
+ {
20740
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20741
+ "proxyAddress": null,
20742
+ "decimals": 18,
20743
+ "name": "CFG/USD-RefPrice-mainnet-production"
20744
+ },
20576
20745
  {
20577
20746
  "contractAddress": "0x0000000000000000000000000000000000000000",
20578
20747
  "proxyAddress": null,
@@ -20633,6 +20802,12 @@ var chainlinkFeeds = {
20633
20802
  "decimals": 18,
20634
20803
  "name": "BAL/USD-RefPrice-mainnet-production"
20635
20804
  },
20805
+ {
20806
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20807
+ "proxyAddress": null,
20808
+ "decimals": 18,
20809
+ "name": "WELL/USD-RefPrice-mainnet-production"
20810
+ },
20636
20811
  {
20637
20812
  "contractAddress": "0x0000000000000000000000000000000000000000",
20638
20813
  "proxyAddress": null,
@@ -20651,24 +20826,48 @@ var chainlinkFeeds = {
20651
20826
  "decimals": 18,
20652
20827
  "name": "AIXBT/USD-RefPrice-mainnet-production"
20653
20828
  },
20829
+ {
20830
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20831
+ "proxyAddress": null,
20832
+ "decimals": 18,
20833
+ "name": "GT/USD-RefPrice-mainnet-production"
20834
+ },
20654
20835
  {
20655
20836
  "contractAddress": "0x0000000000000000000000000000000000000000",
20656
20837
  "proxyAddress": null,
20657
20838
  "decimals": 18,
20658
20839
  "name": "CATI/USD-RefPrice-mainnet-production"
20659
20840
  },
20841
+ {
20842
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20843
+ "proxyAddress": null,
20844
+ "decimals": 18,
20845
+ "name": "CRO/USD-RefPrice-mainnet-production"
20846
+ },
20660
20847
  {
20661
20848
  "contractAddress": "0x0000000000000000000000000000000000000000",
20662
20849
  "proxyAddress": null,
20663
20850
  "decimals": 18,
20664
20851
  "name": "XPR/USD-RefPrice-mainnet-production"
20665
20852
  },
20853
+ {
20854
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20855
+ "proxyAddress": null,
20856
+ "decimals": 18,
20857
+ "name": "KAITO/USD-RefPrice-mainnet-production"
20858
+ },
20666
20859
  {
20667
20860
  "contractAddress": "0x0000000000000000000000000000000000000000",
20668
20861
  "proxyAddress": null,
20669
20862
  "decimals": 18,
20670
20863
  "name": "HNT/USD-RefPrice-mainnet-production"
20671
20864
  },
20865
+ {
20866
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20867
+ "proxyAddress": null,
20868
+ "decimals": 18,
20869
+ "name": "RSWETH/USD-RefPrice-mainnet-production"
20870
+ },
20672
20871
  {
20673
20872
  "contractAddress": "0x0000000000000000000000000000000000000000",
20674
20873
  "proxyAddress": null,
@@ -20705,6 +20904,18 @@ var chainlinkFeeds = {
20705
20904
  "decimals": 18,
20706
20905
  "name": "METIS/USD-RefPrice-mainnet-production"
20707
20906
  },
20907
+ {
20908
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20909
+ "proxyAddress": null,
20910
+ "decimals": 18,
20911
+ "name": "WBCOIN/USD-RefPrice-mainnet-production"
20912
+ },
20913
+ {
20914
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20915
+ "proxyAddress": null,
20916
+ "decimals": 18,
20917
+ "name": "BBSOL/USD-RefPrice-mainnet-production"
20918
+ },
20708
20919
  {
20709
20920
  "contractAddress": "0x0000000000000000000000000000000000000000",
20710
20921
  "proxyAddress": null,
@@ -20753,6 +20964,12 @@ var chainlinkFeeds = {
20753
20964
  "decimals": 18,
20754
20965
  "name": "LUSD/USD-RefPrice-mainnet-production"
20755
20966
  },
20967
+ {
20968
+ "contractAddress": "0x0000000000000000000000000000000000000000",
20969
+ "proxyAddress": null,
20970
+ "decimals": 18,
20971
+ "name": "FRXETH/USD-RefPrice-mainnet-production"
20972
+ },
20756
20973
  {
20757
20974
  "contractAddress": "0x0000000000000000000000000000000000000000",
20758
20975
  "proxyAddress": null,
@@ -20807,6 +21024,18 @@ var chainlinkFeeds = {
20807
21024
  "decimals": 18,
20808
21025
  "name": "wBTC/USD-RefPrice-mainnet-production"
20809
21026
  },
21027
+ {
21028
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21029
+ "proxyAddress": null,
21030
+ "decimals": 18,
21031
+ "name": "ROSE/USD-RefPrice-mainnet-production"
21032
+ },
21033
+ {
21034
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21035
+ "proxyAddress": null,
21036
+ "decimals": 18,
21037
+ "name": "USD1/USD-RefPrice-mainnet-production"
21038
+ },
20810
21039
  {
20811
21040
  "contractAddress": "0x0000000000000000000000000000000000000000",
20812
21041
  "proxyAddress": null,
@@ -20909,6 +21138,12 @@ var chainlinkFeeds = {
20909
21138
  "decimals": 18,
20910
21139
  "name": "DODO/USD-RefPrice-mainnet-staging"
20911
21140
  },
21141
+ {
21142
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21143
+ "proxyAddress": null,
21144
+ "decimals": 18,
21145
+ "name": "WAL/USD-RefPrice-mainnet-production"
21146
+ },
20912
21147
  {
20913
21148
  "contractAddress": "0x0000000000000000000000000000000000000000",
20914
21149
  "proxyAddress": null,
@@ -21005,6 +21240,12 @@ var chainlinkFeeds = {
21005
21240
  "decimals": 18,
21006
21241
  "name": "GLV [BTC-USDC]/USD-RefPrice-mainnet-production"
21007
21242
  },
21243
+ {
21244
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21245
+ "proxyAddress": null,
21246
+ "decimals": 18,
21247
+ "name": "HUBSOL/USD-RefPrice-mainnet-production"
21248
+ },
21008
21249
  {
21009
21250
  "contractAddress": "0x0000000000000000000000000000000000000000",
21010
21251
  "proxyAddress": null,
@@ -21017,6 +21258,12 @@ var chainlinkFeeds = {
21017
21258
  "decimals": 18,
21018
21259
  "name": "XDC/USD-RefPrice-mainnet-staging"
21019
21260
  },
21261
+ {
21262
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21263
+ "proxyAddress": null,
21264
+ "decimals": 18,
21265
+ "name": "SEND/USD-RefPrice-mainnet-production"
21266
+ },
21020
21267
  {
21021
21268
  "contractAddress": "0x0000000000000000000000000000000000000000",
21022
21269
  "proxyAddress": null,
@@ -21053,6 +21300,12 @@ var chainlinkFeeds = {
21053
21300
  "decimals": 18,
21054
21301
  "name": "DYM/USD-RefPrice-mainnet-staging"
21055
21302
  },
21303
+ {
21304
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21305
+ "proxyAddress": null,
21306
+ "decimals": 18,
21307
+ "name": "SWETH/USD-RefPrice-mainnet-production"
21308
+ },
21056
21309
  {
21057
21310
  "contractAddress": "0x0000000000000000000000000000000000000000",
21058
21311
  "proxyAddress": null,
@@ -21155,6 +21408,30 @@ var chainlinkFeeds = {
21155
21408
  "decimals": 18,
21156
21409
  "name": "GLV [BTC-USDC]/USD-RefPrice-mainnet-staging"
21157
21410
  },
21411
+ {
21412
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21413
+ "proxyAddress": null,
21414
+ "decimals": 18,
21415
+ "name": "METH/USD-RefPrice-mainnet-production"
21416
+ },
21417
+ {
21418
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21419
+ "proxyAddress": null,
21420
+ "decimals": 18,
21421
+ "name": "LST/USD-RefPrice-mainnet-production"
21422
+ },
21423
+ {
21424
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21425
+ "proxyAddress": null,
21426
+ "decimals": 18,
21427
+ "name": "TWT/USD-RefPrice-mainnet-production"
21428
+ },
21429
+ {
21430
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21431
+ "proxyAddress": null,
21432
+ "decimals": 18,
21433
+ "name": "SUSDS/USD-RefPrice-mainnet-production"
21434
+ },
21158
21435
  {
21159
21436
  "contractAddress": "0x0000000000000000000000000000000000000000",
21160
21437
  "proxyAddress": null,
@@ -21293,6 +21570,12 @@ var chainlinkFeeds = {
21293
21570
  "decimals": 18,
21294
21571
  "name": "HYPE/USD-RefPrice-mainnet-staging"
21295
21572
  },
21573
+ {
21574
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21575
+ "proxyAddress": null,
21576
+ "decimals": 18,
21577
+ "name": "KAS/USD-RefPrice-mainnet-production"
21578
+ },
21296
21579
  {
21297
21580
  "contractAddress": "0x0000000000000000000000000000000000000000",
21298
21581
  "proxyAddress": null,
@@ -21437,6 +21720,12 @@ var chainlinkFeeds = {
21437
21720
  "decimals": 18,
21438
21721
  "name": "WEN/USD-RefPrice-mainnet-production"
21439
21722
  },
21723
+ {
21724
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21725
+ "proxyAddress": null,
21726
+ "decimals": 18,
21727
+ "name": "BLUE/USD-RefPrice-mainnet-production"
21728
+ },
21440
21729
  {
21441
21730
  "contractAddress": "0x0000000000000000000000000000000000000000",
21442
21731
  "proxyAddress": null,
@@ -21455,6 +21744,12 @@ var chainlinkFeeds = {
21455
21744
  "decimals": 18,
21456
21745
  "name": "KUDAI/USD-RefPrice-mainnet-production"
21457
21746
  },
21747
+ {
21748
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21749
+ "proxyAddress": null,
21750
+ "decimals": 18,
21751
+ "name": "ZBCN/USD-RefPrice-mainnet-production"
21752
+ },
21458
21753
  {
21459
21754
  "contractAddress": "0x0000000000000000000000000000000000000000",
21460
21755
  "proxyAddress": null,
@@ -21479,6 +21774,12 @@ var chainlinkFeeds = {
21479
21774
  "decimals": 18,
21480
21775
  "name": "BAT/USD-RefPrice-mainnet-production"
21481
21776
  },
21777
+ {
21778
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21779
+ "proxyAddress": null,
21780
+ "decimals": 18,
21781
+ "name": "TOSHI/USD-RefPrice-mainnet-production"
21782
+ },
21482
21783
  {
21483
21784
  "contractAddress": "0x0000000000000000000000000000000000000000",
21484
21785
  "proxyAddress": null,
@@ -21497,6 +21798,54 @@ var chainlinkFeeds = {
21497
21798
  "decimals": 18,
21498
21799
  "name": "SPX/USD-RefPrice-mainnet-staging"
21499
21800
  },
21801
+ {
21802
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21803
+ "proxyAddress": null,
21804
+ "decimals": 18,
21805
+ "name": "SOL/USDT-Binance-FundingRate-mainnet-staging"
21806
+ },
21807
+ {
21808
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21809
+ "proxyAddress": null,
21810
+ "decimals": 18,
21811
+ "name": "ETH/USDT-Deribit-FundingRate-mainnet-staging"
21812
+ },
21813
+ {
21814
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21815
+ "proxyAddress": null,
21816
+ "decimals": 18,
21817
+ "name": "BTC/USDT-Deribit-FundingRate-mainnet-staging"
21818
+ },
21819
+ {
21820
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21821
+ "proxyAddress": null,
21822
+ "decimals": 18,
21823
+ "name": "ETH/USDT-Binance-FundingRate-mainnet-staging"
21824
+ },
21825
+ {
21826
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21827
+ "proxyAddress": null,
21828
+ "decimals": 18,
21829
+ "name": "AERGO/USDT-Binance-FundingRate-mainnet-staging"
21830
+ },
21831
+ {
21832
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21833
+ "proxyAddress": null,
21834
+ "decimals": 18,
21835
+ "name": "BTC/USDT-Binance-FundingRate-mainnet-staging"
21836
+ },
21837
+ {
21838
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21839
+ "proxyAddress": null,
21840
+ "decimals": 18,
21841
+ "name": "BTC-ETH-SOL-USDC-USDT/USD-RefPrice-mainnet-production"
21842
+ },
21843
+ {
21844
+ "contractAddress": "0x0000000000000000000000000000000000000000",
21845
+ "proxyAddress": null,
21846
+ "decimals": 18,
21847
+ "name": "SYRUPUSDC/USDC-ExRate-mainnet-production"
21848
+ },
21500
21849
  {
21501
21850
  "contractAddress": "0x01DD3Cf6118069DB13A2d64d7e1A09FECd587EDD",
21502
21851
  "proxyAddress": "0x8d0CC5f38f9E802475f2CFf4F9fc7000C2E1557c",
@@ -21581,6 +21930,12 @@ var chainlinkFeeds = {
21581
21930
  "decimals": 8,
21582
21931
  "name": "USDS / USD"
21583
21932
  },
21933
+ {
21934
+ "contractAddress": "0x15cDF4FdbC7BD5207B8ba0960731e013e49c5bA9",
21935
+ "proxyAddress": "0xcAc0138592090762385CCB7bb94C9401F734Eb30",
21936
+ "decimals": 8,
21937
+ "name": "USD1 / USD"
21938
+ },
21584
21939
  {
21585
21940
  "contractAddress": "0x17298e460F18f1380fe5Ed68985A566949B91d20",
21586
21941
  "proxyAddress": "0x17d8D87dF3E279c737568aB0C5cC3fF750aB763e",
@@ -21659,6 +22014,12 @@ var chainlinkFeeds = {
21659
22014
  "decimals": 8,
21660
22015
  "name": "USDC / USD"
21661
22016
  },
22017
+ {
22018
+ "contractAddress": "0x29ef0aE1eDb5764b5bd2ff3a605b5d4Eb39a0d63",
22019
+ "proxyAddress": "0x5F25Ea8Cf2a3aB12E4D6fB58FB63C7938473B036",
22020
+ "decimals": 10,
22021
+ "name": "aBTC PoR"
22022
+ },
21662
22023
  {
21663
22024
  "contractAddress": "0x2C50f2Fe9427d120DEA2eb804c148d2780519d59",
21664
22025
  "proxyAddress": "0x221912ce795669f628c51c69b7d0873eDA9C03bB",
@@ -22298,7 +22659,7 @@ var chainlinkFeeds = {
22298
22659
  {
22299
22660
  "contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
22300
22661
  "proxyAddress": null,
22301
- "decimals": 18,
22662
+ "decimals": 0,
22302
22663
  "name": "wstETH/USD-RefPrice-DSstaging-Premium-Global-003"
22303
22664
  },
22304
22665
  {
@@ -24275,6 +24636,12 @@ var chainlinkFeeds = {
24275
24636
  "decimals": 8,
24276
24637
  "name": "TRUMP / USD"
24277
24638
  },
24639
+ {
24640
+ "contractAddress": "0xDB99d80bD3aE8dae5d929493Ddf696196f7f59f2",
24641
+ "proxyAddress": "0xd9344493d99153Ad4353D604A1d80d4089004c5D",
24642
+ "decimals": 8,
24643
+ "name": "zBTC PoR"
24644
+ },
24278
24645
  {
24279
24646
  "contractAddress": "0xDf8a3fc9bC6fA89F1b630e58f6eB4b874f24C165",
24280
24647
  "proxyAddress": "0x3A917e6B5732dFCc4A45257e3930979fAE6a3737",
@@ -24293,6 +24660,12 @@ var chainlinkFeeds = {
24293
24660
  "decimals": 8,
24294
24661
  "name": "TUSD / USD"
24295
24662
  },
24663
+ {
24664
+ "contractAddress": "0xF32Aaecb1909EB672E96522e979c3c5b76a438bB",
24665
+ "proxyAddress": "0xCF9752295D0ac9215461fA095faFEC1B854b849B",
24666
+ "decimals": 8,
24667
+ "name": "EURC / USD"
24668
+ },
24296
24669
  {
24297
24670
  "contractAddress": "0xF5038dD0aBB1aCD297f69494F66a0adF7Bb1B7D2",
24298
24671
  "proxyAddress": "0xc6984fF1047Ddd0AB52D2dFa78381CC677921A85",
@@ -25125,6 +25498,12 @@ var chainlinkFeeds = {
25125
25498
  "decimals": 8,
25126
25499
  "name": "MKR / USD"
25127
25500
  },
25501
+ {
25502
+ "contractAddress": "0xA6D08e6F2b20707D79801Ff419091265DDDCBb58",
25503
+ "proxyAddress": "0xc43861646Cdc051D04CA0c9dF2265FFcFa0dF6f3",
25504
+ "decimals": 18,
25505
+ "name": "MATICX / USD Calculated"
25506
+ },
25128
25507
  {
25129
25508
  "contractAddress": "0xC3e5dDD4f98cDFfaF77685e340FF5c32d7282C5C",
25130
25509
  "proxyAddress": "0xD73a74314AcCb53b30cAfDA0cb61c9772B57C4a2",
@@ -25349,6 +25728,12 @@ var chainlinkFeeds = {
25349
25728
  "decimals": 18,
25350
25729
  "name": "ultraETHs / ETH Exchange Rate"
25351
25730
  },
25731
+ {
25732
+ "contractAddress": "0x5EE2db6D1660CcB518041706d8068F7Bc343ac3c",
25733
+ "proxyAddress": "0xc0068A2F7e4847DF9C3A34B27CCc07b7e15e0458",
25734
+ "decimals": 8,
25735
+ "name": "COMP / USD"
25736
+ },
25352
25737
  {
25353
25738
  "contractAddress": "0x6f0D003A0743F5acea5680B1D128bd433B07ffCE",
25354
25739
  "proxyAddress": "0xEEDF0B095B5dfe75F3881Cb26c19DA209A27463a",
@@ -25690,6 +26075,89 @@ var chainlinkFeeds = {
25690
26075
  ]
25691
26076
  };
25692
26077
 
26078
+ // src/ecosystem/generated/hyperRPC.ts
26079
+ var hyperRPCSupportedNetworks = [
26080
+ 645749,
26081
+ 1923,
26082
+ 130,
26083
+ 33111,
26084
+ 50002,
26085
+ 1868,
26086
+ 1750,
26087
+ 100,
26088
+ 42170,
26089
+ 51,
26090
+ 2741,
26091
+ 57073,
26092
+ 8453,
26093
+ 531050104,
26094
+ 1,
26095
+ 10200,
26096
+ 7e3,
26097
+ 48900,
26098
+ 1301,
26099
+ 10143,
26100
+ 59144,
26101
+ 11155420,
26102
+ 80094,
26103
+ 80084,
26104
+ 5e3,
26105
+ 6342,
26106
+ 2810,
26107
+ 80002,
26108
+ 10,
26109
+ 50,
26110
+ 42220,
26111
+ 100,
26112
+ 204,
26113
+ 480,
26114
+ 43113,
26115
+ 81457,
26116
+ 97,
26117
+ 43114,
26118
+ 17864,
26119
+ 252,
26120
+ 146,
26121
+ 42,
26122
+ 1,
26123
+ 4201,
26124
+ 148,
26125
+ 9889,
26126
+ 7225878,
26127
+ 7560,
26128
+ 84532,
26129
+ 5330,
26130
+ 168587773,
26131
+ 14,
26132
+ 1101,
26133
+ 11155111,
26134
+ 7777777,
26135
+ 137,
26136
+ 5115,
26137
+ 8888,
26138
+ 1287,
26139
+ 255,
26140
+ 1135,
26141
+ 34443,
26142
+ 30,
26143
+ 4200,
26144
+ 288,
26145
+ 696969,
26146
+ 17e3,
26147
+ 421614,
26148
+ 2818,
26149
+ 56,
26150
+ 324,
26151
+ 16666e5,
26152
+ 50104,
26153
+ 534352,
26154
+ 42161,
26155
+ 250,
26156
+ 1313161554,
26157
+ 1284,
26158
+ 169
26159
+ ];
26160
+
25693
26161
  // src/operations/diffCode.ts
25694
26162
  var import_diff = require("diff");
25695
26163
  var import_standalone = require("prettier/standalone");
@@ -26017,6 +26485,7 @@ async function renderTenderlyReport({
26017
26485
  getExplicitRPC,
26018
26486
  getExplorer,
26019
26487
  getGovernance,
26488
+ getHyperRPC,
26020
26489
  getImplementationSlot,
26021
26490
  getLogsRecursive,
26022
26491
  getMarketReferenceCurrencyAndUsdBalance,
@@ -26033,6 +26502,7 @@ async function renderTenderlyReport({
26033
26502
  getReserveConfigurations,
26034
26503
  getReserveTokens,
26035
26504
  getSourceCode,
26505
+ hyperRPCSupportedNetworks,
26036
26506
  isPayloadFinal,
26037
26507
  isProposalFinal,
26038
26508
  makePayloadExecutableOnTestClient,