@bgd-labs/toolbox 0.0.22 → 0.0.24

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.mjs CHANGED
@@ -13806,6 +13806,7 @@ async function getSourceCode(params) {
13806
13806
  if (params.apiKey) payload.apikey = params.apiKey;
13807
13807
  const formattedPayload = new URLSearchParams(payload).toString();
13808
13808
  const url = `${params.apiUrl ? params.apiUrl : getExplorer(params.chainId).api}?${formattedPayload}`;
13809
+ console.log(url);
13809
13810
  const request = await fetch(url);
13810
13811
  const { status, message, result } = await request.json();
13811
13812
  if (status != "1") {
@@ -13819,6 +13820,24 @@ function parseEtherscanStyleSourceCode(sourceCode) {
13819
13820
  }
13820
13821
  return JSON.parse(sourceCode);
13821
13822
  }
13823
+ function parseBlockscoutStyleSourceCode(sourceCode) {
13824
+ const result = {
13825
+ language: "unknown",
13826
+ settings: sourceCode.CompilerSettings,
13827
+ libraries: sourceCode.CompilerSettings.libraries,
13828
+ sources: {
13829
+ [sourceCode.FileName]: { content: sourceCode.SourceCode },
13830
+ ...sourceCode.AdditionalSources.reduce(
13831
+ (acc, code) => {
13832
+ acc[code.Filename] = { content: code.SourceCode };
13833
+ return acc;
13834
+ },
13835
+ {}
13836
+ )
13837
+ }
13838
+ };
13839
+ return result;
13840
+ }
13822
13841
 
13823
13842
  // src/ecosystem/tenderly.ts
13824
13843
  import {
@@ -14699,7 +14718,7 @@ var blockscoutExplorers = {
14699
14718
  explorer: "https://eth.blockscout.com/"
14700
14719
  },
14701
14720
  7: {
14702
- api: "https://thaichain.orgapi",
14721
+ api: "https://thaichain.org/api",
14703
14722
  explorer: "https://thaichain.org"
14704
14723
  },
14705
14724
  10: {
@@ -14735,7 +14754,7 @@ var blockscoutExplorers = {
14735
14754
  explorer: "https://cronos.org/explorer/"
14736
14755
  },
14737
14756
  27: {
14738
- api: "https://ctblock.cnapi",
14757
+ api: "https://ctblock.cn/api",
14739
14758
  explorer: "https://ctblock.cn"
14740
14759
  },
14741
14760
  30: {
@@ -14747,7 +14766,7 @@ var blockscoutExplorers = {
14747
14766
  explorer: "https://rootstock-testnet.blockscout.com/"
14748
14767
  },
14749
14768
  38: {
14750
- api: "https://u2uscan.xyzapi",
14769
+ api: "https://u2uscan.xyz/api",
14751
14770
  explorer: "https://u2uscan.xyz"
14752
14771
  },
14753
14772
  40: {
@@ -14771,7 +14790,7 @@ var blockscoutExplorers = {
14771
14790
  explorer: "https://zyxscan.com/"
14772
14791
  },
14773
14792
  56: {
14774
- api: "https://explorer.syscoin.orgapi",
14793
+ api: "https://explorer.syscoin.org/api",
14775
14794
  explorer: "https://explorer.syscoin.org"
14776
14795
  },
14777
14796
  61: {
@@ -14795,7 +14814,7 @@ var blockscoutExplorers = {
14795
14814
  explorer: "https://viction.blockscout.com/"
14796
14815
  },
14797
14816
  94: {
14798
- api: "https://explorer.swissdlt.chapi",
14817
+ api: "https://explorer.swissdlt.ch/api",
14799
14818
  explorer: "https://explorer.swissdlt.ch"
14800
14819
  },
14801
14820
  96: {
@@ -14811,7 +14830,7 @@ var blockscoutExplorers = {
14811
14830
  explorer: "https://gnosis.blockscout.com/"
14812
14831
  },
14813
14832
  102: {
14814
- api: "https://scan.worldland.foundationapi",
14833
+ api: "https://scan.worldland.foundation/api",
14815
14834
  explorer: "https://scan.worldland.foundation"
14816
14835
  },
14817
14836
  105: {
@@ -14839,7 +14858,7 @@ var blockscoutExplorers = {
14839
14858
  explorer: "https://coston2-explorer.flare.network/"
14840
14859
  },
14841
14860
  118: {
14842
- api: "evmscan.nuls.ioapi",
14861
+ api: "evmscan.nuls.io/api",
14843
14862
  explorer: "evmscan.nuls.io"
14844
14863
  },
14845
14864
  122: {
@@ -14851,7 +14870,7 @@ var blockscoutExplorers = {
14851
14870
  explorer: "https://explorer.fusespark.io/"
14852
14871
  },
14853
14872
  130: {
14854
- api: "https://unichain.blockscout.comapi",
14873
+ api: "https://unichain.blockscout.com/api",
14855
14874
  explorer: "https://unichain.blockscout.com"
14856
14875
  },
14857
14876
  132: {
@@ -14887,7 +14906,7 @@ var blockscoutExplorers = {
14887
14906
  explorer: "https://pacific-explorer.manta.network/"
14888
14907
  },
14889
14908
  170: {
14890
- api: "amescan.ioapi",
14909
+ api: "amescan.io/api",
14891
14910
  explorer: "amescan.io"
14892
14911
  },
14893
14912
  177: {
@@ -14911,7 +14930,7 @@ var blockscoutExplorers = {
14911
14930
  explorer: "https://bbqchain-exp.commudao.xyz/"
14912
14931
  },
14913
14932
  205: {
14914
- api: "https://auroria.explorer.stratisevm.comapi",
14933
+ api: "https://auroria.explorer.stratisevm.com/api",
14915
14934
  explorer: "https://auroria.explorer.stratisevm.com"
14916
14935
  },
14917
14936
  213: {
@@ -14939,7 +14958,7 @@ var blockscoutExplorers = {
14939
14958
  explorer: "https://mainnet.blastblockchain.com/"
14940
14959
  },
14941
14960
  247: {
14942
- api: "https://wyzthscan.orgapi",
14961
+ api: "https://wyzthscan.org/api",
14943
14962
  explorer: "https://wyzthscan.org"
14944
14963
  },
14945
14964
  248: {
@@ -15023,11 +15042,11 @@ var blockscoutExplorers = {
15023
15042
  explorer: "https://explorer.appchain.xyz/"
15024
15043
  },
15025
15044
  480: {
15026
- api: "https://worldchain-mainnet.explorer.alchemy.comapi",
15045
+ api: "https://worldchain-mainnet.explorer.alchemy.com/api",
15027
15046
  explorer: "https://worldchain-mainnet.explorer.alchemy.com"
15028
15047
  },
15029
15048
  528: {
15030
- api: "https://egonscan.comapi",
15049
+ api: "https://egonscan.com/api",
15031
15050
  explorer: "https://egonscan.com"
15032
15051
  },
15033
15052
  545: {
@@ -15059,7 +15078,7 @@ var blockscoutExplorers = {
15059
15078
  explorer: "https://astar.blockscout.com/"
15060
15079
  },
15061
15080
  595: {
15062
- api: "https://blockscout.mandala.aca-staging.networkapi",
15081
+ api: "https://blockscout.mandala.aca-staging.network/api",
15063
15082
  explorer: "https://blockscout.mandala.aca-staging.network"
15064
15083
  },
15065
15084
  597: {
@@ -15067,7 +15086,7 @@ var blockscoutExplorers = {
15067
15086
  explorer: "https://explorer-mainnet-cardano-evm.c1.milkomeda.com/"
15068
15087
  },
15069
15088
  608: {
15070
- api: "https://explorer.publicmint.ioapi",
15089
+ api: "https://explorer.publicmint.io/api",
15071
15090
  explorer: "https://explorer.publicmint.io"
15072
15091
  },
15073
15092
  624: {
@@ -15111,7 +15130,7 @@ var blockscoutExplorers = {
15111
15130
  explorer: "https://alveyscan.com/"
15112
15131
  },
15113
15132
  749: {
15114
- api: "https://socialnetwork-testnet.explorer.alchemy.comapi",
15133
+ api: "https://socialnetwork-testnet.explorer.alchemy.com/api",
15115
15134
  explorer: "https://socialnetwork-testnet.explorer.alchemy.com"
15116
15135
  },
15117
15136
  758: {
@@ -15135,7 +15154,7 @@ var blockscoutExplorers = {
15135
15154
  explorer: "https://qng.qitmeer.io/"
15136
15155
  },
15137
15156
  841: {
15138
- api: "https://tara.toapi",
15157
+ api: "https://tara.to/api",
15139
15158
  explorer: "https://tara.to"
15140
15159
  },
15141
15160
  862: {
@@ -15147,7 +15166,7 @@ var blockscoutExplorers = {
15147
15166
  explorer: "https://explorer.bit-rock.io/"
15148
15167
  },
15149
15168
  893: {
15150
- api: "https://adilchain-scan.ioapi",
15169
+ api: "https://adilchain-scan.io/api",
15151
15170
  explorer: "https://adilchain-scan.io"
15152
15171
  },
15153
15172
  899: {
@@ -15155,11 +15174,11 @@ var blockscoutExplorers = {
15155
15174
  explorer: "https://mainnet.maxi.network/"
15156
15175
  },
15157
15176
  900: {
15158
- api: "https://devnet-l1.foam.spaceapi",
15177
+ api: "https://devnet-l1.foam.space/api",
15159
15178
  explorer: "https://devnet-l1.foam.space"
15160
15179
  },
15161
15180
  901: {
15162
- api: "https://devnet-l2.foam.spaceapi",
15181
+ api: "https://devnet-l2.foam.space/api",
15163
15182
  explorer: "https://devnet-l2.foam.space"
15164
15183
  },
15165
15184
  917: {
@@ -15203,7 +15222,7 @@ var blockscoutExplorers = {
15203
15222
  explorer: "https://explorer.diadata.org/"
15204
15223
  },
15205
15224
  1066: {
15206
- api: "https://phoenixplorer.comapi",
15225
+ api: "https://phoenixplorer.com/api",
15207
15226
  explorer: "https://phoenixplorer.com"
15208
15227
  },
15209
15228
  1073: {
@@ -15243,7 +15262,7 @@ var blockscoutExplorers = {
15243
15262
  explorer: "https://explorer.taker.xyz/"
15244
15263
  },
15245
15264
  1130: {
15246
- api: "https://blockscout.mainnet.ocean.jellyfishsdk.comapi",
15265
+ api: "https://blockscout.mainnet.ocean.jellyfishsdk.com/api",
15247
15266
  explorer: "https://blockscout.mainnet.ocean.jellyfishsdk.com"
15248
15267
  },
15249
15268
  1131: {
@@ -15287,7 +15306,7 @@ var blockscoutExplorers = {
15287
15306
  explorer: "https://reiscan.com/"
15288
15307
  },
15289
15308
  1259: {
15290
- api: "https://novascan.velo.orgapi",
15309
+ api: "https://novascan.velo.org/api",
15291
15310
  explorer: "https://novascan.velo.org"
15292
15311
  },
15293
15312
  1300: {
@@ -15295,7 +15314,7 @@ var blockscoutExplorers = {
15295
15314
  explorer: "https://explorer.glue.net/"
15296
15315
  },
15297
15316
  1301: {
15298
- api: "https://unichain-sepolia.blockscout.comapi",
15317
+ api: "https://unichain-sepolia.blockscout.com/api",
15299
15318
  explorer: "https://unichain-sepolia.blockscout.com"
15300
15319
  },
15301
15320
  1310: {
@@ -15307,11 +15326,11 @@ var blockscoutExplorers = {
15307
15326
  explorer: "https://explorer.testnet.inco.org/"
15308
15327
  },
15309
15328
  1315: {
15310
- api: "https://aeneid.storyscan.xyzapi",
15329
+ api: "https://aeneid.storyscan.xyz/api",
15311
15330
  explorer: "https://aeneid.storyscan.xyz"
15312
15331
  },
15313
15332
  1319: {
15314
- api: "https://aiascan.comapi",
15333
+ api: "https://aiascan.com/api",
15315
15334
  explorer: "https://aiascan.com"
15316
15335
  },
15317
15336
  1338: {
@@ -15327,7 +15346,7 @@ var blockscoutExplorers = {
15327
15346
  explorer: "https://explorer.perennial.foundation/"
15328
15347
  },
15329
15348
  1425: {
15330
- api: "https://chain.litprotocol.comapi",
15349
+ api: "https://chain.litprotocol.com/api",
15331
15350
  explorer: "https://chain.litprotocol.com"
15332
15351
  },
15333
15352
  1427: {
@@ -15419,7 +15438,7 @@ var blockscoutExplorers = {
15419
15438
  explorer: "https://explorer.metall2.com/"
15420
15439
  },
15421
15440
  1811: {
15422
- api: "https://testnet.lif3scout.comapi",
15441
+ api: "https://testnet.lif3scout.com/api",
15423
15442
  explorer: "https://testnet.lif3scout.com"
15424
15443
  },
15425
15444
  1829: {
@@ -15427,7 +15446,7 @@ var blockscoutExplorers = {
15427
15446
  explorer: "https://explorer.playblock.io/"
15428
15447
  },
15429
15448
  1868: {
15430
- api: "https://soneium.blockscout.comapi",
15449
+ api: "https://soneium.blockscout.com/api",
15431
15450
  explorer: "https://soneium.blockscout.com"
15432
15451
  },
15433
15452
  1890: {
@@ -15439,11 +15458,11 @@ var blockscoutExplorers = {
15439
15458
  explorer: "https://pegasus.lightlink.io/"
15440
15459
  },
15441
15460
  1907: {
15442
- api: "https://bitciexplorer.comapi",
15461
+ api: "https://bitciexplorer.com/api",
15443
15462
  explorer: "https://bitciexplorer.com"
15444
15463
  },
15445
15464
  1908: {
15446
- api: "https://testnet.bitciexplorer.comapi",
15465
+ api: "https://testnet.bitciexplorer.com/api",
15447
15466
  explorer: "https://testnet.bitciexplorer.com"
15448
15467
  },
15449
15468
  1924: {
@@ -15491,7 +15510,7 @@ var blockscoutExplorers = {
15491
15510
  explorer: "https://edgscan.live/"
15492
15511
  },
15493
15512
  2023: {
15494
- api: "https://atcscan-dev.odw.aiapi",
15513
+ api: "https://atcscan-dev.odw.ai/api",
15495
15514
  explorer: "https://atcscan-dev.odw.ai"
15496
15515
  },
15497
15516
  2024: {
@@ -15555,7 +15574,7 @@ var blockscoutExplorers = {
15555
15574
  explorer: "https://explorer.inevm.com/"
15556
15575
  },
15557
15576
  2649: {
15558
- api: "https://mainnet-explorer.ailayer.xyzapi",
15577
+ api: "https://mainnet-explorer.ailayer.xyz/api",
15559
15578
  explorer: "https://mainnet-explorer.ailayer.xyz"
15560
15579
  },
15561
15580
  2748: {
@@ -15575,7 +15594,7 @@ var blockscoutExplorers = {
15575
15594
  explorer: "https://explorer.morphl2.io/"
15576
15595
  },
15577
15596
  2904: {
15578
- api: "https://scan.cctld.token.uzapi",
15597
+ api: "https://scan.cctld.token.uz/api",
15579
15598
  explorer: "https://scan.cctld.token.uz"
15580
15599
  },
15581
15600
  2999: {
@@ -15595,7 +15614,7 @@ var blockscoutExplorers = {
15595
15614
  explorer: "https://testnet.svmscan.io/"
15596
15615
  },
15597
15616
  3333: {
15598
- api: "https://avescan.ioapi",
15617
+ api: "https://avescan.io/api",
15599
15618
  explorer: "https://avescan.io"
15600
15619
  },
15601
15620
  3366: {
@@ -15643,7 +15662,7 @@ var blockscoutExplorers = {
15643
15662
  explorer: "https://testnet.explorer.tonsquare.io/"
15644
15663
  },
15645
15664
  4061: {
15646
- api: "https://explorer.nahmii.ioapi",
15665
+ api: "https://explorer.nahmii.io/api",
15647
15666
  explorer: "https://explorer.nahmii.io"
15648
15667
  },
15649
15668
  4078: {
@@ -15679,7 +15698,7 @@ var blockscoutExplorers = {
15679
15698
  explorer: "https://blackfort-testnet.blockscout.com/"
15680
15699
  },
15681
15700
  4801: {
15682
- api: "https://worldchain-sepolia.explorer.alchemy.comapi",
15701
+ api: "https://worldchain-sepolia.explorer.alchemy.com/api",
15683
15702
  explorer: "https://worldchain-sepolia.explorer.alchemy.com"
15684
15703
  },
15685
15704
  4913: {
@@ -15695,7 +15714,7 @@ var blockscoutExplorers = {
15695
15714
  explorer: "https://explorer.mantle.xyz/"
15696
15715
  },
15697
15716
  5002: {
15698
- api: "https://evmexplorer.treasurenet.ioapi",
15717
+ api: "https://evmexplorer.treasurenet.io/api",
15699
15718
  explorer: "https://evmexplorer.treasurenet.io"
15700
15719
  },
15701
15720
  5003: {
@@ -15747,7 +15766,7 @@ var blockscoutExplorers = {
15747
15766
  explorer: "https://mainnet.qiblockchain.online/"
15748
15767
  },
15749
15768
  5845: {
15750
- api: "https://explorer.tangle.toolsapi",
15769
+ api: "https://explorer.tangle.tools/api",
15751
15770
  explorer: "https://explorer.tangle.tools"
15752
15771
  },
15753
15772
  6278: {
@@ -15795,7 +15814,7 @@ var blockscoutExplorers = {
15795
15814
  explorer: "https://0xl3.com/"
15796
15815
  },
15797
15816
  7171: {
15798
- api: "https://explorer.bit-rock.ioapi",
15817
+ api: "https://explorer.bit-rock.io/api",
15799
15818
  explorer: "https://explorer.bit-rock.io"
15800
15819
  },
15801
15820
  7332: {
@@ -15835,11 +15854,11 @@ var blockscoutExplorers = {
15835
15854
  explorer: "https://scan.lorenzo-protocol.xyz/"
15836
15855
  },
15837
15856
  8333: {
15838
- api: "https://explorer.b3.funapi",
15857
+ api: "https://explorer.b3.fun/api",
15839
15858
  explorer: "https://explorer.b3.fun"
15840
15859
  },
15841
15860
  8408: {
15842
- api: "https://zentrace.ioapi",
15861
+ api: "https://zentrace.io/api",
15843
15862
  explorer: "https://zentrace.io"
15844
15863
  },
15845
15864
  8428: {
@@ -15863,11 +15882,11 @@ var blockscoutExplorers = {
15863
15882
  explorer: "https://explorer.evm.iota.org/"
15864
15883
  },
15865
15884
  8853: {
15866
- api: "https://explorer.myclique.ioapi",
15885
+ api: "https://explorer.myclique.io/api",
15867
15886
  explorer: "https://explorer.myclique.io"
15868
15887
  },
15869
15888
  8866: {
15870
- api: "https://explorer.lumio.ioapi",
15889
+ api: "https://explorer.lumio.io/api",
15871
15890
  explorer: "https://explorer.lumio.io"
15872
15891
  },
15873
15892
  8869: {
@@ -15875,7 +15894,7 @@ var blockscoutExplorers = {
15875
15894
  explorer: "https://lif3scout.com/"
15876
15895
  },
15877
15896
  8889: {
15878
- api: "https://vscscan.orgapi",
15897
+ api: "https://vscscan.org/api",
15879
15898
  explorer: "https://vscscan.org"
15880
15899
  },
15881
15900
  8899: {
@@ -15891,7 +15910,7 @@ var blockscoutExplorers = {
15891
15910
  explorer: "https://scan.test.algen.network/"
15892
15911
  },
15893
15912
  8921: {
15894
- api: "https://scan.alg2.algen.networkapi",
15913
+ api: "https://scan.alg2.algen.network/api",
15895
15914
  explorer: "https://scan.alg2.algen.network"
15896
15915
  },
15897
15916
  8922: {
@@ -15903,7 +15922,7 @@ var blockscoutExplorers = {
15903
15922
  explorer: "https://blockexplorer.bloxberg.org/"
15904
15923
  },
15905
15924
  9e3: {
15906
- api: "https://dxdscan.comapi",
15925
+ api: "https://dxdscan.com/api",
15907
15926
  explorer: "https://dxdscan.com"
15908
15927
  },
15909
15928
  9008: {
@@ -15927,7 +15946,7 @@ var blockscoutExplorers = {
15927
15946
  explorer: "https://explorer.testnet.oasys.games/"
15928
15947
  },
15929
15948
  9897: {
15930
- api: "https://arena-z.blockscout.comapi",
15949
+ api: "https://arena-z.blockscout.com/api",
15931
15950
  explorer: "https://arena-z.blockscout.com"
15932
15951
  },
15933
15952
  9898: {
@@ -15959,11 +15978,11 @@ var blockscoutExplorers = {
15959
15978
  explorer: "https://gnosis.blockscout.com/"
15960
15979
  },
15961
15980
  10245: {
15962
- api: "https://capxscan.comapi",
15981
+ api: "https://capxscan.com/api",
15963
15982
  explorer: "https://capxscan.com"
15964
15983
  },
15965
15984
  10395: {
15966
- api: "https://scan.worldland.foundationapi",
15985
+ api: "https://scan.worldland.foundation/api",
15967
15986
  explorer: "https://scan.worldland.foundation"
15968
15987
  },
15969
15988
  10888: {
@@ -16075,7 +16094,7 @@ var blockscoutExplorers = {
16075
16094
  explorer: "https://explorer.sandverse.oasys.games/"
16076
16095
  },
16077
16096
  21133: {
16078
- api: "https://exp.c4ex.netapi",
16097
+ api: "https://exp.c4ex.net/api",
16079
16098
  explorer: "https://exp.c4ex.net"
16080
16099
  },
16081
16100
  21363: {
@@ -16091,7 +16110,7 @@ var blockscoutExplorers = {
16091
16110
  explorer: "https://explorer.astrolayer.network/"
16092
16111
  },
16093
16112
  24776: {
16094
- api: "https://explorer.6do.worldapi",
16113
+ api: "https://explorer.6do.world/api",
16095
16114
  explorer: "https://explorer.6do.world"
16096
16115
  },
16097
16116
  25925: {
@@ -16107,7 +16126,7 @@ var blockscoutExplorers = {
16107
16126
  explorer: "https://testnet-explorer.riftnetwork.io/"
16108
16127
  },
16109
16128
  33103: {
16110
- api: "https://zilliqa-prototestnet.blockscout.comapi",
16129
+ api: "https://zilliqa-prototestnet.blockscout.com/api",
16111
16130
  explorer: "https://zilliqa-prototestnet.blockscout.com"
16112
16131
  },
16113
16132
  33111: {
@@ -16143,7 +16162,7 @@ var blockscoutExplorers = {
16143
16162
  explorer: "https://evm-explorer.alephzero.org/"
16144
16163
  },
16145
16164
  41923: {
16146
- api: "https://educhain.blockscout.comapi",
16165
+ api: "https://educhain.blockscout.com/api",
16147
16166
  explorer: "https://educhain.blockscout.com"
16148
16167
  },
16149
16168
  42026: {
@@ -16403,7 +16422,7 @@ var blockscoutExplorers = {
16403
16422
  explorer: "https://explorer.stratovm.io/"
16404
16423
  },
16405
16424
  94168: {
16406
- api: "https://scan.layerlumi.comapi",
16425
+ api: "https://scan.layerlumi.com/api",
16407
16426
  explorer: "https://scan.layerlumi.com"
16408
16427
  },
16409
16428
  98864: {
@@ -16431,7 +16450,7 @@ var blockscoutExplorers = {
16431
16450
  explorer: "https://stability.blockscout.com/"
16432
16451
  },
16433
16452
  102030: {
16434
- api: "https://creditcoin.blockscout.comapi",
16453
+ api: "https://creditcoin.blockscout.com/api",
16435
16454
  explorer: "https://creditcoin.blockscout.com"
16436
16455
  },
16437
16456
  102031: {
@@ -16439,7 +16458,7 @@ var blockscoutExplorers = {
16439
16458
  explorer: "https://creditcoin-testnet.blockscout.com/"
16440
16459
  },
16441
16460
  102032: {
16442
- api: "https://creditcoin-devnet.blockscout.comapi",
16461
+ api: "https://creditcoin-devnet.blockscout.com/api",
16443
16462
  explorer: "https://creditcoin-devnet.blockscout.com"
16444
16463
  },
16445
16464
  103090: {
@@ -16503,7 +16522,7 @@ var blockscoutExplorers = {
16503
16522
  explorer: "https://explorer-testnet.mindnetwork.xyz/"
16504
16523
  },
16505
16524
  201411: {
16506
- api: "https://newevmscan.mainnet-beta.rarimo.comapi",
16525
+ api: "https://newevmscan.mainnet-beta.rarimo.com/api",
16507
16526
  explorer: "https://newevmscan.mainnet-beta.rarimo.com"
16508
16527
  },
16509
16528
  202599: {
@@ -16523,7 +16542,7 @@ var blockscoutExplorers = {
16523
16542
  explorer: "https://scan.conet.network/"
16524
16543
  },
16525
16544
  229772: {
16526
- api: "https://testnet.abyssprotocol.aiapi",
16545
+ api: "https://testnet.abyssprotocol.ai/api",
16527
16546
  explorer: "https://testnet.abyssprotocol.ai"
16528
16547
  },
16529
16548
  241120: {
@@ -16539,7 +16558,7 @@ var blockscoutExplorers = {
16539
16558
  explorer: "https://parthenon.athenescan.io/"
16540
16559
  },
16541
16560
  314159: {
16542
- api: "https://filecoin-testnet.blockscout.comapi",
16561
+ api: "https://filecoin-testnet.blockscout.com/api",
16543
16562
  explorer: "https://filecoin-testnet.blockscout.com"
16544
16563
  },
16545
16564
  322202: {
@@ -16579,11 +16598,11 @@ var blockscoutExplorers = {
16579
16598
  explorer: "https://testnet-explorer.sovrun.org/"
16580
16599
  },
16581
16600
  534351: {
16582
- api: "https://scroll-sepolia.blockscout.comapi",
16601
+ api: "https://scroll-sepolia.blockscout.com/api",
16583
16602
  explorer: "https://scroll-sepolia.blockscout.com"
16584
16603
  },
16585
16604
  534352: {
16586
- api: "https://scroll.blockscout.comapi",
16605
+ api: "https://scroll.blockscout.com/api",
16587
16606
  explorer: "https://scroll.blockscout.com"
16588
16607
  },
16589
16608
  543210: {
@@ -16619,7 +16638,7 @@ var blockscoutExplorers = {
16619
16638
  explorer: "https://explorer.lacnet.com/"
16620
16639
  },
16621
16640
  656476: {
16622
- api: "https://edu-chain-testnet.blockscout.comapi",
16641
+ api: "https://edu-chain-testnet.blockscout.com/api",
16623
16642
  explorer: "https://edu-chain-testnet.blockscout.com"
16624
16643
  },
16625
16644
  668668: {
@@ -16647,7 +16666,7 @@ var blockscoutExplorers = {
16647
16666
  explorer: "https://testnet.explorer.hemi.xyz/"
16648
16667
  },
16649
16668
  763373: {
16650
- api: "https://explorer-sepolia.inkonchain.comapi",
16669
+ api: "https://explorer-sepolia.inkonchain.com/api",
16651
16670
  explorer: "https://explorer-sepolia.inkonchain.com"
16652
16671
  },
16653
16672
  763375: {
@@ -16715,7 +16734,7 @@ var blockscoutExplorers = {
16715
16734
  explorer: "https://explorer.rdgx.io/"
16716
16735
  },
16717
16736
  5820948: {
16718
- api: "https://onlyscan.infoapi",
16737
+ api: "https://onlyscan.info/api",
16719
16738
  explorer: "https://onlyscan.info"
16720
16739
  },
16721
16740
  7225878: {
@@ -16735,7 +16754,7 @@ var blockscoutExplorers = {
16735
16754
  explorer: "https://xcap-mainnet.explorer.xcap.network/"
16736
16755
  },
16737
16756
  9999999: {
16738
- api: "https://blockscout.mainnet.fluence.devapi",
16757
+ api: "https://blockscout.mainnet.fluence.dev/api",
16739
16758
  explorer: "https://blockscout.mainnet.fluence.dev"
16740
16759
  },
16741
16760
  10241025: {
@@ -16783,11 +16802,11 @@ var blockscoutExplorers = {
16783
16802
  explorer: "https://testnet.xscscan.com/"
16784
16803
  },
16785
16804
  34949059: {
16786
- api: "https://test.citronus.comapi",
16805
+ api: "https://test.citronus.com/api",
16787
16806
  explorer: "https://test.citronus.com"
16788
16807
  },
16789
16808
  52164803: {
16790
- api: "https://blockscout.testnet.fluence.devapi",
16809
+ api: "https://blockscout.testnet.fluence.dev/api",
16791
16810
  explorer: "https://blockscout.testnet.fluence.dev"
16792
16811
  },
16793
16812
  65100002: {
@@ -16855,7 +16874,7 @@ var blockscoutExplorers = {
16855
16874
  explorer: "https://moonveil-testnet-blockscout.eu-north-2.gateway.fm/"
16856
16875
  },
16857
16876
  1122334455: {
16858
- api: "https://eth-explore.wire.foundationapi",
16877
+ api: "https://eth-explore.wire.foundation/api",
16859
16878
  explorer: "https://eth-explore.wire.foundation"
16860
16879
  },
16861
16880
  1123581321: {
@@ -28928,6 +28947,7 @@ export {
28928
28947
  makePayloadExecutableOnTestClient,
28929
28948
  makeProposalExecutableOnTestClient,
28930
28949
  onMevHandler,
28950
+ parseBlockscoutStyleSourceCode,
28931
28951
  parseEtherscanStyleSourceCode,
28932
28952
  parseLogs,
28933
28953
  priceUpdateDecoder,