@bgd-labs/toolbox 0.0.41 → 0.0.42

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
@@ -42,9 +42,11 @@ __export(node_exports, {
42
42
  IAToken_ABI: () => IAToken_ABI,
43
43
  IAaveOracle_ABI: () => IAaveOracle_ABI,
44
44
  IAaveV3ConfigEngine_ABI: () => IAaveV3ConfigEngine_ABI,
45
+ IAccessControl_ABI: () => IAccessControl_ABI,
45
46
  IAuthorizedForwarder_ABI: () => IAuthorizedForwarder_ABI,
46
47
  ICollector_ABI: () => ICollector_ABI,
47
48
  IDualAggregator_ABI: () => IDualAggregator_ABI,
49
+ IERC1967_ABI: () => IERC1967_ABI,
48
50
  IERC20Metadata_ABI: () => IERC20Metadata_ABI,
49
51
  IERC20_ABI: () => IERC20_ABI,
50
52
  IEmissionManager_ABI: () => IEmissionManager_ABI,
@@ -59,8 +61,10 @@ __export(node_exports, {
59
61
  IUmbrella_ABI: () => IUmbrella_ABI,
60
62
  IWrappedTokenGatewayV3_ABI: () => IWrappedTokenGatewayV3_ABI,
61
63
  LTV_PRECISION: () => LTV_PRECISION,
64
+ Ownable_ABI: () => Ownable_ABI,
62
65
  PayloadState: () => PayloadState,
63
66
  ProposalState: () => ProposalState,
67
+ ProxyAdmin_ABI: () => ProxyAdmin_ABI,
64
68
  RAY: () => RAY,
65
69
  SECONDS_PER_YEAR: () => SECONDS_PER_YEAR,
66
70
  SelfdestructCheckState: () => SelfdestructCheckState,
@@ -2261,13 +2265,24 @@ var IAToken_ABI = [
2261
2265
  "type": "uint256",
2262
2266
  "internalType": "uint256"
2263
2267
  },
2268
+ {
2269
+ "name": "scaledAmount",
2270
+ "type": "uint256",
2271
+ "internalType": "uint256"
2272
+ },
2264
2273
  {
2265
2274
  "name": "index",
2266
2275
  "type": "uint256",
2267
2276
  "internalType": "uint256"
2268
2277
  }
2269
2278
  ],
2270
- "outputs": [],
2279
+ "outputs": [
2280
+ {
2281
+ "name": "",
2282
+ "type": "bool",
2283
+ "internalType": "bool"
2284
+ }
2285
+ ],
2271
2286
  "stateMutability": "nonpayable"
2272
2287
  },
2273
2288
  {
@@ -2366,7 +2381,7 @@ var IAToken_ABI = [
2366
2381
  "internalType": "address"
2367
2382
  },
2368
2383
  {
2369
- "name": "amount",
2384
+ "name": "scaledAmount",
2370
2385
  "type": "uint256",
2371
2386
  "internalType": "uint256"
2372
2387
  },
@@ -2390,7 +2405,7 @@ var IAToken_ABI = [
2390
2405
  "name": "mintToTreasury",
2391
2406
  "inputs": [
2392
2407
  {
2393
- "name": "amount",
2408
+ "name": "scaledAmount",
2394
2409
  "type": "uint256",
2395
2410
  "internalType": "uint256"
2396
2411
  },
@@ -2601,7 +2616,12 @@ var IAToken_ABI = [
2601
2616
  "internalType": "address"
2602
2617
  },
2603
2618
  {
2604
- "name": "value",
2619
+ "name": "amount",
2620
+ "type": "uint256",
2621
+ "internalType": "uint256"
2622
+ },
2623
+ {
2624
+ "name": "scaledAmount",
2605
2625
  "type": "uint256",
2606
2626
  "internalType": "uint256"
2607
2627
  },
@@ -6841,6 +6861,131 @@ var ICollector_ABI = [
6841
6861
  }
6842
6862
  ];
6843
6863
 
6864
+ // src/abis/ProxyAdmin.ts
6865
+ var ProxyAdmin_ABI = [
6866
+ {
6867
+ "type": "constructor",
6868
+ "inputs": [
6869
+ {
6870
+ "name": "initialOwner",
6871
+ "type": "address",
6872
+ "internalType": "address"
6873
+ }
6874
+ ],
6875
+ "stateMutability": "nonpayable"
6876
+ },
6877
+ {
6878
+ "type": "function",
6879
+ "name": "UPGRADE_INTERFACE_VERSION",
6880
+ "inputs": [],
6881
+ "outputs": [
6882
+ {
6883
+ "name": "",
6884
+ "type": "string",
6885
+ "internalType": "string"
6886
+ }
6887
+ ],
6888
+ "stateMutability": "view"
6889
+ },
6890
+ {
6891
+ "type": "function",
6892
+ "name": "owner",
6893
+ "inputs": [],
6894
+ "outputs": [
6895
+ {
6896
+ "name": "",
6897
+ "type": "address",
6898
+ "internalType": "address"
6899
+ }
6900
+ ],
6901
+ "stateMutability": "view"
6902
+ },
6903
+ {
6904
+ "type": "function",
6905
+ "name": "renounceOwnership",
6906
+ "inputs": [],
6907
+ "outputs": [],
6908
+ "stateMutability": "nonpayable"
6909
+ },
6910
+ {
6911
+ "type": "function",
6912
+ "name": "transferOwnership",
6913
+ "inputs": [
6914
+ {
6915
+ "name": "newOwner",
6916
+ "type": "address",
6917
+ "internalType": "address"
6918
+ }
6919
+ ],
6920
+ "outputs": [],
6921
+ "stateMutability": "nonpayable"
6922
+ },
6923
+ {
6924
+ "type": "function",
6925
+ "name": "upgradeAndCall",
6926
+ "inputs": [
6927
+ {
6928
+ "name": "proxy",
6929
+ "type": "address",
6930
+ "internalType": "contract ITransparentUpgradeableProxy"
6931
+ },
6932
+ {
6933
+ "name": "implementation",
6934
+ "type": "address",
6935
+ "internalType": "address"
6936
+ },
6937
+ {
6938
+ "name": "data",
6939
+ "type": "bytes",
6940
+ "internalType": "bytes"
6941
+ }
6942
+ ],
6943
+ "outputs": [],
6944
+ "stateMutability": "payable"
6945
+ },
6946
+ {
6947
+ "type": "event",
6948
+ "name": "OwnershipTransferred",
6949
+ "inputs": [
6950
+ {
6951
+ "name": "previousOwner",
6952
+ "type": "address",
6953
+ "indexed": true,
6954
+ "internalType": "address"
6955
+ },
6956
+ {
6957
+ "name": "newOwner",
6958
+ "type": "address",
6959
+ "indexed": true,
6960
+ "internalType": "address"
6961
+ }
6962
+ ],
6963
+ "anonymous": false
6964
+ },
6965
+ {
6966
+ "type": "error",
6967
+ "name": "OwnableInvalidOwner",
6968
+ "inputs": [
6969
+ {
6970
+ "name": "owner",
6971
+ "type": "address",
6972
+ "internalType": "address"
6973
+ }
6974
+ ]
6975
+ },
6976
+ {
6977
+ "type": "error",
6978
+ "name": "OwnableUnauthorizedAccount",
6979
+ "inputs": [
6980
+ {
6981
+ "name": "account",
6982
+ "type": "address",
6983
+ "internalType": "address"
6984
+ }
6985
+ ]
6986
+ }
6987
+ ];
6988
+
6844
6989
  // src/abis/IPool.ts
6845
6990
  var IPool_ABI = [
6846
6991
  {
@@ -7091,7 +7236,13 @@ var IPool_ABI = [
7091
7236
  "internalType": "uint256"
7092
7237
  }
7093
7238
  ],
7094
- "outputs": [],
7239
+ "outputs": [
7240
+ {
7241
+ "name": "",
7242
+ "type": "uint256",
7243
+ "internalType": "uint256"
7244
+ }
7245
+ ],
7095
7246
  "stateMutability": "nonpayable"
7096
7247
  },
7097
7248
  {
@@ -7114,17 +7265,17 @@ var IPool_ABI = [
7114
7265
  "internalType": "address"
7115
7266
  },
7116
7267
  {
7117
- "name": "amount",
7268
+ "name": "scaledAmount",
7118
7269
  "type": "uint256",
7119
7270
  "internalType": "uint256"
7120
7271
  },
7121
7272
  {
7122
- "name": "balanceFromBefore",
7273
+ "name": "scaledBalanceFromBefore",
7123
7274
  "type": "uint256",
7124
7275
  "internalType": "uint256"
7125
7276
  },
7126
7277
  {
7127
- "name": "balanceToBefore",
7278
+ "name": "scaledBalanceToBefore",
7128
7279
  "type": "uint256",
7129
7280
  "internalType": "uint256"
7130
7281
  }
@@ -11270,6 +11421,203 @@ var IUmbrellaStakeToken_ABI = [
11270
11421
  }
11271
11422
  ];
11272
11423
 
11424
+ // src/abis/IAccessControl.ts
11425
+ var IAccessControl_ABI = [
11426
+ {
11427
+ "type": "function",
11428
+ "name": "getRoleAdmin",
11429
+ "inputs": [
11430
+ {
11431
+ "name": "role",
11432
+ "type": "bytes32",
11433
+ "internalType": "bytes32"
11434
+ }
11435
+ ],
11436
+ "outputs": [
11437
+ {
11438
+ "name": "",
11439
+ "type": "bytes32",
11440
+ "internalType": "bytes32"
11441
+ }
11442
+ ],
11443
+ "stateMutability": "view"
11444
+ },
11445
+ {
11446
+ "type": "function",
11447
+ "name": "grantRole",
11448
+ "inputs": [
11449
+ {
11450
+ "name": "role",
11451
+ "type": "bytes32",
11452
+ "internalType": "bytes32"
11453
+ },
11454
+ {
11455
+ "name": "account",
11456
+ "type": "address",
11457
+ "internalType": "address"
11458
+ }
11459
+ ],
11460
+ "outputs": [],
11461
+ "stateMutability": "nonpayable"
11462
+ },
11463
+ {
11464
+ "type": "function",
11465
+ "name": "hasRole",
11466
+ "inputs": [
11467
+ {
11468
+ "name": "role",
11469
+ "type": "bytes32",
11470
+ "internalType": "bytes32"
11471
+ },
11472
+ {
11473
+ "name": "account",
11474
+ "type": "address",
11475
+ "internalType": "address"
11476
+ }
11477
+ ],
11478
+ "outputs": [
11479
+ {
11480
+ "name": "",
11481
+ "type": "bool",
11482
+ "internalType": "bool"
11483
+ }
11484
+ ],
11485
+ "stateMutability": "view"
11486
+ },
11487
+ {
11488
+ "type": "function",
11489
+ "name": "renounceRole",
11490
+ "inputs": [
11491
+ {
11492
+ "name": "role",
11493
+ "type": "bytes32",
11494
+ "internalType": "bytes32"
11495
+ },
11496
+ {
11497
+ "name": "callerConfirmation",
11498
+ "type": "address",
11499
+ "internalType": "address"
11500
+ }
11501
+ ],
11502
+ "outputs": [],
11503
+ "stateMutability": "nonpayable"
11504
+ },
11505
+ {
11506
+ "type": "function",
11507
+ "name": "revokeRole",
11508
+ "inputs": [
11509
+ {
11510
+ "name": "role",
11511
+ "type": "bytes32",
11512
+ "internalType": "bytes32"
11513
+ },
11514
+ {
11515
+ "name": "account",
11516
+ "type": "address",
11517
+ "internalType": "address"
11518
+ }
11519
+ ],
11520
+ "outputs": [],
11521
+ "stateMutability": "nonpayable"
11522
+ },
11523
+ {
11524
+ "type": "event",
11525
+ "name": "RoleAdminChanged",
11526
+ "inputs": [
11527
+ {
11528
+ "name": "role",
11529
+ "type": "bytes32",
11530
+ "indexed": true,
11531
+ "internalType": "bytes32"
11532
+ },
11533
+ {
11534
+ "name": "previousAdminRole",
11535
+ "type": "bytes32",
11536
+ "indexed": true,
11537
+ "internalType": "bytes32"
11538
+ },
11539
+ {
11540
+ "name": "newAdminRole",
11541
+ "type": "bytes32",
11542
+ "indexed": true,
11543
+ "internalType": "bytes32"
11544
+ }
11545
+ ],
11546
+ "anonymous": false
11547
+ },
11548
+ {
11549
+ "type": "event",
11550
+ "name": "RoleGranted",
11551
+ "inputs": [
11552
+ {
11553
+ "name": "role",
11554
+ "type": "bytes32",
11555
+ "indexed": true,
11556
+ "internalType": "bytes32"
11557
+ },
11558
+ {
11559
+ "name": "account",
11560
+ "type": "address",
11561
+ "indexed": true,
11562
+ "internalType": "address"
11563
+ },
11564
+ {
11565
+ "name": "sender",
11566
+ "type": "address",
11567
+ "indexed": true,
11568
+ "internalType": "address"
11569
+ }
11570
+ ],
11571
+ "anonymous": false
11572
+ },
11573
+ {
11574
+ "type": "event",
11575
+ "name": "RoleRevoked",
11576
+ "inputs": [
11577
+ {
11578
+ "name": "role",
11579
+ "type": "bytes32",
11580
+ "indexed": true,
11581
+ "internalType": "bytes32"
11582
+ },
11583
+ {
11584
+ "name": "account",
11585
+ "type": "address",
11586
+ "indexed": true,
11587
+ "internalType": "address"
11588
+ },
11589
+ {
11590
+ "name": "sender",
11591
+ "type": "address",
11592
+ "indexed": true,
11593
+ "internalType": "address"
11594
+ }
11595
+ ],
11596
+ "anonymous": false
11597
+ },
11598
+ {
11599
+ "type": "error",
11600
+ "name": "AccessControlBadConfirmation",
11601
+ "inputs": []
11602
+ },
11603
+ {
11604
+ "type": "error",
11605
+ "name": "AccessControlUnauthorizedAccount",
11606
+ "inputs": [
11607
+ {
11608
+ "name": "account",
11609
+ "type": "address",
11610
+ "internalType": "address"
11611
+ },
11612
+ {
11613
+ "name": "neededRole",
11614
+ "type": "bytes32",
11615
+ "internalType": "bytes32"
11616
+ }
11617
+ ]
11618
+ }
11619
+ ];
11620
+
11273
11621
  // src/abis/IERC20Metadata.ts
11274
11622
  var IERC20Metadata_ABI = [
11275
11623
  {
@@ -12952,6 +13300,55 @@ var IERC20_ABI = [
12952
13300
  }
12953
13301
  ];
12954
13302
 
13303
+ // src/abis/IERC1967.ts
13304
+ var IERC1967_ABI = [
13305
+ {
13306
+ "type": "event",
13307
+ "name": "AdminChanged",
13308
+ "inputs": [
13309
+ {
13310
+ "name": "previousAdmin",
13311
+ "type": "address",
13312
+ "indexed": false,
13313
+ "internalType": "address"
13314
+ },
13315
+ {
13316
+ "name": "newAdmin",
13317
+ "type": "address",
13318
+ "indexed": false,
13319
+ "internalType": "address"
13320
+ }
13321
+ ],
13322
+ "anonymous": false
13323
+ },
13324
+ {
13325
+ "type": "event",
13326
+ "name": "BeaconUpgraded",
13327
+ "inputs": [
13328
+ {
13329
+ "name": "beacon",
13330
+ "type": "address",
13331
+ "indexed": true,
13332
+ "internalType": "address"
13333
+ }
13334
+ ],
13335
+ "anonymous": false
13336
+ },
13337
+ {
13338
+ "type": "event",
13339
+ "name": "Upgraded",
13340
+ "inputs": [
13341
+ {
13342
+ "name": "implementation",
13343
+ "type": "address",
13344
+ "indexed": true,
13345
+ "internalType": "address"
13346
+ }
13347
+ ],
13348
+ "anonymous": false
13349
+ }
13350
+ ];
13351
+
12955
13352
  // src/abis/IAuthorizedForwarder.ts
12956
13353
  var IAuthorizedForwarder_ABI = [
12957
13354
  {
@@ -13109,6 +13506,84 @@ var IAuthorizedForwarder_ABI = [
13109
13506
  }
13110
13507
  ];
13111
13508
 
13509
+ // src/abis/Ownable.ts
13510
+ var Ownable_ABI = [
13511
+ {
13512
+ "type": "function",
13513
+ "name": "owner",
13514
+ "inputs": [],
13515
+ "outputs": [
13516
+ {
13517
+ "name": "",
13518
+ "type": "address",
13519
+ "internalType": "address"
13520
+ }
13521
+ ],
13522
+ "stateMutability": "view"
13523
+ },
13524
+ {
13525
+ "type": "function",
13526
+ "name": "renounceOwnership",
13527
+ "inputs": [],
13528
+ "outputs": [],
13529
+ "stateMutability": "nonpayable"
13530
+ },
13531
+ {
13532
+ "type": "function",
13533
+ "name": "transferOwnership",
13534
+ "inputs": [
13535
+ {
13536
+ "name": "newOwner",
13537
+ "type": "address",
13538
+ "internalType": "address"
13539
+ }
13540
+ ],
13541
+ "outputs": [],
13542
+ "stateMutability": "nonpayable"
13543
+ },
13544
+ {
13545
+ "type": "event",
13546
+ "name": "OwnershipTransferred",
13547
+ "inputs": [
13548
+ {
13549
+ "name": "previousOwner",
13550
+ "type": "address",
13551
+ "indexed": true,
13552
+ "internalType": "address"
13553
+ },
13554
+ {
13555
+ "name": "newOwner",
13556
+ "type": "address",
13557
+ "indexed": true,
13558
+ "internalType": "address"
13559
+ }
13560
+ ],
13561
+ "anonymous": false
13562
+ },
13563
+ {
13564
+ "type": "error",
13565
+ "name": "OwnableInvalidOwner",
13566
+ "inputs": [
13567
+ {
13568
+ "name": "owner",
13569
+ "type": "address",
13570
+ "internalType": "address"
13571
+ }
13572
+ ]
13573
+ },
13574
+ {
13575
+ "type": "error",
13576
+ "name": "OwnableUnauthorizedAccount",
13577
+ "inputs": [
13578
+ {
13579
+ "name": "account",
13580
+ "type": "address",
13581
+ "internalType": "address"
13582
+ }
13583
+ ]
13584
+ }
13585
+ ];
13586
+
13112
13587
  // src/aave/pool/addresses.ts
13113
13588
  var import_actions = require("viem/actions");
13114
13589
  async function fetchImmutablePoolAddresses(client, poolAddressesProvider) {
@@ -13207,7 +13682,7 @@ async function getReserveConfigurations(client, pool, reserves) {
13207
13682
  };
13208
13683
  }
13209
13684
 
13210
- // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.21.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IPayloadsControllerCore.mjs
13685
+ // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.29.3_viem@2.37.5_typescript@5.8.3_zod@3.24.2_/node_modules/@bgd-labs/aave-address-book/dist/abis/IPayloadsControllerCore.mjs
13211
13686
  var IPayloadsControllerCore_ABI = [
13212
13687
  {
13213
13688
  type: "function",
@@ -13712,7 +14187,7 @@ var IPayloadsControllerCore_ABI = [
13712
14187
  }
13713
14188
  ];
13714
14189
 
13715
- // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.21.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IGovernanceCore.mjs
14190
+ // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.29.3_viem@2.37.5_typescript@5.8.3_zod@3.24.2_/node_modules/@bgd-labs/aave-address-book/dist/abis/IGovernanceCore.mjs
13716
14191
  var IGovernanceCore_ABI = [
13717
14192
  {
13718
14193
  type: "function",
@@ -14745,7 +15220,7 @@ var IGovernanceCore_ABI = [
14745
15220
  }
14746
15221
  ];
14747
15222
 
14748
- // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.21.0/node_modules/@bgd-labs/aave-address-book/dist/abis/IPool.mjs
15223
+ // ../../node_modules/.pnpm/@bgd-labs+aave-address-book@4.29.3_viem@2.37.5_typescript@5.8.3_zod@3.24.2_/node_modules/@bgd-labs/aave-address-book/dist/abis/IPool.mjs
14749
15224
  var IPool_ABI2 = [
14750
15225
  {
14751
15226
  type: "function",
@@ -17041,14 +17516,6 @@ var etherscanExplorers = {
17041
17516
  api: "https://api.etherscan.io/v2/api",
17042
17517
  explorer: "https://zkevm.polygonscan.com/"
17043
17518
  },
17044
- 1111: {
17045
- api: "https://api.etherscan.io/v2/api",
17046
- explorer: "https://wemixscan.com/"
17047
- },
17048
- 1112: {
17049
- api: "https://api.etherscan.io/v2/api",
17050
- explorer: "https://testnet.wemixscan.com/"
17051
- },
17052
17519
  1284: {
17053
17520
  api: "https://api.etherscan.io/v2/api",
17054
17521
  explorer: "https://moonbeam.moonscan.io/"
@@ -17121,6 +17588,10 @@ var etherscanExplorers = {
17121
17588
  api: "https://api.etherscan.io/v2/api",
17122
17589
  explorer: "https://sepolia.abscan.org/"
17123
17590
  },
17591
+ 14601: {
17592
+ api: "https://api.etherscan.io/v2/api",
17593
+ explorer: "https://testnet.sonicscan.org/"
17594
+ },
17124
17595
  17e3: {
17125
17596
  api: "https://api.etherscan.io/v2/api",
17126
17597
  explorer: "https://holesky.etherscan.io/"
@@ -17165,10 +17636,6 @@ var etherscanExplorers = {
17165
17636
  api: "https://api.etherscan.io/v2/api",
17166
17637
  explorer: "https://sophscan.xyz/"
17167
17638
  },
17168
- 57054: {
17169
- api: "https://api.etherscan.io/v2/api",
17170
- explorer: "https://testnet.sonicscan.org/"
17171
- },
17172
17639
  59141: {
17173
17640
  api: "https://api.etherscan.io/v2/api",
17174
17641
  explorer: "https://sepolia.lineascan.build/"
@@ -17221,10 +17688,6 @@ var etherscanExplorers = {
17221
17688
  api: "https://api.etherscan.io/v2/api",
17222
17689
  explorer: "https://hoodi.etherscan.io/"
17223
17690
  },
17224
- 660279: {
17225
- api: "https://api.etherscan.io/v2/api",
17226
- explorer: "https://xaiscan.io/"
17227
- },
17228
17691
  747474: {
17229
17692
  api: "https://api.etherscan.io/v2/api",
17230
17693
  explorer: "https://katanascan.com/"
@@ -17244,10 +17707,6 @@ var etherscanExplorers = {
17244
17707
  531050104: {
17245
17708
  api: "https://api.etherscan.io/v2/api",
17246
17709
  explorer: "https://testnet.sophscan.xyz/"
17247
- },
17248
- 37714555429: {
17249
- api: "https://api.etherscan.io/v2/api",
17250
- explorer: "https://sepolia.xaiscan.io/"
17251
17710
  }
17252
17711
  };
17253
17712
 
@@ -17297,18 +17756,10 @@ var routescanExplorers = {
17297
17756
  api: "https://api.routescan.io/v2/network/mainnet/evm/166/etherscan",
17298
17757
  explorer: "166.routescan.io"
17299
17758
  },
17300
- 183: {
17301
- api: "https://api.routescan.io/v2/network/mainnet/evm/183/etherscan",
17302
- explorer: "183.routescan.io"
17303
- },
17304
17759
  185: {
17305
17760
  api: "https://api.routescan.io/v2/network/mainnet/evm/185/etherscan",
17306
17761
  explorer: "185.routescan.io"
17307
17762
  },
17308
- 233: {
17309
- api: "https://api.routescan.io/v2/network/testnet/evm/233/etherscan",
17310
- explorer: "233.routescan.io"
17311
- },
17312
17763
  252: {
17313
17764
  api: "https://api.routescan.io/v2/network/mainnet/evm/252/etherscan",
17314
17765
  explorer: "252.routescan.io"
@@ -17317,10 +17768,6 @@ var routescanExplorers = {
17317
17768
  api: "https://api.routescan.io/v2/network/mainnet/evm/254/etherscan",
17318
17769
  explorer: "254.routescan.io"
17319
17770
  },
17320
- 255: {
17321
- api: "https://api.routescan.io/v2/network/mainnet/evm/255/etherscan",
17322
- explorer: "255.routescan.io"
17323
- },
17324
17771
  288: {
17325
17772
  api: "https://api.routescan.io/v2/network/mainnet/evm/288/etherscan",
17326
17773
  explorer: "288.routescan.io"
@@ -17329,10 +17776,6 @@ var routescanExplorers = {
17329
17776
  api: "https://api.routescan.io/v2/network/mainnet/evm/291/etherscan",
17330
17777
  explorer: "291.routescan.io"
17331
17778
  },
17332
- 303: {
17333
- api: "https://api.routescan.io/v2/network/mainnet/evm/303/etherscan",
17334
- explorer: "303.routescan.io"
17335
- },
17336
17779
  324: {
17337
17780
  api: "https://api.routescan.io/v2/network/mainnet/evm/324/etherscan",
17338
17781
  explorer: "324.routescan.io"
@@ -17357,10 +17800,6 @@ var routescanExplorers = {
17357
17800
  api: "https://api.routescan.io/v2/network/mainnet/evm/379/etherscan",
17358
17801
  explorer: "379.routescan.io"
17359
17802
  },
17360
- 392: {
17361
- api: "https://api.routescan.io/v2/network/testnet/evm/392/etherscan",
17362
- explorer: "392.routescan.io"
17363
- },
17364
17803
  480: {
17365
17804
  api: "https://api.routescan.io/v2/network/mainnet/evm/480/etherscan",
17366
17805
  explorer: "480.routescan.io"
@@ -17441,10 +17880,6 @@ var routescanExplorers = {
17441
17880
  api: "https://api.routescan.io/v2/network/testnet/evm/2233/etherscan",
17442
17881
  explorer: "2233.routescan.io"
17443
17882
  },
17444
- 2358: {
17445
- api: "https://api.routescan.io/v2/network/testnet/evm/2358/etherscan",
17446
- explorer: "2358.routescan.io"
17447
- },
17448
17883
  2368: {
17449
17884
  api: "https://api.routescan.io/v2/network/testnet/evm/2368/etherscan",
17450
17885
  explorer: "2368.routescan.io"
@@ -17509,10 +17944,6 @@ var routescanExplorers = {
17509
17944
  api: "https://api.routescan.io/v2/network/testnet/evm/4460/etherscan",
17510
17945
  explorer: "4460.routescan.io"
17511
17946
  },
17512
- 4801: {
17513
- api: "https://api.routescan.io/v2/network/testnet/evm/4801/etherscan",
17514
- explorer: "4801.routescan.io"
17515
- },
17516
17947
  5e3: {
17517
17948
  api: "https://api.routescan.io/v2/network/mainnet/evm/5000/etherscan",
17518
17949
  explorer: "5000.routescan.io"
@@ -17537,10 +17968,6 @@ var routescanExplorers = {
17537
17968
  api: "https://api.routescan.io/v2/network/mainnet/evm/5566/etherscan",
17538
17969
  explorer: "5566.routescan.io"
17539
17970
  },
17540
- 6118: {
17541
- api: "https://api.routescan.io/v2/network/testnet/evm/6118/etherscan",
17542
- explorer: "6118.routescan.io"
17543
- },
17544
17971
  6119: {
17545
17972
  api: "https://api.routescan.io/v2/network/mainnet/evm/6119/etherscan",
17546
17973
  explorer: "6119.routescan.io"
@@ -17561,18 +17988,6 @@ var routescanExplorers = {
17561
17988
  api: "https://api.routescan.io/v2/network/mainnet/evm/7171/etherscan",
17562
17989
  explorer: "7171.routescan.io"
17563
17990
  },
17564
- 7210: {
17565
- api: "https://api.routescan.io/v2/network/testnet/evm/7210/etherscan",
17566
- explorer: "7210.routescan.io"
17567
- },
17568
- 7222: {
17569
- api: "https://api.routescan.io/v2/network/testnet/evm/7222/etherscan",
17570
- explorer: "7222.routescan.io"
17571
- },
17572
- 7887: {
17573
- api: "https://api.routescan.io/v2/network/mainnet/evm/7887/etherscan",
17574
- explorer: "7887.routescan.io"
17575
- },
17576
17991
  7894: {
17577
17992
  api: "https://api.routescan.io/v2/network/testnet/evm/7894/etherscan",
17578
17993
  explorer: "7894.routescan.io"
@@ -17601,9 +18016,9 @@ var routescanExplorers = {
17601
18016
  api: "https://api.routescan.io/v2/network/mainnet/evm/8787/etherscan",
17602
18017
  explorer: "8787.routescan.io"
17603
18018
  },
17604
- 8888: {
17605
- api: "https://api.routescan.io/v2/network/mainnet/evm/8888/etherscan",
17606
- explorer: "8888.routescan.io"
18019
+ 9745: {
18020
+ api: "https://api.routescan.io/v2/network/mainnet/evm/9745/etherscan",
18021
+ explorer: "9745.routescan.io"
17607
18022
  },
17608
18023
  10036: {
17609
18024
  api: "https://api.routescan.io/v2/network/mainnet/evm/10036/etherscan",
@@ -17621,10 +18036,6 @@ var routescanExplorers = {
17621
18036
  api: "https://api.routescan.io/v2/network/mainnet/evm/10850/etherscan",
17622
18037
  explorer: "10850.routescan.io"
17623
18038
  },
17624
- 10880: {
17625
- api: "https://api.routescan.io/v2/network/testnet/evm/10880/etherscan",
17626
- explorer: "10880.routescan.io"
17627
- },
17628
18039
  10888: {
17629
18040
  api: "https://api.routescan.io/v2/network/testnet/evm/10888/etherscan",
17630
18041
  explorer: "10888.routescan.io"
@@ -17649,6 +18060,10 @@ var routescanExplorers = {
17649
18060
  api: "https://api.routescan.io/v2/network/testnet/evm/13576/etherscan",
17650
18061
  explorer: "13576.routescan.io"
17651
18062
  },
18063
+ 14174: {
18064
+ api: "https://api.routescan.io/v2/network/testnet/evm/14174/etherscan",
18065
+ explorer: "14174.routescan.io"
18066
+ },
17652
18067
  16180: {
17653
18068
  api: "https://api.routescan.io/v2/network/mainnet/evm/16180/etherscan",
17654
18069
  explorer: "16180.routescan.io"
@@ -17665,18 +18080,10 @@ var routescanExplorers = {
17665
18080
  api: "https://api.routescan.io/v2/network/testnet/evm/21816/etherscan",
17666
18081
  explorer: "21816.routescan.io"
17667
18082
  },
17668
- 23944: {
17669
- api: "https://api.routescan.io/v2/network/testnet/evm/23944/etherscan",
17670
- explorer: "23944.routescan.io"
17671
- },
17672
18083
  24010: {
17673
18084
  api: "https://api.routescan.io/v2/network/testnet/evm/24010/etherscan",
17674
18085
  explorer: "24010.routescan.io"
17675
18086
  },
17676
- 26659: {
17677
- api: "https://api.routescan.io/v2/network/testnet/evm/26659/etherscan",
17678
- explorer: "26659.routescan.io"
17679
- },
17680
18087
  27827: {
17681
18088
  api: "https://api.routescan.io/v2/network/mainnet/evm/27827/etherscan",
17682
18089
  explorer: "27827.routescan.io"
@@ -17729,10 +18136,6 @@ var routescanExplorers = {
17729
18136
  api: "https://api.routescan.io/v2/network/testnet/evm/49321/etherscan",
17730
18137
  explorer: "49321.routescan.io"
17731
18138
  },
17732
- 53123: {
17733
- api: "https://api.routescan.io/v2/network/testnet/evm/53123/etherscan",
17734
- explorer: "53123.routescan.io"
17735
- },
17736
18139
  53188: {
17737
18140
  api: "https://api.routescan.io/v2/network/testnet/evm/53188/etherscan",
17738
18141
  explorer: "53188.routescan.io"
@@ -17753,10 +18156,6 @@ var routescanExplorers = {
17753
18156
  api: "https://api.routescan.io/v2/network/testnet/evm/55197/etherscan",
17754
18157
  explorer: "55197.routescan.io"
17755
18158
  },
17756
- 55551: {
17757
- api: "https://api.routescan.io/v2/network/testnet/evm/55551/etherscan",
17758
- explorer: "55551.routescan.io"
17759
- },
17760
18159
  56288: {
17761
18160
  api: "https://api.routescan.io/v2/network/mainnet/evm/56288/etherscan",
17762
18161
  explorer: "56288.routescan.io"
@@ -17785,10 +18184,6 @@ var routescanExplorers = {
17785
18184
  api: "https://api.routescan.io/v2/network/mainnet/evm/62521/etherscan",
17786
18185
  explorer: "62521.routescan.io"
17787
18186
  },
17788
- 62707: {
17789
- api: "https://api.routescan.io/v2/network/mainnet/evm/62707/etherscan",
17790
- explorer: "62707.routescan.io"
17791
- },
17792
18187
  62831: {
17793
18188
  api: "https://api.routescan.io/v2/network/testnet/evm/62831/etherscan",
17794
18189
  explorer: "62831.routescan.io"
@@ -17805,18 +18200,10 @@ var routescanExplorers = {
17805
18200
  api: "https://api.routescan.io/v2/network/testnet/evm/70800/etherscan",
17806
18201
  explorer: "70800.routescan.io"
17807
18202
  },
17808
- 70953: {
17809
- api: "https://api.routescan.io/v2/network/mainnet/evm/70953/etherscan",
17810
- explorer: "70953.routescan.io"
17811
- },
17812
18203
  76736: {
17813
18204
  api: "https://api.routescan.io/v2/network/testnet/evm/76736/etherscan",
17814
18205
  explorer: "76736.routescan.io"
17815
18206
  },
17816
- 78170: {
17817
- api: "https://api.routescan.io/v2/network/testnet/evm/78170/etherscan",
17818
- explorer: "78170.routescan.io"
17819
- },
17820
18207
  79554: {
17821
18208
  api: "https://api.routescan.io/v2/network/testnet/evm/79554/etherscan",
17822
18209
  explorer: "79554.routescan.io"
@@ -17833,10 +18220,6 @@ var routescanExplorers = {
17833
18220
  api: "https://api.routescan.io/v2/network/testnet/evm/80069/etherscan",
17834
18221
  explorer: "80069.routescan.io"
17835
18222
  },
17836
- 80084: {
17837
- api: "https://api.routescan.io/v2/network/testnet/evm/80084/etherscan",
17838
- explorer: "80084.routescan.io"
17839
- },
17840
18223
  80085: {
17841
18224
  api: "https://api.routescan.io/v2/network/testnet/evm/80085/etherscan",
17842
18225
  explorer: "80085.routescan.io"
@@ -17873,9 +18256,9 @@ var routescanExplorers = {
17873
18256
  api: "https://api.routescan.io/v2/network/testnet/evm/97433/etherscan",
17874
18257
  explorer: "97433.routescan.io"
17875
18258
  },
17876
- 124832: {
17877
- api: "https://api.routescan.io/v2/network/testnet/evm/124832/etherscan",
17878
- explorer: "124832.routescan.io"
18259
+ 124816: {
18260
+ api: "https://api.routescan.io/v2/network/mainnet/evm/124816/etherscan",
18261
+ explorer: "124816.routescan.io"
17879
18262
  },
17880
18263
  132008: {
17881
18264
  api: "https://api.routescan.io/v2/network/testnet/evm/132008/etherscan",
@@ -17913,10 +18296,6 @@ var routescanExplorers = {
17913
18296
  api: "https://api.routescan.io/v2/network/mainnet/evm/432204/etherscan",
17914
18297
  explorer: "432204.routescan.io"
17915
18298
  },
17916
- 504441: {
17917
- api: "https://api.routescan.io/v2/network/mainnet/evm/504441/etherscan",
17918
- explorer: "504441.routescan.io"
17919
- },
17920
18299
  555666: {
17921
18300
  api: "https://api.routescan.io/v2/network/testnet/evm/555666/etherscan",
17922
18301
  explorer: "555666.routescan.io"
@@ -17957,14 +18336,6 @@ var routescanExplorers = {
17957
18336
  api: "https://api.routescan.io/v2/network/testnet/evm/11155420/etherscan",
17958
18337
  explorer: "11155420.routescan.io"
17959
18338
  },
17960
- 11155931: {
17961
- api: "https://api.routescan.io/v2/network/testnet/evm/11155931/etherscan",
17962
- explorer: "11155931.routescan.io"
17963
- },
17964
- 12345678: {
17965
- api: "https://api.routescan.io/v2/network/mainnet/evm/12345678/etherscan",
17966
- explorer: "12345678.routescan.io"
17967
- },
17968
18339
  13068200: {
17969
18340
  api: "https://api.routescan.io/v2/network/testnet/evm/13068200/etherscan",
17970
18341
  explorer: "13068200.routescan.io"
@@ -17985,10 +18356,6 @@ var routescanExplorers = {
17985
18356
  api: "https://api.routescan.io/v2/network/testnet/evm/168587773/etherscan",
17986
18357
  explorer: "168587773.routescan.io"
17987
18358
  },
17988
- 333000333: {
17989
- api: "https://api.routescan.io/v2/network/mainnet/evm/333000333/etherscan",
17990
- explorer: "333000333.routescan.io"
17991
- },
17992
18359
  42012e4: {
17993
18360
  api: "https://api.routescan.io/v2/network/testnet/evm/420120000/etherscan",
17994
18361
  explorer: "420120000.routescan.io"
@@ -18408,6 +18775,8 @@ var alchemyNetworkMap = {
18408
18775
  545: "flow-testnet",
18409
18776
  592: "astar-mainnet",
18410
18777
  747: "flow-mainnet",
18778
+ 869: "worldmobilechain-mainnet",
18779
+ 998: "hyperliquid-testnet",
18411
18780
  999: "hyperliquid-mainnet",
18412
18781
  1088: "metis-mainnet",
18413
18782
  1101: "polygonzkevm-mainnet",
@@ -18474,15 +18843,17 @@ var alchemyNetworkMap = {
18474
18843
  763373: "ink-sepolia",
18475
18844
  6985385: "humanity-mainnet",
18476
18845
  7777777: "zora-mainnet",
18846
+ 11142220: "celo-sepolia",
18477
18847
  11155111: "eth-sepolia",
18478
18848
  11155420: "opt-sepolia",
18479
18849
  11155931: "rise-testnet",
18480
18850
  168587773: "blast-sepolia",
18481
18851
  241320161: "xmtp-testnet",
18852
+ 351243127: "xmtp-ropsten",
18482
18853
  666666666: "degen-mainnet",
18483
18854
  994873017: "lumia-prism",
18484
18855
  999999999: "zora-sepolia",
18485
- 1952959480: "lumia-testnet",
18856
+ 2030232745: "lumia-beam",
18486
18857
  "null": "aptos-testnet"
18487
18858
  };
18488
18859
 
@@ -18535,6 +18906,7 @@ var quicknodeNetworkMap = {
18535
18906
  8217: "kaia-mainnet",
18536
18907
  8333: "b3-mainnet",
18537
18908
  8453: "base-mainnet",
18909
+ 9745: "plasma-mainnet",
18538
18910
  9746: "plasma-testnet",
18539
18911
  11124: "abstract-testnet",
18540
18912
  13371: "imx-mainnet",
@@ -18586,7 +18958,6 @@ var tenderlyNetworkMap = {
18586
18958
  300: "zksync-sepolia",
18587
18959
  324: "zksync",
18588
18960
  480: "worldchain-mainnet",
18589
- 919: "mode-sepolia",
18590
18961
  1088: "metis-andromeda",
18591
18962
  1135: "lisk",
18592
18963
  1284: "moonbeam",
@@ -18611,19 +18982,19 @@ var tenderlyNetworkMap = {
18611
18982
  7887: "kinto",
18612
18983
  8008: "polynomial",
18613
18984
  8453: "base",
18985
+ 9069: "af-nexus-mainnet",
18614
18986
  9070: "af-nexus-testnet",
18615
18987
  9728: "boba-bnb-testnet",
18988
+ 9745: "plasma",
18616
18989
  9746: "plasma-testnet",
18617
18990
  11069: "interval-testnet",
18618
18991
  12739: "concrete",
18619
18992
  13371: "immutable",
18620
18993
  13473: "immutable-testnet",
18621
18994
  17e3: "holesky",
18622
- 18233: "tangible-unreal",
18623
18995
  28882: "boba-sepolia",
18624
18996
  33111: "curtis",
18625
18997
  33139: "apechain",
18626
- 34443: "mode",
18627
18998
  37111: "lens-sepolia",
18628
18999
  42161: "arbitrum",
18629
19000
  42170: "arbitrum-nova",
@@ -18648,7 +19019,6 @@ var tenderlyNetworkMap = {
18648
19019
  80094: "berachain",
18649
19020
  81457: "blast",
18650
19021
  84532: "base-sepolia",
18651
- 111188: "tangible-real",
18652
19022
  129399: "katana-tatara",
18653
19023
  167e3: "taiko-mainnet",
18654
19024
  167009: "taiko-hekla",
@@ -19298,6 +19668,10 @@ var blockscoutExplorers = {
19298
19668
  api: "https://scan.idn-network.com/api",
19299
19669
  explorer: "https://scan.idn-network.com/"
19300
19670
  },
19671
+ 216: {
19672
+ api: "https://explorer.testnet.happy.tech/api",
19673
+ explorer: "https://explorer.testnet.happy.tech/"
19674
+ },
19301
19675
  227: {
19302
19676
  api: "https://promscan.io/api",
19303
19677
  explorer: "https://promscan.io/"
@@ -19326,6 +19700,10 @@ var blockscoutExplorers = {
19326
19700
  api: "https://blockscout.kroma.network/api",
19327
19701
  explorer: "https://blockscout.kroma.network/"
19328
19702
  },
19703
+ 273: {
19704
+ api: "https://xr1.calderaexplorer.xyz/api",
19705
+ explorer: "https://xr1.calderaexplorer.xyz/"
19706
+ },
19329
19707
  277: {
19330
19708
  api: "https://testnet.ozonescan.io/api",
19331
19709
  explorer: "https://testnet.ozonescan.io/"
@@ -19390,10 +19768,18 @@ var blockscoutExplorers = {
19390
19768
  api: "https://explorer.appchain.xyz/api",
19391
19769
  explorer: "https://explorer.appchain.xyz/"
19392
19770
  },
19771
+ 475: {
19772
+ api: "https://testnet-explorer.playontoy.com/api",
19773
+ explorer: "https://testnet-explorer.playontoy.com/"
19774
+ },
19393
19775
  480: {
19394
19776
  api: "https://worldchain-mainnet.explorer.alchemy.com/api",
19395
19777
  explorer: "https://worldchain-mainnet.explorer.alchemy.com"
19396
19778
  },
19779
+ 484: {
19780
+ api: "https://blocksurety.net/api",
19781
+ explorer: "https://blocksurety.net/"
19782
+ },
19397
19783
  528: {
19398
19784
  api: "https://egonscan.com/api",
19399
19785
  explorer: "https://egonscan.com"
@@ -19434,6 +19820,10 @@ var blockscoutExplorers = {
19434
19820
  api: "https://explorer-mainnet-cardano-evm.c1.milkomeda.com/api",
19435
19821
  explorer: "https://explorer-mainnet-cardano-evm.c1.milkomeda.com/"
19436
19822
  },
19823
+ 616: {
19824
+ api: "https://studio-chain.explorer.caldera.xyz/api",
19825
+ explorer: "https://studio-chain.explorer.caldera.xyz/"
19826
+ },
19437
19827
  633: {
19438
19828
  api: "https://explorer.exosama.com/api",
19439
19829
  explorer: "https://explorer.exosama.com/"
@@ -19546,6 +19936,10 @@ var blockscoutExplorers = {
19546
19936
  api: "https://explorer.diadata.org/api",
19547
19937
  explorer: "https://explorer.diadata.org/"
19548
19938
  },
19939
+ 1071: {
19940
+ api: "https://mbs.ogpuscan.io/api",
19941
+ explorer: "https://mbs.ogpuscan.io/"
19942
+ },
19549
19943
  1073: {
19550
19944
  api: "https://explorer.evm.testnet.shimmer.network/api",
19551
19945
  explorer: "https://explorer.evm.testnet.shimmer.network/"
@@ -19646,6 +20040,10 @@ var blockscoutExplorers = {
19646
20040
  api: "https://blockscout.atlantischain.network/api",
19647
20041
  explorer: "https://blockscout.atlantischain.network/"
19648
20042
  },
20043
+ 1345: {
20044
+ api: "https://openzk.calderaexplorer.xyz/api",
20045
+ explorer: "https://openzk.calderaexplorer.xyz/"
20046
+ },
19649
20047
  1370: {
19650
20048
  api: "https://ramascan.com/api",
19651
20049
  explorer: "https://ramascan.com/"
@@ -19678,6 +20076,10 @@ var blockscoutExplorers = {
19678
20076
  api: "https://scan-canary.bevm.io/api",
19679
20077
  explorer: "https://scan-canary.bevm.io/"
19680
20078
  },
20079
+ 1512: {
20080
+ api: "https://devnet.storyscan.xyz/api",
20081
+ explorer: "https://devnet.storyscan.xyz/"
20082
+ },
19681
20083
  1514: {
19682
20084
  api: "https://www.storyscan.io/api",
19683
20085
  explorer: "https://www.storyscan.io/"
@@ -19770,6 +20172,10 @@ var blockscoutExplorers = {
19770
20172
  api: "https://testnet.bitciexplorer.com/api",
19771
20173
  explorer: "https://testnet.bitciexplorer.com"
19772
20174
  },
20175
+ 1923: {
20176
+ api: "https://explorer.swellnetwork.io/api",
20177
+ explorer: "https://explorer.swellnetwork.io/"
20178
+ },
19773
20179
  1924: {
19774
20180
  api: "https://swell-testnet-explorer.alt.technology/api",
19775
20181
  explorer: "https://swell-testnet-explorer.alt.technology/"
@@ -19786,6 +20192,10 @@ var blockscoutExplorers = {
19786
20192
  api: "https://explorer3.redecoin.eu/api",
19787
20193
  explorer: "https://explorer3.redecoin.eu/"
19788
20194
  },
20195
+ 1992: {
20196
+ api: "https://sanko-arb-sepolia.explorer.caldera.xyz/api",
20197
+ explorer: "https://sanko-arb-sepolia.explorer.caldera.xyz/"
20198
+ },
19789
20199
  1993: {
19790
20200
  api: "https://sepolia.explorer.b3.fun/api",
19791
20201
  explorer: "https://sepolia.explorer.b3.fun/"
@@ -19818,6 +20228,10 @@ var blockscoutExplorers = {
19818
20228
  api: "https://saturn-explorer.swanchain.io/api",
19819
20229
  explorer: "https://saturn-explorer.swanchain.io/"
19820
20230
  },
20231
+ 2026: {
20232
+ api: "https://edgeless-mainnet.calderaexplorer.xyz/api",
20233
+ explorer: "https://edgeless-mainnet.calderaexplorer.xyz/"
20234
+ },
19821
20235
  2039: {
19822
20236
  api: "https://evm-explorer-testnet.alephzero.org/api",
19823
20237
  explorer: "https://evm-explorer-testnet.alephzero.org/"
@@ -19830,6 +20244,10 @@ var blockscoutExplorers = {
19830
20244
  api: "https://web3-explorer-mesos.thestratos.org/api",
19831
20245
  explorer: "https://web3-explorer-mesos.thestratos.org/"
19832
20246
  },
20247
+ 2099: {
20248
+ api: "https://prime-chain.explorer.caldera.xyz/api",
20249
+ explorer: "https://prime-chain.explorer.caldera.xyz/"
20250
+ },
19833
20251
  2192: {
19834
20252
  api: "https://explorer.snaxchain.io/api",
19835
20253
  explorer: "https://explorer.snaxchain.io/"
@@ -19858,6 +20276,10 @@ var blockscoutExplorers = {
19858
20276
  api: "https://explorer.karak.network/api",
19859
20277
  explorer: "https://explorer.karak.network/"
19860
20278
  },
20279
+ 2420: {
20280
+ api: "https://rufus.calderaexplorer.xyz/api",
20281
+ explorer: "https://rufus.calderaexplorer.xyz/"
20282
+ },
19861
20283
  2424: {
19862
20284
  api: "https://testnet.explorer.inevm.com/api",
19863
20285
  explorer: "https://testnet.explorer.inevm.com/"
@@ -19867,8 +20289,8 @@ var blockscoutExplorers = {
19867
20289
  explorer: "https://nowscan.io/"
19868
20290
  },
19869
20291
  2525: {
19870
- api: "https://explorer.inevm.com/api",
19871
- explorer: "https://explorer.inevm.com/"
20292
+ api: "https://inevm.calderaexplorer.xyz/api",
20293
+ explorer: "https://inevm.calderaexplorer.xyz/"
19872
20294
  },
19873
20295
  2649: {
19874
20296
  api: "https://mainnet-explorer.ailayer.xyz/api",
@@ -19890,6 +20312,10 @@ var blockscoutExplorers = {
19890
20312
  api: "https://explorer.morphl2.io/api",
19891
20313
  explorer: "https://explorer.morphl2.io/"
19892
20314
  },
20315
+ 2911: {
20316
+ api: "https://hychain.calderaexplorer.xyz/api",
20317
+ explorer: "https://hychain.calderaexplorer.xyz/"
20318
+ },
19893
20319
  2999: {
19894
20320
  api: "https://explorer.aevo.xyz/api",
19895
20321
  explorer: "https://explorer.aevo.xyz/"
@@ -19918,6 +20344,10 @@ var blockscoutExplorers = {
19918
20344
  api: "https://pepuscan.com/api",
19919
20345
  explorer: "https://pepuscan.com/"
19920
20346
  },
20347
+ 3443: {
20348
+ api: "https://rabble-chain-testnet.explorer.caldera.xyz/api",
20349
+ explorer: "https://rabble-chain-testnet.explorer.caldera.xyz/"
20350
+ },
19921
20351
  3502: {
19922
20352
  api: "https://exp.jfinpos.com/api",
19923
20353
  explorer: "https://exp.jfinpos.com/"
@@ -19934,6 +20364,10 @@ var blockscoutExplorers = {
19934
20364
  api: "https://testnet-explorer.tangle.tools/api",
19935
20365
  explorer: "https://testnet-explorer.tangle.tools/"
19936
20366
  },
20367
+ 3885: {
20368
+ api: "https://ghostrider-zkevm.firescan.io/api",
20369
+ explorer: "https://ghostrider-zkevm.firescan.io/"
20370
+ },
19937
20371
  3888: {
19938
20372
  api: "https://kalyscan.io/api",
19939
20373
  explorer: "https://kalyscan.io/"
@@ -19962,6 +20396,10 @@ var blockscoutExplorers = {
19962
20396
  api: "https://sepolia-blockscout.lisk.com/api",
19963
20397
  explorer: "https://sepolia-blockscout.lisk.com/"
19964
20398
  },
20399
+ 4221: {
20400
+ api: "https://genlayer-testnet.explorer.caldera.xyz/api",
20401
+ explorer: "https://genlayer-testnet.explorer.caldera.xyz/"
20402
+ },
19965
20403
  4355: {
19966
20404
  api: "https://bethscan.org/api",
19967
20405
  explorer: "https://bethscan.org/"
@@ -19974,6 +20412,14 @@ var blockscoutExplorers = {
19974
20412
  api: "https://hydragon.hydrachain.org/api",
19975
20413
  explorer: "https://hydragon.hydrachain.org/"
19976
20414
  },
20415
+ 4545: {
20416
+ api: "https://explore.emoney.network/api",
20417
+ explorer: "https://explore.emoney.network/"
20418
+ },
20419
+ 4547: {
20420
+ api: "https://explorer.trumpchain.dev/api",
20421
+ explorer: "https://explorer.trumpchain.dev/"
20422
+ },
19977
20423
  4613: {
19978
20424
  api: "https://veryscan.io/api",
19979
20425
  explorer: "https://veryscan.io/"
@@ -19998,25 +20444,21 @@ var blockscoutExplorers = {
19998
20444
  api: "https://blackfort.blockscout.com/api",
19999
20445
  explorer: "https://blackfort.blockscout.com/"
20000
20446
  },
20001
- 5e3: {
20002
- api: "https://explorer.mantle.xyz/api",
20003
- explorer: "https://explorer.mantle.xyz/"
20004
- },
20005
20447
  5002: {
20006
20448
  api: "https://evmexplorer.treasurenet.io/api",
20007
20449
  explorer: "https://evmexplorer.treasurenet.io"
20008
20450
  },
20009
- 5003: {
20010
- api: "https://explorer.sepolia.mantle.xyz/api",
20011
- explorer: "https://explorer.sepolia.mantle.xyz/"
20012
- },
20013
20451
  5101: {
20014
20452
  api: "https://explorer-frame.syndicate.io/api",
20015
20453
  explorer: "https://explorer-frame.syndicate.io/"
20016
20454
  },
20017
20455
  5112: {
20018
- api: "https://explorer.ham.fun/api",
20019
- explorer: "https://explorer.ham.fun/"
20456
+ api: "https://ham.calderaexplorer.xyz/api",
20457
+ explorer: "https://ham.calderaexplorer.xyz/"
20458
+ },
20459
+ 5124: {
20460
+ api: "https://explorer-2.seismicdev.net/api",
20461
+ explorer: "https://explorer-2.seismicdev.net/"
20020
20462
  },
20021
20463
  5151: {
20022
20464
  api: "https://testnet-scan.mechain.tech/api",
@@ -20054,6 +20496,26 @@ var blockscoutExplorers = {
20054
20496
  api: "https://explorer.tangle.tools/api",
20055
20497
  explorer: "https://explorer.tangle.tools"
20056
20498
  },
20499
+ 5920: {
20500
+ api: "https://chain-20.evm-testnet-blockscout.chainweb.com/api",
20501
+ explorer: "https://chain-20.evm-testnet-blockscout.chainweb.com/"
20502
+ },
20503
+ 5921: {
20504
+ api: "https://chain-21.evm-testnet-blockscout.chainweb.com/api",
20505
+ explorer: "https://chain-21.evm-testnet-blockscout.chainweb.com/"
20506
+ },
20507
+ 5922: {
20508
+ api: "https://chain-22.evm-testnet-blockscout.chainweb.com/api",
20509
+ explorer: "https://chain-22.evm-testnet-blockscout.chainweb.com/"
20510
+ },
20511
+ 5923: {
20512
+ api: "https://chain-23.evm-testnet-blockscout.chainweb.com/api",
20513
+ explorer: "https://chain-23.evm-testnet-blockscout.chainweb.com/"
20514
+ },
20515
+ 5924: {
20516
+ api: "https://chain-24.evm-testnet-blockscout.chainweb.com/api",
20517
+ explorer: "https://chain-24.evm-testnet-blockscout.chainweb.com/"
20518
+ },
20057
20519
  6278: {
20058
20520
  api: "https://explore.steamexchange.io/api",
20059
20521
  explorer: "https://explore.steamexchange.io/"
@@ -20110,6 +20572,10 @@ var blockscoutExplorers = {
20110
20572
  api: "https://bx.shyft.network/api",
20111
20573
  explorer: "https://bx.shyft.network/"
20112
20574
  },
20575
+ 7534: {
20576
+ api: "https://rivalz.calderaexplorer.xyz/api",
20577
+ explorer: "https://rivalz.calderaexplorer.xyz/"
20578
+ },
20113
20579
  7771: {
20114
20580
  api: "https://testnetscan.bit-rock.io/api",
20115
20581
  explorer: "https://testnetscan.bit-rock.io/"
@@ -20146,10 +20612,6 @@ var blockscoutExplorers = {
20146
20612
  api: "https://zentrace.io/api",
20147
20613
  explorer: "https://zentrace.io"
20148
20614
  },
20149
- 8428: {
20150
- api: "https://sei.blockscout.com/api",
20151
- explorer: "https://sei.blockscout.com/"
20152
- },
20153
20615
  8449: {
20154
20616
  api: "https://explorer.dev.deriw.com/api",
20155
20617
  explorer: "https://explorer.dev.deriw.com/"
@@ -20162,6 +20624,10 @@ var blockscoutExplorers = {
20162
20624
  api: "https://explorer.haven1.org/api",
20163
20625
  explorer: "https://explorer.haven1.org/"
20164
20626
  },
20627
+ 8818: {
20628
+ api: "https://explorer.clinkchain.io/api",
20629
+ explorer: "https://explorer.clinkchain.io/"
20630
+ },
20165
20631
  8822: {
20166
20632
  api: "https://explorer.evm.iota.org/api",
20167
20633
  explorer: "https://explorer.evm.iota.org/"
@@ -20222,6 +20688,10 @@ var blockscoutExplorers = {
20222
20688
  api: "https://testnet.pivotalscan.org/api",
20223
20689
  explorer: "https://testnet.pivotalscan.org/"
20224
20690
  },
20691
+ 9296: {
20692
+ api: "https://zaynzk-testnet.explorer.caldera.xyz/api",
20693
+ explorer: "https://zaynzk-testnet.explorer.caldera.xyz/"
20694
+ },
20225
20695
  9302: {
20226
20696
  api: "https://explorer-reticulum.galactica.com/api",
20227
20697
  explorer: "https://explorer-reticulum.galactica.com/"
@@ -20231,8 +20701,8 @@ var blockscoutExplorers = {
20231
20701
  explorer: "https://explorer.testnet.oasys.games/"
20232
20702
  },
20233
20703
  9897: {
20234
- api: "https://arena-z.blockscout.com/api",
20235
- explorer: "https://arena-z.blockscout.com"
20704
+ api: "https://testnet-explorer.arena-z.gg/api",
20705
+ explorer: "https://testnet-explorer.arena-z.gg/"
20236
20706
  },
20237
20707
  9898: {
20238
20708
  api: "https://scan.larissa.network/api",
@@ -20270,10 +20740,6 @@ var blockscoutExplorers = {
20270
20740
  api: "https://scan.worldland.foundation/api",
20271
20741
  explorer: "https://scan.worldland.foundation"
20272
20742
  },
20273
- 10888: {
20274
- api: "https://testnet.gameswift.io/api",
20275
- explorer: "https://testnet.gameswift.io/"
20276
- },
20277
20743
  10946: {
20278
20744
  api: "https://explorer.quadrans.io/api",
20279
20745
  explorer: "https://explorer.quadrans.io/"
@@ -20302,6 +20768,10 @@ var blockscoutExplorers = {
20302
20768
  api: "https://alpha.gelios.io/api",
20303
20769
  explorer: "https://alpha.gelios.io/"
20304
20770
  },
20771
+ 12323: {
20772
+ api: "https://huddle01.calderaexplorer.xyz/api",
20773
+ explorer: "https://huddle01.calderaexplorer.xyz/"
20774
+ },
20305
20775
  12553: {
20306
20776
  api: "https://scan.rss3.io/api",
20307
20777
  explorer: "https://scan.rss3.io/"
@@ -20326,6 +20796,14 @@ var blockscoutExplorers = {
20326
20796
  api: "https://testnet.game7.io/api",
20327
20797
  explorer: "https://testnet.game7.io/"
20328
20798
  },
20799
+ 14174: {
20800
+ api: "https://explorer.pecorino.signet.sh/api",
20801
+ explorer: "https://explorer.pecorino.signet.sh/"
20802
+ },
20803
+ 14235: {
20804
+ api: "https://bitlazer.calderaexplorer.xyz/api",
20805
+ explorer: "https://bitlazer.calderaexplorer.xyz/"
20806
+ },
20329
20807
  14800: {
20330
20808
  api: "https://moksha.vanascan.io/api",
20331
20809
  explorer: "https://moksha.vanascan.io/"
@@ -20351,8 +20829,8 @@ var blockscoutExplorers = {
20351
20829
  explorer: "https://eth-holesky.blockscout.com/"
20352
20830
  },
20353
20831
  17069: {
20354
- api: "https://garnet.blockscout.com/api",
20355
- explorer: "https://garnet.blockscout.com/"
20832
+ api: "https://explorer.garnetchain.com/api",
20833
+ explorer: "https://explorer.garnetchain.com/"
20356
20834
  },
20357
20835
  17071: {
20358
20836
  api: "https://explorer.onchainpoints.xyz/api",
@@ -20366,10 +20844,6 @@ var blockscoutExplorers = {
20366
20844
  api: "https://scan.mal.network/api",
20367
20845
  explorer: "https://scan.mal.network/"
20368
20846
  },
20369
- 18233: {
20370
- api: "https://unreal.blockscout.com/api",
20371
- explorer: "https://unreal.blockscout.com/"
20372
- },
20373
20847
  18880: {
20374
20848
  api: "https://blockscout-testnet.expchain.ai/api",
20375
20849
  explorer: "https://blockscout-testnet.expchain.ai/"
@@ -20390,6 +20864,10 @@ var blockscoutExplorers = {
20390
20864
  api: "https://ghadames.lbnchain.com/api",
20391
20865
  explorer: "https://ghadames.lbnchain.com/"
20392
20866
  },
20867
+ 22776: {
20868
+ api: "https://explorer.mapprotocol.io/api",
20869
+ explorer: "https://explorer.mapprotocol.io/"
20870
+ },
20393
20871
  24499: {
20394
20872
  api: "https://explorer.astrolayer.network/api",
20395
20873
  explorer: "https://explorer.astrolayer.network/"
@@ -20454,6 +20932,10 @@ var blockscoutExplorers = {
20454
20932
  api: "https://explorer.donatuz.com/api",
20455
20933
  explorer: "https://explorer.donatuz.com/"
20456
20934
  },
20935
+ 42101: {
20936
+ api: "https://donut.push.network/api",
20937
+ explorer: "https://donut.push.network/"
20938
+ },
20457
20939
  42161: {
20458
20940
  api: "https://arbitrum.blockscout.com/api",
20459
20941
  explorer: "https://arbitrum.blockscout.com/"
@@ -20498,6 +20980,10 @@ var blockscoutExplorers = {
20498
20980
  api: "https://celo-alfajores.blockscout.com/api",
20499
20981
  explorer: "https://celo-alfajores.blockscout.com/"
20500
20982
  },
20983
+ 45513: {
20984
+ api: "https://blessnet.calderaexplorer.xyz/api",
20985
+ explorer: "https://blessnet.calderaexplorer.xyz/"
20986
+ },
20501
20987
  47763: {
20502
20988
  api: "https://xexplorer.neo.org/api",
20503
20989
  explorer: "https://xexplorer.neo.org/"
@@ -20586,6 +21072,10 @@ var blockscoutExplorers = {
20586
21072
  api: "https://explorer-sepolia.perennial.foundation/api",
20587
21073
  explorer: "https://explorer-sepolia.perennial.foundation/"
20588
21074
  },
21075
+ 61224: {
21076
+ api: "https://oceanum-testnet.explorer.caldera.xyz/api",
21077
+ explorer: "https://oceanum-testnet.explorer.caldera.xyz/"
21078
+ },
20589
21079
  61406: {
20590
21080
  api: "https://explorer.kaichain.net/api",
20591
21081
  explorer: "https://explorer.kaichain.net/"
@@ -20654,6 +21144,10 @@ var blockscoutExplorers = {
20654
21144
  api: "https://explorer.forta.org/api",
20655
21145
  explorer: "https://explorer.forta.org/"
20656
21146
  },
21147
+ 82614: {
21148
+ api: "https://vemp-horizon.calderaexplorer.xyz/api",
21149
+ explorer: "https://vemp-horizon.calderaexplorer.xyz/"
21150
+ },
20657
21151
  84532: {
20658
21152
  api: "https://base-sepolia.blockscout.com/api",
20659
21153
  explorer: "https://base-sepolia.blockscout.com/"
@@ -20667,8 +21161,8 @@ var blockscoutExplorers = {
20667
21161
  explorer: "https://hades.jbcha.in/"
20668
21162
  },
20669
21163
  91111: {
20670
- api: "https://explorer.henez.fi/api",
20671
- explorer: "https://explorer.henez.fi/"
21164
+ api: "https://henez.calderaexplorer.xyz/api",
21165
+ explorer: "https://henez.calderaexplorer.xyz/"
20672
21166
  },
20673
21167
  91120: {
20674
21168
  api: "https://explorer.chain.metadap.io/api",
@@ -20722,18 +21216,10 @@ var blockscoutExplorers = {
20722
21216
  api: "https://blockscan.marscredit.xyz/api",
20723
21217
  explorer: "https://blockscan.marscredit.xyz/"
20724
21218
  },
20725
- 111188: {
20726
- api: "https://explorer.re.al/api",
20727
- explorer: "https://explorer.re.al/"
20728
- },
20729
21219
  111222: {
20730
21220
  api: "https://explorer.librachain.com/api",
20731
21221
  explorer: "https://explorer.librachain.com/"
20732
21222
  },
20733
- 112112: {
20734
- api: "https://explorer.abc.t.raas.gelato.cloud/api",
20735
- explorer: "https://explorer.abc.t.raas.gelato.cloud/"
20736
- },
20737
21223
  112358: {
20738
21224
  api: "https://explorer.metachain.one/api",
20739
21225
  explorer: "https://explorer.metachain.one/"
@@ -20786,6 +21272,10 @@ var blockscoutExplorers = {
20786
21272
  api: "https://blockscout.platon.network/api",
20787
21273
  explorer: "https://blockscout.platon.network/"
20788
21274
  },
21275
+ 212e3: {
21276
+ api: "https://sxt-testnet-avail.explorer.caldera.xyz/api",
21277
+ explorer: "https://sxt-testnet-avail.explorer.caldera.xyz/"
21278
+ },
20789
21279
  222222: {
20790
21280
  api: "https://explorer.evm.hydration.cloud/api",
20791
21281
  explorer: "https://explorer.evm.hydration.cloud/"
@@ -20794,14 +21284,14 @@ var blockscoutExplorers = {
20794
21284
  api: "https://scan.conet.network/api",
20795
21285
  explorer: "https://scan.conet.network/"
20796
21286
  },
20797
- 241120: {
20798
- api: "https://andromeda.anomalyscan.io/api",
20799
- explorer: "https://andromeda.anomalyscan.io/"
20800
- },
20801
21287
  247253: {
20802
21288
  api: "https://explorer-testnet.saakuru.network/api",
20803
21289
  explorer: "https://explorer-testnet.saakuru.network/"
20804
21290
  },
21291
+ 258432: {
21292
+ api: "https://explorer.althea.link/api",
21293
+ explorer: "https://explorer.althea.link/"
21294
+ },
20805
21295
  281123: {
20806
21296
  api: "https://parthenon.athenescan.io/api",
20807
21297
  explorer: "https://parthenon.athenescan.io/"
@@ -20815,8 +21305,8 @@ var blockscoutExplorers = {
20815
21305
  explorer: "https://scan.parex.network/"
20816
21306
  },
20817
21307
  325e3: {
20818
- api: "https://camp-network-testnet.blockscout.com/api",
20819
- explorer: "https://camp-network-testnet.blockscout.com/"
21308
+ api: "https://basecamp.cloud.blockscout.com/api",
21309
+ explorer: "https://basecamp.cloud.blockscout.com/"
20820
21310
  },
20821
21311
  355113: {
20822
21312
  api: "https://explorer.testnet.bitfinity.network/api",
@@ -20826,13 +21316,17 @@ var blockscoutExplorers = {
20826
21316
  api: "https://metalscan.io/api",
20827
21317
  explorer: "https://metalscan.io/"
20828
21318
  },
21319
+ 383353: {
21320
+ api: "https://cheesechain.calderaexplorer.xyz/api",
21321
+ explorer: "https://cheesechain.calderaexplorer.xyz/"
21322
+ },
20829
21323
  412346: {
20830
21324
  api: "https://explorer-devnet.adventurelayer.xyz/api",
20831
21325
  explorer: "https://explorer-devnet.adventurelayer.xyz/"
20832
21326
  },
20833
21327
  444444: {
20834
- api: "https://sepolia-explorer.syndr.com/api",
20835
- explorer: "https://sepolia-explorer.syndr.com/"
21328
+ api: "https://syndr-l3-sepolia.explorer.caldera.xyz/api",
21329
+ explorer: "https://syndr-l3-sepolia.explorer.caldera.xyz/"
20836
21330
  },
20837
21331
  455214: {
20838
21332
  api: "https://testnet.deelance.com/api",
@@ -20855,8 +21349,12 @@ var blockscoutExplorers = {
20855
21349
  explorer: "https://scroll.blockscout.com"
20856
21350
  },
20857
21351
  543210: {
20858
- api: "https://explorer.zero.network/api",
20859
- explorer: "https://explorer.zero.network/"
21352
+ api: "https://zero-network.calderaexplorer.xyz/api",
21353
+ explorer: "https://zero-network.calderaexplorer.xyz/"
21354
+ },
21355
+ 559955: {
21356
+ api: "https://ungaii-chain-testnet.explorer.caldera.xyz/api",
21357
+ explorer: "https://ungaii-chain-testnet.explorer.caldera.xyz/"
20860
21358
  },
20861
21359
  560013: {
20862
21360
  api: "https://roguescan.io/api",
@@ -20871,8 +21369,8 @@ var blockscoutExplorers = {
20871
21369
  explorer: "https://testnet.crossscan.io/"
20872
21370
  },
20873
21371
  612055: {
20874
- api: "https://crossscan.io/api",
20875
- explorer: "https://crossscan.io/"
21372
+ api: "https://www.crossscan.io/api",
21373
+ explorer: "https://www.crossscan.io/"
20876
21374
  },
20877
21375
  622277: {
20878
21376
  api: "https://explorer.hypra.network/api",
@@ -20970,6 +21468,10 @@ var blockscoutExplorers = {
20970
21468
  api: "https://explorer.testnet.xrplevm.org/api",
20971
21469
  explorer: "https://explorer.testnet.xrplevm.org/"
20972
21470
  },
21471
+ 1632025: {
21472
+ api: "https://rayls-test-chain.explorer.caldera.xyz/api",
21473
+ explorer: "https://rayls-test-chain.explorer.caldera.xyz/"
21474
+ },
20973
21475
  1637450: {
20974
21476
  api: "https://xterio-testnet-explorer.alt.technology/api",
20975
21477
  explorer: "https://xterio-testnet-explorer.alt.technology/"
@@ -20982,6 +21484,14 @@ var blockscoutExplorers = {
20982
21484
  api: "https://devnet2blockscout.platon.network/api",
20983
21485
  explorer: "https://devnet2blockscout.platon.network/"
20984
21486
  },
21487
+ 2524852: {
21488
+ api: "https://huddle-testnet.explorer.caldera.xyz/api",
21489
+ explorer: "https://huddle-testnet.explorer.caldera.xyz/"
21490
+ },
21491
+ 3441006: {
21492
+ api: "https://manta-sepolia.explorer.caldera.xyz/api",
21493
+ explorer: "https://manta-sepolia.explorer.caldera.xyz/"
21494
+ },
20985
21495
  3502001: {
20986
21496
  api: "https://exp.opjfin.com/api",
20987
21497
  explorer: "https://exp.opjfin.com/"
@@ -21010,6 +21520,10 @@ var blockscoutExplorers = {
21010
21520
  api: "https://blockscout.xga.com/api",
21011
21521
  explorer: "https://blockscout.xga.com/"
21012
21522
  },
21523
+ 8884571: {
21524
+ api: "https://solo-testnet.explorer.caldera.xyz/api",
21525
+ explorer: "https://solo-testnet.explorer.caldera.xyz/"
21526
+ },
21013
21527
  9322252: {
21014
21528
  api: "https://xcap-mainnet.explorer.xcap.network/api",
21015
21529
  explorer: "https://xcap-mainnet.explorer.xcap.network/"
@@ -21018,10 +21532,14 @@ var blockscoutExplorers = {
21018
21532
  api: "https://blockscout.mainnet.fluence.dev/api",
21019
21533
  explorer: "https://blockscout.mainnet.fluence.dev"
21020
21534
  },
21021
- 10241025: {
21535
+ 10241024: {
21022
21536
  api: "https://explorer.alienxchain.io/api",
21023
21537
  explorer: "https://explorer.alienxchain.io/"
21024
21538
  },
21539
+ 11142220: {
21540
+ api: "https://celo-sepolia.blockscout.com/api",
21541
+ explorer: "https://celo-sepolia.blockscout.com/"
21542
+ },
21025
21543
  11155111: {
21026
21544
  api: "https://eth-sepolia.blockscout.com/api",
21027
21545
  explorer: "https://eth-sepolia.blockscout.com/"
@@ -21038,6 +21556,10 @@ var blockscoutExplorers = {
21038
21556
  api: "https://explorer.testnet.riselabs.xyz/api",
21039
21557
  explorer: "https://explorer.testnet.riselabs.xyz/"
21040
21558
  },
21559
+ 13863860: {
21560
+ api: "https://symbiosis.calderaexplorer.xyz/api",
21561
+ explorer: "https://symbiosis.calderaexplorer.xyz/"
21562
+ },
21041
21563
  16969696: {
21042
21564
  api: "https://privixscan.io/api",
21043
21565
  explorer: "https://privixscan.io/"
@@ -21162,6 +21684,10 @@ var blockscoutExplorers = {
21162
21684
  api: "https://explorer-testnet.haust.app/api",
21163
21685
  explorer: "https://explorer-testnet.haust.app/"
21164
21686
  },
21687
+ 1660990954: {
21688
+ api: "https://sepoliascan.status.network/api",
21689
+ explorer: "https://sepoliascan.status.network/"
21690
+ },
21165
21691
  16666e5: {
21166
21692
  api: "https://explorer.harmony.one/api",
21167
21693
  explorer: "https://explorer.harmony.one/"
@@ -21178,6 +21704,10 @@ var blockscoutExplorers = {
21178
21704
  api: "https://lumia-testnet-blockscout.eu-north-2.gateway.fm/api",
21179
21705
  explorer: "https://lumia-testnet-blockscout.eu-north-2.gateway.fm/"
21180
21706
  },
21707
+ 2030232745: {
21708
+ api: "https://beam-explorer.lumia.org/api",
21709
+ explorer: "https://beam-explorer.lumia.org/"
21710
+ },
21181
21711
  2046399126: {
21182
21712
  api: "https://elated-tan-skat.explorer.mainnet.skalenodes.com/api",
21183
21713
  explorer: "https://elated-tan-skat.explorer.mainnet.skalenodes.com/"
@@ -21215,8 +21745,8 @@ var blockscoutExplorers = {
21215
21745
  explorer: "https://zeniqscan.com"
21216
21746
  },
21217
21747
  NaN: {
21218
- api: "https://evmexplorer.velas.com/api",
21219
- explorer: "https://evmexplorer.velas.com/"
21748
+ api: "https://testnet-explorer.playontoy.com/api",
21749
+ explorer: "https://testnet-explorer.playontoy.com/"
21220
21750
  }
21221
21751
  };
21222
21752
 
@@ -21373,6 +21903,12 @@ var chainlinkFeeds = {
21373
21903
  "decimals": 18,
21374
21904
  "name": "TUSD Reserves"
21375
21905
  },
21906
+ {
21907
+ "contractAddress": "0x1Af88ebE66a229A47d8Ca283fBcCc8C92CD4fb26",
21908
+ "proxyAddress": "0x1e9cb00c0AC8d2a171f44E63bE7532AD7224F6D1",
21909
+ "decimals": 1,
21910
+ "name": "Real GDP \u2014 Percent Change (Annual Rate)"
21911
+ },
21376
21912
  {
21377
21913
  "contractAddress": "0x1DA1DdED0eFEB6eB7A5955502B892f8979af65DF",
21378
21914
  "proxyAddress": "0xFF3EEb22B5E3dE6e705b44749C2559d704923FD7",
@@ -21409,6 +21945,12 @@ var chainlinkFeeds = {
21409
21945
  "decimals": 18,
21410
21946
  "name": "COMP / ETH"
21411
21947
  },
21948
+ {
21949
+ "contractAddress": "0x206f1712629c23D107AFc4744622D9d815cBB645",
21950
+ "proxyAddress": "0x2F1494543bffb3022bf8Cb18C251D2286C98A85F",
21951
+ "decimals": 3,
21952
+ "name": "PCE Price Index \u2014 Level"
21953
+ },
21412
21954
  {
21413
21955
  "contractAddress": "0x20938e1f96DD1908c4B7eFB6D84F3b81808F4827",
21414
21956
  "proxyAddress": "0xbCF5792575bA3A875D8C406F4E7270f51a902539",
@@ -21529,6 +22071,12 @@ var chainlinkFeeds = {
21529
22071
  "decimals": 6,
21530
22072
  "name": "USCC NAV - Aave LlamaRisk"
21531
22073
  },
22074
+ {
22075
+ "contractAddress": "0x3D01b1956d6745Bd77Fb432F448E802145E4aeF1",
22076
+ "proxyAddress": "0x2b94a8B3E478a2984A0b50a4bB0F19827Ad0cef3",
22077
+ "decimals": 3,
22078
+ "name": "Real GDP - Level"
22079
+ },
21532
22080
  {
21533
22081
  "contractAddress": "0x3E9348C8a83549B594C51D5539f0Db4E3B0B5D90",
21534
22082
  "proxyAddress": "0xeb988B77b94C186053282BfcD8B7ED55142D3cAB",
@@ -21729,7 +22277,7 @@ var chainlinkFeeds = {
21729
22277
  "contractAddress": "0x5Eb719ab8afd65b35195A8C3FD343aD86C2044A3",
21730
22278
  "proxyAddress": "0xADcc914F882965Ef1B2f1043522b3B81ED081491",
21731
22279
  "decimals": 8,
21732
- "name": "bgBTC Proof of Reserves"
22280
+ "name": "BGBTC Proof of Reserves"
21733
22281
  },
21734
22282
  {
21735
22283
  "contractAddress": "0x5a0efD6D1a058A46D3Ac4511861adB8F3540BD49",
@@ -21755,6 +22303,12 @@ var chainlinkFeeds = {
21755
22303
  "decimals": 18,
21756
22304
  "name": "xSolvBTC Proof of Reserves"
21757
22305
  },
22306
+ {
22307
+ "contractAddress": "0x619814f811D840E4020aF58b3f1f1d86be304129",
22308
+ "proxyAddress": "0x171e3Ec9377FeBad8d26967f1B1d6383Ae037997",
22309
+ "decimals": 18,
22310
+ "name": "SUSD1+-USD1 Exchange Rate"
22311
+ },
21758
22312
  {
21759
22313
  "contractAddress": "0x62a897c3e81d809c7444BB63D7D51E1F2EbB6C3D",
21760
22314
  "proxyAddress": "0x9B4a96210bc8D9D55b1908B465D8B0de68B7fF83",
@@ -21962,6 +22516,12 @@ var chainlinkFeeds = {
21962
22516
  "decimals": 8,
21963
22517
  "name": "SHV / USD"
21964
22518
  },
22519
+ {
22520
+ "contractAddress": "0x84455DeB8f606b83E7C4E6bCBbF18AC050C780F9",
22521
+ "proxyAddress": "0x4e25cfdc5f53c2CdeD13c1472E628eFd35c99C83",
22522
+ "decimals": 18,
22523
+ "name": "SOLVBTC / BTC Exchange Rate"
22524
+ },
21965
22525
  {
21966
22526
  "contractAddress": "0x8476b81b4dE6eD493383fA2A2851Ec590207ebAC",
21967
22527
  "proxyAddress": "0xeF8A4aF35cd47424672E3C590aBD37FBB7A7759a",
@@ -21992,6 +22552,12 @@ var chainlinkFeeds = {
21992
22552
  "decimals": 8,
21993
22553
  "name": "USTB AUM"
21994
22554
  },
22555
+ {
22556
+ "contractAddress": "0x88cedA42c33fd19D58E161964190377b9eE01500",
22557
+ "proxyAddress": "0xA5265f5B54D0AdD0D48BE88BC3CB0Cdb1a54B816",
22558
+ "decimals": 3,
22559
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Level"
22560
+ },
21995
22561
  {
21996
22562
  "contractAddress": "0x88db96ca551e0A0a2D8646999410b60197979311",
21997
22563
  "proxyAddress": "0xD10aBbC76679a20055E167BB80A24ac851b37056",
@@ -22124,6 +22690,12 @@ var chainlinkFeeds = {
22124
22690
  "decimals": 8,
22125
22691
  "name": "SPELL / USD"
22126
22692
  },
22693
+ {
22694
+ "contractAddress": "0x997A883dC034ae61d44B19A9f3Ce06ff341a8821",
22695
+ "proxyAddress": "0xB06A26DF4Ab5853AaCCF2d21FAa00B82362684C3",
22696
+ "decimals": 1,
22697
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Percent Change (Annual Rate)"
22698
+ },
22127
22699
  {
22128
22700
  "contractAddress": "0x99BC071f317BEF648E5e84f7E0600423360C0Cd1",
22129
22701
  "proxyAddress": "0xad4A9bED9a5E2c1c9a6E43D35Db53c83873dd901",
@@ -22341,6 +22913,12 @@ var chainlinkFeeds = {
22341
22913
  "decimals": 0,
22342
22914
  "name": "Arbitrum Healthcheck"
22343
22915
  },
22916
+ {
22917
+ "contractAddress": "0xAfDA097A70d1AF8D93874Dd8cD55b7E082b5ee57",
22918
+ "proxyAddress": "0x46cE854814ea38A4857AeA23aE7759b3A7970e4a",
22919
+ "decimals": 18,
22920
+ "name": "xSolvBTC NAV"
22921
+ },
22344
22922
  {
22345
22923
  "contractAddress": "0xB30Aae40B630500D5c8140B7d1E5Bb1d61C86B64",
22346
22924
  "proxyAddress": "0xD93571A6201978976e37c4A0F7bE17806f2Feab2",
@@ -22432,6 +23010,12 @@ var chainlinkFeeds = {
22432
23010
  "decimals": 8,
22433
23011
  "name": "wstETH / USD Calculated"
22434
23012
  },
23013
+ {
23014
+ "contractAddress": "0xD7496378523f90f1e82dA528F385B2B30120afE2",
23015
+ "proxyAddress": "0x14f0737d6b705259e521EA6E9E3506AC78dBd311",
23016
+ "decimals": 8,
23017
+ "name": "USDG / USD"
23018
+ },
22435
23019
  {
22436
23020
  "contractAddress": "0xDAE05e337C56CD1b988Fd7a6B74e8BbD3028C4C6",
22437
23021
  "proxyAddress": "0x8350b7De6a6a2C1368E7D4Bd968190e13E354297",
@@ -22499,6 +23083,12 @@ var chainlinkFeeds = {
22499
23083
  "decimals": 8,
22500
23084
  "name": "ATH / USD"
22501
23085
  },
23086
+ {
23087
+ "contractAddress": "0xF69C2CdFa50C970235d059DfeEE767b27E02F260",
23088
+ "proxyAddress": "0x64c4c1BF5ec145CB6095A289249592B5bb007098",
23089
+ "decimals": 1,
23090
+ "name": "PCE Price Index \u2014 Percent Change (Annual Rate)"
23091
+ },
22502
23092
  {
22503
23093
  "contractAddress": "0xF816091bA795C1b55859599fcDa8f786B2816e01",
22504
23094
  "proxyAddress": "0xFC9e30Cf89f8A00dba3D34edf8b65BCDAdeCC1cB",
@@ -22663,6 +23253,12 @@ var chainlinkFeeds = {
22663
23253
  "name": "AAVE / USD",
22664
23254
  "secondaryProxyAddress": "0xF02C1e2A3B77c1cacC72f72B44f7d0a4c62e4a85"
22665
23255
  },
23256
+ {
23257
+ "contractAddress": "0xcd2D4e80aA0E93d4e788f037A79ab597E0857917",
23258
+ "proxyAddress": "0x16caE6d6ffb4AE01e206b928de925Ac0C8C8116A",
23259
+ "decimals": 8,
23260
+ "name": "cUSD AUM"
23261
+ },
22666
23262
  {
22667
23263
  "contractAddress": "0xced238b8B9D39f2B1CD42adbEeFBB85cd46C14F2",
22668
23264
  "proxyAddress": "0x269f871c80b50a5cF34cDfCfEC11460adA4D66f1",
@@ -22743,6 +23339,12 @@ var chainlinkFeeds = {
22743
23339
  "decimals": 8,
22744
23340
  "name": "MKR / USD"
22745
23341
  },
23342
+ {
23343
+ "contractAddress": "0xe9cf7cF5827e45407448B50cDC0aed5C798037A4",
23344
+ "proxyAddress": "0x14E5FC91Ddb3f97C33013Cc9fA74F54062Ad1Aa1",
23345
+ "decimals": 8,
23346
+ "name": "WLFI / USD"
23347
+ },
22746
23348
  {
22747
23349
  "contractAddress": "0xf17CB308606999DF25F5d4B9f74bD9fe47A5b3b3",
22748
23350
  "proxyAddress": "0xAbE7a3643615Ed32d3431e11E0Ee5A486Cb27d48",
@@ -22829,6 +23431,12 @@ var chainlinkFeeds = {
22829
23431
  "decimals": 8,
22830
23432
  "name": "sUSDe / USD"
22831
23433
  },
23434
+ {
23435
+ "contractAddress": "0x070c58467E2a9b55B094936F500c297C84020c68",
23436
+ "proxyAddress": "0x8158d24603296Ce54ba903c7D5299E3B6744b555",
23437
+ "decimals": 1,
23438
+ "name": "PCE Price Index \u2014 Percent Change (Annual Rate)"
23439
+ },
22832
23440
  {
22833
23441
  "contractAddress": "0x0C1272d2aC652D10d03bb4dEB0D31F15ea3EAb2b",
22834
23442
  "proxyAddress": "0xD702DD976Fb76Fffc2D3963D037dfDae5b04E593",
@@ -22871,6 +23479,18 @@ var chainlinkFeeds = {
22871
23479
  "decimals": 8,
22872
23480
  "name": "STETH / USD"
22873
23481
  },
23482
+ {
23483
+ "contractAddress": "0x1343bCF0AD22235f5673B4C172b43401b31e95F8",
23484
+ "proxyAddress": "0xc3cda94d924Eb5c1b0b64e05F01487d30dA3f235",
23485
+ "decimals": 1,
23486
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Percent Change (Annual Rate)"
23487
+ },
23488
+ {
23489
+ "contractAddress": "0x137b5b4502a65C15171a0Ce784483Aa82c740c5b",
23490
+ "proxyAddress": "0xfBe83018d075bDD6AffBe85E5F1E37f0b43bf1F6",
23491
+ "decimals": 3,
23492
+ "name": "Real GDP \u2014 Level"
23493
+ },
22874
23494
  {
22875
23495
  "contractAddress": "0x13f11f2139C10A48eCD7A6A14d804f90b2cFC89A",
22876
23496
  "proxyAddress": "0xc19d58652d6BfC6Db6FB3691eDA6Aa7f3379E4E9",
@@ -22949,12 +23569,6 @@ var chainlinkFeeds = {
22949
23569
  "decimals": 18,
22950
23570
  "name": "Synthetix Aggregator Issued Synths"
22951
23571
  },
22952
- {
22953
- "contractAddress": "0x2559AFace3EdBF4F233f01C26dD2F86B6deA4b25",
22954
- "proxyAddress": "0xA45881b63ff9BE3F9a3439CA0c002686e65a8ED5",
22955
- "decimals": 8,
22956
- "name": "USDM / USD"
22957
- },
22958
23572
  {
22959
23573
  "contractAddress": "0x25F99e20f894DAF1BD5008fC41B11195b433d1e4",
22960
23574
  "proxyAddress": "0x089730f866C6D478398ce1632C7C38677c475EC1",
@@ -22985,6 +23599,12 @@ var chainlinkFeeds = {
22985
23599
  "decimals": 8,
22986
23600
  "name": "ALGO / USD"
22987
23601
  },
23602
+ {
23603
+ "contractAddress": "0x2b6efc1eA650d5D566D1d4A7C1BE988bEF60A559",
23604
+ "proxyAddress": "0xA369969F522Fda5Ce1D3823d07A393C27b74f723",
23605
+ "decimals": 1,
23606
+ "name": "Real GDP \u2014 Percent Change (Annual Rate)"
23607
+ },
22988
23608
  {
22989
23609
  "contractAddress": "0x326698A9b7152b45CDB70aE33331c69305C039ea",
22990
23610
  "proxyAddress": "0x59F075967F0abB7E9FA623CbaAb7560704D67D15",
@@ -23219,6 +23839,12 @@ var chainlinkFeeds = {
23219
23839
  "decimals": 18,
23220
23840
  "name": "wstETH-stETH Exchange Rate"
23221
23841
  },
23842
+ {
23843
+ "contractAddress": "0x6cF3c03cc87b7fbA793d6cFcA6B36173a757D48E",
23844
+ "proxyAddress": "0xE036C2B215B2533BCE1c9D0436728cE8ABE5665D",
23845
+ "decimals": 3,
23846
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Level"
23847
+ },
23222
23848
  {
23223
23849
  "contractAddress": "0x6f0D003A0743F5acea5680B1D128bd433B07ffCE",
23224
23850
  "proxyAddress": "0xEEDF0B095B5dfe75F3881Cb26c19DA209A27463a",
@@ -23243,6 +23869,12 @@ var chainlinkFeeds = {
23243
23869
  "decimals": 8,
23244
23870
  "name": "XAU / USD"
23245
23871
  },
23872
+ {
23873
+ "contractAddress": "0x79D80df3432A4352b5CA2f4ed8262c2A0D63CA1e",
23874
+ "proxyAddress": "0x3E75C48A27b54dEEc3381689CfA9Ce41Ca55C050",
23875
+ "decimals": 3,
23876
+ "name": "PCE Price Index \u2014 Level"
23877
+ },
23246
23878
  {
23247
23879
  "contractAddress": "0x7A18889f137B593f4E03C0A698A4360f43d1731c",
23248
23880
  "proxyAddress": "0x805a61D54bb686e57F02D1EC96A1491C7aF40893",
@@ -23779,6 +24411,12 @@ var chainlinkFeeds = {
23779
24411
  "decimals": 8,
23780
24412
  "name": "COIN / USD"
23781
24413
  },
24414
+ {
24415
+ "contractAddress": "0x19ca88988De97Ab06a5aA74A0e87f5c11cb85fFd",
24416
+ "proxyAddress": "0x83B8DF906c631dD7460Ac875Dc02A62db1dcD37A",
24417
+ "decimals": 18,
24418
+ "name": "YUSD-USD Exchange Rate"
24419
+ },
23782
24420
  {
23783
24421
  "contractAddress": "0x1CCd2D51CeB8DbaC8070c6AAefB331f77703f368",
23784
24422
  "proxyAddress": "0x2e1C3b6Fcae47b20Dd343D9354F7B1140a1E6B27",
@@ -24031,6 +24669,12 @@ var chainlinkFeeds = {
24031
24669
  "decimals": 8,
24032
24670
  "name": "SPELL / USD"
24033
24671
  },
24672
+ {
24673
+ "contractAddress": "0x5c60391E1Be7c43b106Da2e6575b73A8b30eDC35",
24674
+ "proxyAddress": "0x08CA3ac4dE41F2791e8A247859d637a8977473D7",
24675
+ "decimals": 18,
24676
+ "name": "SUSD1+-USD1 Exchange Rate"
24677
+ },
24034
24678
  {
24035
24679
  "contractAddress": "0x5e54baAfaa95D7Cc131Ee5C162aB7cEfA7D9bB7A",
24036
24680
  "proxyAddress": "0xa679C72a97B654CFfF58aB704de3BA15Cde89B07",
@@ -24049,6 +24693,12 @@ var chainlinkFeeds = {
24049
24693
  "decimals": 8,
24050
24694
  "name": "C98 / USD"
24051
24695
  },
24696
+ {
24697
+ "contractAddress": "0x61cfCa48C17dD57ddabf909e059979067738682F",
24698
+ "proxyAddress": "0x68ff0d4499c68Cf4471143930422ae8F17f6Cd58",
24699
+ "decimals": 18,
24700
+ "name": "xSolvBTC NAV"
24701
+ },
24052
24702
  {
24053
24703
  "contractAddress": "0x638Ec95A8bDe3144Ba69498D07C20C0b7b779887",
24054
24704
  "proxyAddress": "0x7E728dFA6bCa9023d9aBeE759fDF56BEAb8aC7aD",
@@ -24187,6 +24837,12 @@ var chainlinkFeeds = {
24187
24837
  "decimals": 8,
24188
24838
  "name": "WOO / USD"
24189
24839
  },
24840
+ {
24841
+ "contractAddress": "0x8FDb1b2f55dEE293569337F5a8fCf587Cc10bA1A",
24842
+ "proxyAddress": "0xA40a0dC23D3A821fF5Ea9E23080B74DAC031158d",
24843
+ "decimals": 18,
24844
+ "name": "WSTUSR-STUSR Exchange Rate"
24845
+ },
24190
24846
  {
24191
24847
  "contractAddress": "0x8c434b25C0940f65577C59FB20796b67686AB548",
24192
24848
  "proxyAddress": "0x6b25F7f189c3f26d3caC43b754578b67Fc8d952A",
@@ -24229,6 +24885,12 @@ var chainlinkFeeds = {
24229
24885
  "decimals": 8,
24230
24886
  "name": "AUD / USD"
24231
24887
  },
24888
+ {
24889
+ "contractAddress": "0x993Ac25963E772829eb9d77e0283B46A3C200d89",
24890
+ "proxyAddress": "0x8fCC2d2973e3740c40aF00d030725A429cd24b57",
24891
+ "decimals": 8,
24892
+ "name": "TREE / USD"
24893
+ },
24232
24894
  {
24233
24895
  "contractAddress": "0x9D5763ca9a0BeC8bfC11603F37edA91Edca0CF2c",
24234
24896
  "proxyAddress": "0x058316f8Bb13aCD442ee7A216C7b60CFB4Ea1B53",
@@ -24379,6 +25041,12 @@ var chainlinkFeeds = {
24379
25041
  "decimals": 8,
24380
25042
  "name": "JPM / USD"
24381
25043
  },
25044
+ {
25045
+ "contractAddress": "0xE8E834A995E428eDcf4A8D321a917DCfe945c987",
25046
+ "proxyAddress": "0xD3F669EF5C364C14d353F46b1D1a048A846e00f1",
25047
+ "decimals": 8,
25048
+ "name": "WLFI / USD"
25049
+ },
24382
25050
  {
24383
25051
  "contractAddress": "0xEe38B8F8B17Baa11ca558a3214E3261527a044cf",
24384
25052
  "proxyAddress": "0x20123C6ebd45c6496102BeEA86e1a6616Ca547c6",
@@ -24857,6 +25525,12 @@ var chainlinkFeeds = {
24857
25525
  "decimals": 8,
24858
25526
  "name": "WBTC / USD"
24859
25527
  },
25528
+ {
25529
+ "contractAddress": "0x04864A3B353C0e15daF0719dAc8a75fC59f93251",
25530
+ "proxyAddress": "0xD2D1BdD220C35C27f70a2bE1eD6462cECAc76384",
25531
+ "decimals": 8,
25532
+ "name": "VanEck SMH MID iNAV"
25533
+ },
24860
25534
  {
24861
25535
  "contractAddress": "0x068b080722Eb04527B6ce15cde08D805c5934D5e",
24862
25536
  "proxyAddress": "0x8CE3cAc0E6635ce04783709ca3CC4F5fc5304299",
@@ -24875,6 +25549,12 @@ var chainlinkFeeds = {
24875
25549
  "decimals": 8,
24876
25550
  "name": "QUICK / USD"
24877
25551
  },
25552
+ {
25553
+ "contractAddress": "0x0BCa9d88c216EB35d34Fd642701cFaFc01cfA28d",
25554
+ "proxyAddress": "0x2A5e28b4F9Ecb01807CeEC25F7b0fcCafF3F6721",
25555
+ "decimals": 18,
25556
+ "name": "wstPOL-POL Exchange Rate"
25557
+ },
24878
25558
  {
24879
25559
  "contractAddress": "0x0bd714b38F0f15746f682Ed76ac5e2faA85A0088",
24880
25560
  "proxyAddress": "0x461c7B8D370a240DdB46B402748381C3210136b3",
@@ -25361,6 +26041,12 @@ var chainlinkFeeds = {
25361
26041
  "decimals": 8,
25362
26042
  "name": "XRP / USD"
25363
26043
  },
26044
+ {
26045
+ "contractAddress": "0x913dd0a902447c66b701F09eC71C97d9E218596c",
26046
+ "proxyAddress": "0x6b20c92A1D73A9232383DEcD698Ff559eFa0c31A",
26047
+ "decimals": 18,
26048
+ "name": "RYT Polygon Proof of Reserves"
26049
+ },
25364
26050
  {
25365
26051
  "contractAddress": "0x925cB7879e13f28e5dc43E0AF00Cf1141401B0B8",
25366
26052
  "proxyAddress": "0xe71A04ACe06e2667c7e1c802E998CBf44A6bf53C",
@@ -25813,6 +26499,12 @@ var chainlinkFeeds = {
25813
26499
  "decimals": 18,
25814
26500
  "name": "wstkscUSD / stkscUSD Exchange Rate"
25815
26501
  },
26502
+ {
26503
+ "contractAddress": "0x39C2123c9333B8e9f5C20837cb60388BafbF3f41",
26504
+ "proxyAddress": "0xD83083D9D899fB185CcaA8EC63F0582A2970373E",
26505
+ "decimals": 3,
26506
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Level"
26507
+ },
25816
26508
  {
25817
26509
  "contractAddress": "0x43F845f2b2D065EAB3c1BC9d16bc7c4214f323eC",
25818
26510
  "proxyAddress": "0x5e7B8000f967ada54eDb8696d21cCFEB7eC36EC6",
@@ -25867,6 +26559,12 @@ var chainlinkFeeds = {
25867
26559
  "decimals": 18,
25868
26560
  "name": "beS / S Exchange Rate"
25869
26561
  },
26562
+ {
26563
+ "contractAddress": "0x8a81D34b9A5EBd2b1a94ee4Bf47e5c43c67C22Dd",
26564
+ "proxyAddress": "0xB8deBF17f62838F56e4abc923aef4ad4716C105B",
26565
+ "decimals": 1,
26566
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Percent Change (Annual Rate)"
26567
+ },
25870
26568
  {
25871
26569
  "contractAddress": "0x901696563727e64DAD3e263efa3a100c4B8180ea",
25872
26570
  "proxyAddress": "0xACE5e348a341a740004304c2c228Af1A4581920F",
@@ -25879,6 +26577,18 @@ var chainlinkFeeds = {
25879
26577
  "decimals": 8,
25880
26578
  "name": "EUR / USD"
25881
26579
  },
26580
+ {
26581
+ "contractAddress": "0xA3c29ff79Ba1D36CFa12227D23ddDf33adb2C030",
26582
+ "proxyAddress": "0xba7e8ea9B592c0E6731000b9a186581224a09f69",
26583
+ "decimals": 3,
26584
+ "name": "PCE Price Index \u2014 Level"
26585
+ },
26586
+ {
26587
+ "contractAddress": "0xA41b06FC160520f50931269eF0593082af55a7e6",
26588
+ "proxyAddress": "0x852aE0B1Af1aAeDB0fC4428B4B24420780976ca8",
26589
+ "decimals": 1,
26590
+ "name": "PCE Price Index \u2014 Percent Change (Annual Rate)"
26591
+ },
25882
26592
  {
25883
26593
  "contractAddress": "0xB70b802953462312A47c857b940991108F8d43De",
25884
26594
  "proxyAddress": "0x790181e93e9F4Eedb5b864860C12e4d2CffFe73B",
@@ -25909,6 +26619,12 @@ var chainlinkFeeds = {
25909
26619
  "decimals": 18,
25910
26620
  "name": "wstkscETH / stkscETH Exchange Rate"
25911
26621
  },
26622
+ {
26623
+ "contractAddress": "0xD0c541D957388BFe9F8491E9A6d9841e47C9F55A",
26624
+ "proxyAddress": "0xA1d23D3FE32Ef45774D0f2170a7BEf21da09566b",
26625
+ "decimals": 3,
26626
+ "name": "Real GDP - Level"
26627
+ },
25912
26628
  {
25913
26629
  "contractAddress": "0xE7DA1DCCb395C6485002b9f72cbf6625e74eF5af",
25914
26630
  "proxyAddress": "0xdB17996a889706Bd67771dEa59E0Bf9453aF0CE4",
@@ -25927,6 +26643,18 @@ var chainlinkFeeds = {
25927
26643
  "decimals": 18,
25928
26644
  "name": "wanS / anS Exchange Rate"
25929
26645
  },
26646
+ {
26647
+ "contractAddress": "0xF8542c818fA99c13FaBFBBF0c19c8234C8E0FE06",
26648
+ "proxyAddress": "0x791b0Ece46914A7995CEbe6a62d6Be8A3c7b7FAF",
26649
+ "decimals": 1,
26650
+ "name": "Real GDP \u2014 Percent Change (Annual Rate)"
26651
+ },
26652
+ {
26653
+ "contractAddress": "0xFC1415403EbB0c693f9a7844b92aD2Ff24775C65",
26654
+ "proxyAddress": "0x7f9506FcBBc9881a316a0CacD0ae6958EE2b5c7d",
26655
+ "decimals": 18,
26656
+ "name": "WRSETH-ETH Exchange Rate"
26657
+ },
25930
26658
  {
25931
26659
  "contractAddress": "0xFa045796b34E514836edd857bBBaf93f313332B1",
25932
26660
  "proxyAddress": "0xB5882f52428d10C99BbF56539C02820dda809Ccf",
@@ -25995,12 +26723,36 @@ var chainlinkFeeds = {
25995
26723
  }
25996
26724
  ],
25997
26725
  "324": [
26726
+ {
26727
+ "contractAddress": "0x0b0BdF8a0d4aa1d26DB9Ee294FD06260f05f32Ea",
26728
+ "proxyAddress": "0x11353117EB9cd5179Bb7F54BB22d8274dc4f1db7",
26729
+ "decimals": 8,
26730
+ "name": "USD1 / USD"
26731
+ },
26732
+ {
26733
+ "contractAddress": "0x12C543B198a6f5Ce68B19C776661A118A01579Eb",
26734
+ "proxyAddress": "0x2CfAb79113c81ebD672bC77c5B88Fc803b64cA77",
26735
+ "decimals": 3,
26736
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Level"
26737
+ },
25998
26738
  {
25999
26739
  "contractAddress": "0x14B50fb1E41a0ab1d10844610442BBb21c25Ba10",
26000
26740
  "proxyAddress": "0x600E54Fc4cF6148Cd6696A3D37F5f672829BF7C2",
26001
26741
  "decimals": 18,
26002
26742
  "name": "ezETH / ETH"
26003
26743
  },
26744
+ {
26745
+ "contractAddress": "0x15c0CA3A6A7FB0634EBB228f4562aaBAdBcB5e73",
26746
+ "proxyAddress": "0x6E2Eb2F1E5d31Db83B6982a3E753F8615565fD1f",
26747
+ "decimals": 1,
26748
+ "name": "PCE Price Index \u2014 Percent Change (Annual Rate)"
26749
+ },
26750
+ {
26751
+ "contractAddress": "0x1c1b05629D10dbF3A18a9A2843b357b86d2b332d",
26752
+ "proxyAddress": "0xC7Bd1Ea3ec9D08C3068a63b7bd39799061bbb787",
26753
+ "decimals": 1,
26754
+ "name": "Real GDP \u2014 Percent Change (Annual Rate)"
26755
+ },
26004
26756
  {
26005
26757
  "contractAddress": "0x20561e34CD999C3A4aC0564da21Ef38232970C6C",
26006
26758
  "proxyAddress": "0x7a6333CaC589e9B11b1fEC190a5828272A2893B5",
@@ -26061,6 +26813,12 @@ var chainlinkFeeds = {
26061
26813
  "decimals": 8,
26062
26814
  "name": "USDC / USD"
26063
26815
  },
26816
+ {
26817
+ "contractAddress": "0x60feE434cd142D001B00E70d10D2D5c9A6AF83E3",
26818
+ "proxyAddress": "0x43b29AF5d5527ebe35c4788810D11BdbA9205669",
26819
+ "decimals": 1,
26820
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Percent Change (Annual Rate)"
26821
+ },
26064
26822
  {
26065
26823
  "contractAddress": "0x693Fc964496DD2951e9c5A4Beea713eA256c14b6",
26066
26824
  "proxyAddress": "0x93A08A9D592101938D4a63c86d0989d7018c00D9",
@@ -26091,6 +26849,12 @@ var chainlinkFeeds = {
26091
26849
  "decimals": 8,
26092
26850
  "name": "DAI / USD"
26093
26851
  },
26852
+ {
26853
+ "contractAddress": "0x97460913a0829432000bD64E0da2FC87986A6B17",
26854
+ "proxyAddress": "0x372A10990183E99FB29D4905b71f807ca5474827",
26855
+ "decimals": 3,
26856
+ "name": "Real GDP \u2014 Level"
26857
+ },
26094
26858
  {
26095
26859
  "contractAddress": "0xB3a51Fd02D9193209678f82077786f74040e6583",
26096
26860
  "proxyAddress": "0x2cC24D99500a134ea7f78736b5C329C84599fb1B",
@@ -26115,6 +26879,12 @@ var chainlinkFeeds = {
26115
26879
  "decimals": 18,
26116
26880
  "name": "Fidelity USD NAV"
26117
26881
  },
26882
+ {
26883
+ "contractAddress": "0xE0aEFE3cc2a4F3e861f8f99a7Df8d21c9CAd8C98",
26884
+ "proxyAddress": "0xFc325A8E212319855906C9d02d7795C06baa5fBD",
26885
+ "decimals": 3,
26886
+ "name": "PCE Price Index \u2014 Level"
26887
+ },
26118
26888
  {
26119
26889
  "contractAddress": "0xE45a3ab1a1CEDC47f704f83Ef7e28B9BB6b0594a",
26120
26890
  "proxyAddress": "0x4Cba285c15e3B540C474A114a7b135193e4f1EA6",
@@ -26133,12 +26903,6 @@ var chainlinkFeeds = {
26133
26903
  "decimals": 8,
26134
26904
  "name": "TRUMP / USD"
26135
26905
  },
26136
- {
26137
- "contractAddress": "0xF8c164F824F330B7534153F4b1aC6934A7BF44Df",
26138
- "proxyAddress": "0x6Ab6c24f9312a6cB458761143D373A8f11573C4B",
26139
- "decimals": 8,
26140
- "name": "USDM / USD"
26141
- },
26142
26906
  {
26143
26907
  "contractAddress": "0xa8a68eb87DF28D21Bb301aaDeA9437eb8bABDE40",
26144
26908
  "proxyAddress": "0xB615075979AE1836B476F651f1eB79f0Cd3956a9",
@@ -26397,6 +27161,12 @@ var chainlinkFeeds = {
26397
27161
  "decimals": 8,
26398
27162
  "name": "USDC / USD"
26399
27163
  },
27164
+ {
27165
+ "contractAddress": "0x26B58128cf3ec5A5D33B91dE1FBB30eb506c5ed3",
27166
+ "proxyAddress": "0x8A6D34330E8F61364a62899fD0a8F4C4021e3296",
27167
+ "decimals": 1,
27168
+ "name": "Real GDP \u2014 Percent Change (Annual Rate)"
27169
+ },
26400
27170
  {
26401
27171
  "contractAddress": "0x3601200E59D94C41904C91cAb65023F3501a06b6",
26402
27172
  "proxyAddress": "0x5871AdBEEdAD531C68A8FD32fE86f07d6b4C645d",
@@ -26421,18 +27191,54 @@ var chainlinkFeeds = {
26421
27191
  "decimals": 18,
26422
27192
  "name": "mETH / ETH"
26423
27193
  },
27194
+ {
27195
+ "contractAddress": "0x5322FD76c5002a9ead0353fF78C22f43c2F68Bb9",
27196
+ "proxyAddress": "0x5fc69E6bA39D9150D41B4FFBDa3Deb1b9Bd4611A",
27197
+ "decimals": 3,
27198
+ "name": "Real GDP - Level"
27199
+ },
26424
27200
  {
26425
27201
  "contractAddress": "0x5Df8fA6329dcE7528ec1d00C31A0F877D13ecff1",
26426
27202
  "proxyAddress": "0x02959651ED50f9866BF39D29884dF245D03FdC51",
26427
27203
  "decimals": 18,
26428
27204
  "name": "Calculated cmETH / ETH"
26429
27205
  },
27206
+ {
27207
+ "contractAddress": "0x7A9BFC7B172a782Bd6AF20A1383F32696D6aa4f9",
27208
+ "proxyAddress": "0x80C42686a5F953d3c629cb5a35BCC86B1Ddd21e3",
27209
+ "decimals": 18,
27210
+ "name": "Calculated cmETH / USD"
27211
+ },
26430
27212
  {
26431
27213
  "contractAddress": "0x874effca5376D434d49021B3638d1e1BC214EC27",
26432
27214
  "proxyAddress": "0x73b15e19b247263D03D7938f1356304b7B330Ff0",
26433
27215
  "decimals": 18,
26434
27216
  "name": "Calculated FBTC / USD"
26435
27217
  },
27218
+ {
27219
+ "contractAddress": "0x9059Abe9ac035c30cbB90CA4faDEc3994b7dd04d",
27220
+ "proxyAddress": "0x4F923DaC0871d29E6147C27Fb7f53bEf13267E31",
27221
+ "decimals": 3,
27222
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Level"
27223
+ },
27224
+ {
27225
+ "contractAddress": "0xA07fb33e15BB21B42857199dE713d4acbD26f335",
27226
+ "proxyAddress": "0x663Fa56307caa30f0C1a2d20D550E13ED85AE78d",
27227
+ "decimals": 1,
27228
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Percent Change (Annual Rate)"
27229
+ },
27230
+ {
27231
+ "contractAddress": "0xA6c3773588efDd9cBDf9e42ab3696d776b573409",
27232
+ "proxyAddress": "0x7b7EAf6DBA9b1B3796CF9060517D3D0b2EBA39Fc",
27233
+ "decimals": 3,
27234
+ "name": "PCE Price Index \u2014 Level"
27235
+ },
27236
+ {
27237
+ "contractAddress": "0xB0436272C6eE7E51EEc4072818BD0C23326D55f8",
27238
+ "proxyAddress": "0xaAA8b026379A2C670330F94d0e35dd5550c26EC1",
27239
+ "decimals": 1,
27240
+ "name": "PCE Price Index \u2014 Percent Change (Annual Rate)"
27241
+ },
26436
27242
  {
26437
27243
  "contractAddress": "0xB16d5c70A9c062EF1604a517E4b80dE74670448D",
26438
27244
  "proxyAddress": "0x6d5110FB8F6a65c46B89a64C9ac7E3542D31AbA3",
@@ -26651,6 +27457,12 @@ var chainlinkFeeds = {
26651
27457
  "decimals": 8,
26652
27458
  "name": "PHP / USD"
26653
27459
  },
27460
+ {
27461
+ "contractAddress": "0x2a87b8BC32Abf977c713785E6389F6FaB9C5b555",
27462
+ "proxyAddress": "0x65623109aA4561AD3cfF503542083548CeD7e085",
27463
+ "decimals": 3,
27464
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Level"
27465
+ },
26654
27466
  {
26655
27467
  "contractAddress": "0x3177D9723D68D900B3c74DaA6C484992142BF856",
26656
27468
  "proxyAddress": "0x2330aaE3bca5F05169d5f4597964D44522F62930",
@@ -26675,6 +27487,12 @@ var chainlinkFeeds = {
26675
27487
  "decimals": 18,
26676
27488
  "name": "inwstETH / wstETH Exchange Rate"
26677
27489
  },
27490
+ {
27491
+ "contractAddress": "0x36ef9EE769dCea734A14d0745AF7Af14969Aa5fD",
27492
+ "proxyAddress": "0x491a921c41d6a97C57426E0c0108a231cd6E5f60",
27493
+ "decimals": 8,
27494
+ "name": "SUI / USD"
27495
+ },
26678
27496
  {
26679
27497
  "contractAddress": "0x3A6D121bF125Fc0909babC708E0Ca1fe4A02d2a4",
26680
27498
  "proxyAddress": "0x5213eBB69743b85644dbB6E25cdF994aFBb8cF31",
@@ -26711,12 +27529,6 @@ var chainlinkFeeds = {
26711
27529
  "decimals": 8,
26712
27530
  "name": "cbBTC Reserves"
26713
27531
  },
26714
- {
26715
- "contractAddress": "0x47c2FE5038bD59A3a80DA6026201F07b0eD76575",
26716
- "proxyAddress": "0xF7742A6f36e9936CeA0E976bF6CD3930C1178775",
26717
- "decimals": 8,
26718
- "name": "USDM / USD"
26719
- },
26720
27532
  {
26721
27533
  "contractAddress": "0x484Cc23Fee336291E3C8803cF27e16B9BEe68744",
26722
27534
  "proxyAddress": "0xf397bF97280B488cA19ee3093E81C0a77F02e9a5",
@@ -26759,6 +27571,12 @@ var chainlinkFeeds = {
26759
27571
  "decimals": 8,
26760
27572
  "name": "cbBTC / USD"
26761
27573
  },
27574
+ {
27575
+ "contractAddress": "0x52baE0b6d130E1F10d48c1675AF852F28E653418",
27576
+ "proxyAddress": "0x18A3fcA54FaC5B05837205bA4b823fc56191F793",
27577
+ "decimals": 3,
27578
+ "name": "PCE Price Index \u2014 Level"
27579
+ },
26762
27580
  {
26763
27581
  "contractAddress": "0x52d743436F6bA414050bD8869C8bF6537C355A00",
26764
27582
  "proxyAddress": "0x30A76F4E688Cf52f4A06D7AAd987A7037f3Ae6f7",
@@ -26879,6 +27697,12 @@ var chainlinkFeeds = {
26879
27697
  "decimals": 8,
26880
27698
  "name": "LINK / USD"
26881
27699
  },
27700
+ {
27701
+ "contractAddress": "0x72c2E05dC38b2AE47d8F87C9B99c264D9fD46A10",
27702
+ "proxyAddress": "0x17738F7dacFc1De7d06f22cC52211EBf68744dBA",
27703
+ "decimals": 18,
27704
+ "name": "xSolvBTC NAV"
27705
+ },
26882
27706
  {
26883
27707
  "contractAddress": "0x735326Bcc0479e3F23eD65DC83310d63eBA6250D",
26884
27708
  "proxyAddress": "0xe3971Ed6F1A5903321479Ef3148B5950c0612075",
@@ -27107,12 +27931,30 @@ var chainlinkFeeds = {
27107
27931
  "decimals": 8,
27108
27932
  "name": "CHF / USD"
27109
27933
  },
27934
+ {
27935
+ "contractAddress": "0xC87569d17C0640f9F921C91351C832833ad26Cef",
27936
+ "proxyAddress": "0xe0eda54fC1362C0d7d0ff855E4fCEA79916Fe094",
27937
+ "decimals": 1,
27938
+ "name": "Real GDP \u2014 Percent Change (Annual Rate)"
27939
+ },
27110
27940
  {
27111
27941
  "contractAddress": "0xCa1a4BdF7f9f8F8F281E311028dEa7e472a7A194",
27112
27942
  "proxyAddress": "0x4e7dB2f9a28348AB48a968dd4217D565D1F15Ba4",
27113
27943
  "decimals": 18,
27114
27944
  "name": "ynETHx / ETH Exchange Rate"
27115
27945
  },
27946
+ {
27947
+ "contractAddress": "0xCb374B34B6b74a0b6d0d4Ef6B73E07F299387957",
27948
+ "proxyAddress": "0x0df397aFE00085C138a99eFB39C498e08eB95aD1",
27949
+ "decimals": 3,
27950
+ "name": "Real GDP \u2014 Level"
27951
+ },
27952
+ {
27953
+ "contractAddress": "0xCd867f3962c108ea2F90828a58f22D202dEAf913",
27954
+ "proxyAddress": "0x2a18E2d46Cb067b69e0759dB39b16597fC42D962",
27955
+ "decimals": 1,
27956
+ "name": "PCE Price Index \u2014 Percent Change (Annual Rate)"
27957
+ },
27116
27958
  {
27117
27959
  "contractAddress": "0xD0407a6524C7d9075E0b040dCEf4696129B2C3B4",
27118
27960
  "proxyAddress": "0xeDC243c7E3c1A9dAf067C90641D2346d2694d2e5",
@@ -27257,6 +28099,12 @@ var chainlinkFeeds = {
27257
28099
  "decimals": 8,
27258
28100
  "name": "YFI / USD"
27259
28101
  },
28102
+ {
28103
+ "contractAddress": "0xdD24Cd0F5243800a7b29Decd58736cbEa92AbBc0",
28104
+ "proxyAddress": "0xe2b3688371130f333443428Cf03f27Ce0378F9dC",
28105
+ "decimals": 1,
28106
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Percent Change (Annual Rate)"
28107
+ },
27260
28108
  {
27261
28109
  "contractAddress": "0xe09bE26CF556F7211c16B75BE9fB4DB433A0d37E",
27262
28110
  "proxyAddress": "0x06bdFe07E71C476157FC025d3cCD4BBe08e83EF9",
@@ -27331,6 +28179,12 @@ var chainlinkFeeds = {
27331
28179
  "decimals": 0,
27332
28180
  "name": "EZETH/ETH-ExRate-mainnet-production"
27333
28181
  },
28182
+ {
28183
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28184
+ "proxyAddress": null,
28185
+ "decimals": 18,
28186
+ "name": "IDR/USDT-Datalink-CexPrice-mainnet-production"
28187
+ },
27334
28188
  {
27335
28189
  "contractAddress": "0x0000000000000000000000000000000000000000",
27336
28190
  "proxyAddress": null,
@@ -27451,6 +28305,18 @@ var chainlinkFeeds = {
27451
28305
  "decimals": 18,
27452
28306
  "name": "PAIN/USD-RefPrice-mainnet-production"
27453
28307
  },
28308
+ {
28309
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28310
+ "proxyAddress": null,
28311
+ "decimals": 18,
28312
+ "name": "BRBTC/USD-Datalink-DexPrice-mainnet-production"
28313
+ },
28314
+ {
28315
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28316
+ "proxyAddress": null,
28317
+ "decimals": 18,
28318
+ "name": "KTA/USD-Streams-DexPrice-mainnet-production"
28319
+ },
27454
28320
  {
27455
28321
  "contractAddress": "0x0000000000000000000000000000000000000000",
27456
28322
  "proxyAddress": null,
@@ -27523,6 +28389,12 @@ var chainlinkFeeds = {
27523
28389
  "decimals": 18,
27524
28390
  "name": "SYN/USD-RefPrice-mainnet-production"
27525
28391
  },
28392
+ {
28393
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28394
+ "proxyAddress": null,
28395
+ "decimals": 18,
28396
+ "name": "METAX/USD-Streams-CexPrice-mainnet-production"
28397
+ },
27526
28398
  {
27527
28399
  "contractAddress": "0x0000000000000000000000000000000000000000",
27528
28400
  "proxyAddress": null,
@@ -27547,6 +28419,12 @@ var chainlinkFeeds = {
27547
28419
  "decimals": 18,
27548
28420
  "name": "BAT/USD-RefPrice-mainnet-staging"
27549
28421
  },
28422
+ {
28423
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28424
+ "proxyAddress": null,
28425
+ "decimals": 18,
28426
+ "name": "ZORA/USD-Streams-CexPrice-mainnet-production"
28427
+ },
27550
28428
  {
27551
28429
  "contractAddress": "0x0000000000000000000000000000000000000000",
27552
28430
  "proxyAddress": null,
@@ -27565,6 +28443,12 @@ var chainlinkFeeds = {
27565
28443
  "decimals": 18,
27566
28444
  "name": "GLV [WETH-USDC]/USD-RefPrice-mainnet-production"
27567
28445
  },
28446
+ {
28447
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28448
+ "proxyAddress": null,
28449
+ "decimals": 18,
28450
+ "name": "CRCLX/USD-Streams-CexPrice-mainnet-production"
28451
+ },
27568
28452
  {
27569
28453
  "contractAddress": "0x0000000000000000000000000000000000000000",
27570
28454
  "proxyAddress": null,
@@ -27667,6 +28551,12 @@ var chainlinkFeeds = {
27667
28551
  "decimals": 18,
27668
28552
  "name": "FLR/USD-RefPrice-mainnet-production"
27669
28553
  },
28554
+ {
28555
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28556
+ "proxyAddress": null,
28557
+ "decimals": 18,
28558
+ "name": "BTR/USD-Streams-CexPrice-mainnet-production"
28559
+ },
27670
28560
  {
27671
28561
  "contractAddress": "0x0000000000000000000000000000000000000000",
27672
28562
  "proxyAddress": null,
@@ -27727,6 +28617,12 @@ var chainlinkFeeds = {
27727
28617
  "decimals": 18,
27728
28618
  "name": "NEO/USD-RefPrice-mainnet-production"
27729
28619
  },
28620
+ {
28621
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28622
+ "proxyAddress": null,
28623
+ "decimals": 18,
28624
+ "name": "HOODX/USD-Streams-CexPrice-mainnet-production"
28625
+ },
27730
28626
  {
27731
28627
  "contractAddress": "0x0000000000000000000000000000000000000000",
27732
28628
  "proxyAddress": null,
@@ -27787,12 +28683,24 @@ var chainlinkFeeds = {
27787
28683
  "decimals": 18,
27788
28684
  "name": "AXL/USD-RefPrice-mainnet-production"
27789
28685
  },
28686
+ {
28687
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28688
+ "proxyAddress": null,
28689
+ "decimals": 18,
28690
+ "name": "USDF/USD-Streams-DexPrice-mainnet-production"
28691
+ },
27790
28692
  {
27791
28693
  "contractAddress": "0x0000000000000000000000000000000000000000",
27792
28694
  "proxyAddress": null,
27793
28695
  "decimals": 18,
27794
28696
  "name": "CTC/USD-RefPrice-mainnet-production"
27795
28697
  },
28698
+ {
28699
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28700
+ "proxyAddress": null,
28701
+ "decimals": 18,
28702
+ "name": "WLFI/USD-Streams-CexPrice-mainnet-production"
28703
+ },
27796
28704
  {
27797
28705
  "contractAddress": "0x0000000000000000000000000000000000000000",
27798
28706
  "proxyAddress": null,
@@ -27823,6 +28731,12 @@ var chainlinkFeeds = {
27823
28731
  "decimals": 18,
27824
28732
  "name": "ROSE/USD-RefPrice-mainnet-production"
27825
28733
  },
28734
+ {
28735
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28736
+ "proxyAddress": null,
28737
+ "decimals": 18,
28738
+ "name": "PROMPT/USD-Streams-CexPrice-mainnet-production"
28739
+ },
27826
28740
  {
27827
28741
  "contractAddress": "0x0000000000000000000000000000000000000000",
27828
28742
  "proxyAddress": null,
@@ -27865,6 +28779,12 @@ var chainlinkFeeds = {
27865
28779
  "decimals": 18,
27866
28780
  "name": "AERGO/USD-RefPrice-mainnet-production"
27867
28781
  },
28782
+ {
28783
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28784
+ "proxyAddress": null,
28785
+ "decimals": 18,
28786
+ "name": "AMZNX/USD-Streams-CexPrice-mainnet-production"
28787
+ },
27868
28788
  {
27869
28789
  "contractAddress": "0x0000000000000000000000000000000000000000",
27870
28790
  "proxyAddress": null,
@@ -27907,6 +28827,12 @@ var chainlinkFeeds = {
27907
28827
  "decimals": 18,
27908
28828
  "name": "HBAR/USD-RefPrice-mainnet-production"
27909
28829
  },
28830
+ {
28831
+ "contractAddress": "0x0000000000000000000000000000000000000000",
28832
+ "proxyAddress": null,
28833
+ "decimals": 18,
28834
+ "name": "MSTRX/USD-Streams-CexPrice-mainnet-production"
28835
+ },
27910
28836
  {
27911
28837
  "contractAddress": "0x0000000000000000000000000000000000000000",
27912
28838
  "proxyAddress": null,
@@ -28159,6 +29085,18 @@ var chainlinkFeeds = {
28159
29085
  "decimals": 18,
28160
29086
  "name": "ZBTC/USD-RefPrice-mainnet-production"
28161
29087
  },
29088
+ {
29089
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29090
+ "proxyAddress": null,
29091
+ "decimals": 18,
29092
+ "name": "NVDAX/USD-Streams-CexPrice-mainnet-production"
29093
+ },
29094
+ {
29095
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29096
+ "proxyAddress": null,
29097
+ "decimals": 18,
29098
+ "name": "QQQX/USD-Streams-CexPrice-mainnet-production"
29099
+ },
28162
29100
  {
28163
29101
  "contractAddress": "0x0000000000000000000000000000000000000000",
28164
29102
  "proxyAddress": null,
@@ -28237,6 +29175,12 @@ var chainlinkFeeds = {
28237
29175
  "decimals": 18,
28238
29176
  "name": "GLV [BTC-USDC]/USD-RefPrice-mainnet-staging"
28239
29177
  },
29178
+ {
29179
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29180
+ "proxyAddress": null,
29181
+ "decimals": 18,
29182
+ "name": "MANYU/USD-Streams-DexPrice-mainnet-production"
29183
+ },
28240
29184
  {
28241
29185
  "contractAddress": "0x0000000000000000000000000000000000000000",
28242
29186
  "proxyAddress": null,
@@ -28315,6 +29259,12 @@ var chainlinkFeeds = {
28315
29259
  "decimals": 18,
28316
29260
  "name": "KAVA/USD-RefPrice-mainnet-production"
28317
29261
  },
29262
+ {
29263
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29264
+ "proxyAddress": null,
29265
+ "decimals": 18,
29266
+ "name": "TSLAX/USD-Streams-CexPrice-mainnet-production"
29267
+ },
28318
29268
  {
28319
29269
  "contractAddress": "0x0000000000000000000000000000000000000000",
28320
29270
  "proxyAddress": null,
@@ -28399,6 +29349,12 @@ var chainlinkFeeds = {
28399
29349
  "decimals": 18,
28400
29350
  "name": "KAS/USD-RefPrice-mainnet-production"
28401
29351
  },
29352
+ {
29353
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29354
+ "proxyAddress": null,
29355
+ "decimals": 18,
29356
+ "name": "AAPLX/USD-Streams-CexPrice-mainnet-production"
29357
+ },
28402
29358
  {
28403
29359
  "contractAddress": "0x0000000000000000000000000000000000000000",
28404
29360
  "proxyAddress": null,
@@ -28465,6 +29421,24 @@ var chainlinkFeeds = {
28465
29421
  "decimals": 18,
28466
29422
  "name": "RVN/USD-RefPrice-mainnet-production"
28467
29423
  },
29424
+ {
29425
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29426
+ "proxyAddress": null,
29427
+ "decimals": 18,
29428
+ "name": "USX/USD-Streams-DexPrice-mainnet-production"
29429
+ },
29430
+ {
29431
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29432
+ "proxyAddress": null,
29433
+ "decimals": 18,
29434
+ "name": "WETH.UNISWAP/USD-Streams-DexPrice-mainnet-production"
29435
+ },
29436
+ {
29437
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29438
+ "proxyAddress": null,
29439
+ "decimals": 18,
29440
+ "name": "SPYX/USD-Streams-CexPrice-mainnet-production"
29441
+ },
28468
29442
  {
28469
29443
  "contractAddress": "0x0000000000000000000000000000000000000000",
28470
29444
  "proxyAddress": null,
@@ -28483,6 +29457,12 @@ var chainlinkFeeds = {
28483
29457
  "decimals": 18,
28484
29458
  "name": "MNT/USD-RefPrice-mainnet-production"
28485
29459
  },
29460
+ {
29461
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29462
+ "proxyAddress": null,
29463
+ "decimals": 18,
29464
+ "name": "COINX/USD-Streams-CexPrice-mainnet-production"
29465
+ },
28486
29466
  {
28487
29467
  "contractAddress": "0x0000000000000000000000000000000000000000",
28488
29468
  "proxyAddress": null,
@@ -28555,12 +29535,6 @@ var chainlinkFeeds = {
28555
29535
  "decimals": 18,
28556
29536
  "name": "IP/USD-RefPrice-mainnet-production"
28557
29537
  },
28558
- {
28559
- "contractAddress": "0x0000000000000000000000000000000000000000",
28560
- "proxyAddress": null,
28561
- "decimals": 18,
28562
- "name": "ZKL/USD-RefPrice-mainnet-production-dead"
28563
- },
28564
29538
  {
28565
29539
  "contractAddress": "0x0000000000000000000000000000000000000000",
28566
29540
  "proxyAddress": null,
@@ -28669,6 +29643,12 @@ var chainlinkFeeds = {
28669
29643
  "decimals": 18,
28670
29644
  "name": "SOL/USDT-Binance-FundingRate-mainnet-staging"
28671
29645
  },
29646
+ {
29647
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29648
+ "proxyAddress": null,
29649
+ "decimals": 18,
29650
+ "name": "BTC/USDT-Datalink-Hyperliquid-FundingRate-mainnet-production"
29651
+ },
28672
29652
  {
28673
29653
  "contractAddress": "0x0000000000000000000000000000000000000000",
28674
29654
  "proxyAddress": null,
@@ -28681,12 +29661,30 @@ var chainlinkFeeds = {
28681
29661
  "decimals": 18,
28682
29662
  "name": "ETH/USDT-Binance-FundingRate-mainnet-production"
28683
29663
  },
29664
+ {
29665
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29666
+ "proxyAddress": null,
29667
+ "decimals": 18,
29668
+ "name": "ETH/USDT-Datalink-Hyperliquid-FundingRate-mainnet-production"
29669
+ },
29670
+ {
29671
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29672
+ "proxyAddress": null,
29673
+ "decimals": 18,
29674
+ "name": "ETH/USDT-Datalink-Bybit-FundingRate-mainnet-production"
29675
+ },
28684
29676
  {
28685
29677
  "contractAddress": "0x0000000000000000000000000000000000000000",
28686
29678
  "proxyAddress": null,
28687
29679
  "decimals": 18,
28688
29680
  "name": "AERGO/USDT-Binance-FundingRate-mainnet-staging"
28689
29681
  },
29682
+ {
29683
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29684
+ "proxyAddress": null,
29685
+ "decimals": 18,
29686
+ "name": "BTC/USDT-Datalink-Bybit-FundingRate-mainnet-production"
29687
+ },
28690
29688
  {
28691
29689
  "contractAddress": "0x0000000000000000000000000000000000000000",
28692
29690
  "proxyAddress": null,
@@ -28705,6 +29703,12 @@ var chainlinkFeeds = {
28705
29703
  "decimals": 18,
28706
29704
  "name": "BTC-ETH-SOL-USDC-USDT/USD-RefPrice-mainnet-production"
28707
29705
  },
29706
+ {
29707
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29708
+ "proxyAddress": null,
29709
+ "decimals": 10,
29710
+ "name": "MEVBTC/BTC-Streams-ExchangeRate-mainnet-production"
29711
+ },
28708
29712
  {
28709
29713
  "contractAddress": "0x0000000000000000000000000000000000000000",
28710
29714
  "proxyAddress": null,
@@ -28717,6 +29721,24 @@ var chainlinkFeeds = {
28717
29721
  "decimals": 0,
28718
29722
  "name": "SYRUPUSDC/USDC-ExRate-mainnet-production"
28719
29723
  },
29724
+ {
29725
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29726
+ "proxyAddress": null,
29727
+ "decimals": 0,
29728
+ "name": "SUSDC/USD-Streams-ExchangeRate-mainnet-production"
29729
+ },
29730
+ {
29731
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29732
+ "proxyAddress": null,
29733
+ "decimals": 10,
29734
+ "name": "RLP/USD-Streams-ExchangeRate-mainnet-production"
29735
+ },
29736
+ {
29737
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29738
+ "proxyAddress": null,
29739
+ "decimals": 0,
29740
+ "name": "SUSDF/USDF-Streams-ExchangeRate-mainnet-production"
29741
+ },
28720
29742
  {
28721
29743
  "contractAddress": "0x0000000000000000000000000000000000000000",
28722
29744
  "proxyAddress": null,
@@ -28741,6 +29763,18 @@ var chainlinkFeeds = {
28741
29763
  "decimals": 0,
28742
29764
  "name": "UNIBTC/BTC-ExRate-mainnet-production"
28743
29765
  },
29766
+ {
29767
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29768
+ "proxyAddress": null,
29769
+ "decimals": 0,
29770
+ "name": "WSRUSD/RUSD-Streams-ExchangeRate-mainnet-production"
29771
+ },
29772
+ {
29773
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29774
+ "proxyAddress": null,
29775
+ "decimals": 10,
29776
+ "name": "USR/USD-Streams-ExchangeRate-mainnet-production"
29777
+ },
28744
29778
  {
28745
29779
  "contractAddress": "0x0000000000000000000000000000000000000000",
28746
29780
  "proxyAddress": null,
@@ -28921,6 +29955,12 @@ var chainlinkFeeds = {
28921
29955
  "decimals": 18,
28922
29956
  "name": "AGG/USD-Streams-EquityPrice-Timestamped-mainnet-production"
28923
29957
  },
29958
+ {
29959
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29960
+ "proxyAddress": null,
29961
+ "decimals": 18,
29962
+ "name": "BMNR/USD-Streams-EquityPrice-Timestamped-mainnet-production"
29963
+ },
28924
29964
  {
28925
29965
  "contractAddress": "0x0000000000000000000000000000000000000000",
28926
29966
  "proxyAddress": null,
@@ -28939,6 +29979,12 @@ var chainlinkFeeds = {
28939
29979
  "decimals": 18,
28940
29980
  "name": "KO/USD-Streams-EquityPrice-Timestamped-mainnet-production"
28941
29981
  },
29982
+ {
29983
+ "contractAddress": "0x0000000000000000000000000000000000000000",
29984
+ "proxyAddress": null,
29985
+ "decimals": 18,
29986
+ "name": "PEP/USD-Streams-Equity-Timestamped-mainnet-production"
29987
+ },
28942
29988
  {
28943
29989
  "contractAddress": "0x0000000000000000000000000000000000000000",
28944
29990
  "proxyAddress": null,
@@ -29267,7 +30313,7 @@ var chainlinkFeeds = {
29267
30313
  "contractAddress": "0x0000000000000000000000000000000000000000",
29268
30314
  "proxyAddress": null,
29269
30315
  "decimals": 18,
29270
- "name": "TSLAX/USD-Datalink-Backed-TotalReturnMultiplier-Timestamped-mainnet-production"
30316
+ "name": "TSLAx/USD-Datalink-Backed-TotalReturnMultiplier-Timestamped-mainnet-production"
29271
30317
  },
29272
30318
  {
29273
30319
  "contractAddress": "0x0000000000000000000000000000000000000000",
@@ -29341,12 +30387,24 @@ var chainlinkFeeds = {
29341
30387
  "decimals": 8,
29342
30388
  "name": "HYPE / USD"
29343
30389
  },
30390
+ {
30391
+ "contractAddress": "0x0D390bF7C43D9Ac7Ea848AE4C9ce3798A83384D2",
30392
+ "proxyAddress": "0x6BC7fF3C21f005684ef834FBA4d88459e988CcdC",
30393
+ "decimals": 18,
30394
+ "name": "WSTUSR-STUSR Exchange Rate"
30395
+ },
29344
30396
  {
29345
30397
  "contractAddress": "0x0a58c18EeBAA6C8BBa1F0aAb6C7C7721A07C6fC3",
29346
30398
  "proxyAddress": "0xD0E31451f58d3991045D68C479ea80D37e418851",
29347
30399
  "decimals": 8,
29348
30400
  "name": "GLV [WETH-USDC]-USD"
29349
30401
  },
30402
+ {
30403
+ "contractAddress": "0x0cA784A2A7Fa84f69021aacbf481bA899e79E732",
30404
+ "proxyAddress": "0x4b13Dd76De990Db9A2Dab58D35C2c02E5e3AE848",
30405
+ "decimals": 8,
30406
+ "name": "WLFI / USD"
30407
+ },
29350
30408
  {
29351
30409
  "contractAddress": "0x0ce05dcbD07ac17528fA47f9752b233f00E6c29b",
29352
30410
  "proxyAddress": "0x866fa212dfc5AAf321379874eCe95631F6d12e00",
@@ -29383,6 +30441,12 @@ var chainlinkFeeds = {
29383
30441
  "decimals": 8,
29384
30442
  "name": "USD1 / USD"
29385
30443
  },
30444
+ {
30445
+ "contractAddress": "0x16C9299D2089Ba2e0FA7cdC082710Ad31A83B8c3",
30446
+ "proxyAddress": "0xE9Bd4Ca2CDacb56cd06c9C4C5231e69c33340B3c",
30447
+ "decimals": 8,
30448
+ "name": "USDG / USD"
30449
+ },
29386
30450
  {
29387
30451
  "contractAddress": "0x17298e460F18f1380fe5Ed68985A566949B91d20",
29388
30452
  "proxyAddress": "0x17d8D87dF3E279c737568aB0C5cC3fF750aB763e",
@@ -29515,6 +30579,12 @@ var chainlinkFeeds = {
29515
30579
  "decimals": 18,
29516
30580
  "name": "ezETH / ETH"
29517
30581
  },
30582
+ {
30583
+ "contractAddress": "0x329301Ccd96Fd45bFaeD8CEc37cb4A9C0bC76119",
30584
+ "proxyAddress": "0xb966F82183E41208f594586BBF04bb6163571C48",
30585
+ "decimals": 18,
30586
+ "name": "RYT Arbitrum / Proof of Reserves"
30587
+ },
29518
30588
  {
29519
30589
  "contractAddress": "0x331480b3C79f16018704A83847db1e29d8cdce14",
29520
30590
  "proxyAddress": "0xfb010c715Ff2B85DB9c896f0C030bF9329638905",
@@ -30547,6 +31617,12 @@ var chainlinkFeeds = {
30547
31617
  "decimals": 8,
30548
31618
  "name": "CVX / USD"
30549
31619
  },
31620
+ {
31621
+ "contractAddress": "0x3eD9d8146a32B3390B373bBDFF0ede7361568C4e",
31622
+ "proxyAddress": "0x926Eed7973EBc57a8767659C5b35b9a0bAB6302f",
31623
+ "decimals": 3,
31624
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Level"
31625
+ },
30550
31626
  {
30551
31627
  "contractAddress": "0x41230419afFF6c7fFecF715fA57958D53F803De9",
30552
31628
  "proxyAddress": "0x3c786e934F23375Ca345C9b8D5aD54838796E8e7",
@@ -30595,12 +31671,6 @@ var chainlinkFeeds = {
30595
31671
  "decimals": 18,
30596
31672
  "name": "agETH / ETH Exchange Rate"
30597
31673
  },
30598
- {
30599
- "contractAddress": "0x48fd0a91FF0660dbb9882c538184c0c0bb25A115",
30600
- "proxyAddress": "0xC3534C27E3DE2ae861EB38889a1c8dCfEa4Cb39d",
30601
- "decimals": 18,
30602
- "name": "rswETH / ETH"
30603
- },
30604
31674
  {
30605
31675
  "contractAddress": "0x4948e89a367D296559A4AD211D958908B6EA592f",
30606
31676
  "proxyAddress": "0x9BC7E5a6f1EED1C3217d2c63ad680DF83D84a906",
@@ -31771,6 +32841,12 @@ var chainlinkFeeds = {
31771
32841
  "decimals": 8,
31772
32842
  "name": "GRT / USD"
31773
32843
  },
32844
+ {
32845
+ "contractAddress": "0x778356313A7419EEc9d0762bF15795a771E0Cd36",
32846
+ "proxyAddress": "0x5Fb8E23065C362080E540e01e0bd4119B6cB53fe",
32847
+ "decimals": 1,
32848
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Percent Change (Annual Rate)"
32849
+ },
31774
32850
  {
31775
32851
  "contractAddress": "0x77b911DBe147ED5b4554997860D6362A5652fC91",
31776
32852
  "proxyAddress": "0xCDA67618e51762235eacA373894F0C79256768fa",
@@ -31891,6 +32967,12 @@ var chainlinkFeeds = {
31891
32967
  "decimals": 8,
31892
32968
  "name": "SOL / USD"
31893
32969
  },
32970
+ {
32971
+ "contractAddress": "0x8aFe9B0e7c131b6a7E749d6e967751f40e4dF5d6",
32972
+ "proxyAddress": "0xAE8B4179389059A735821A77417eACcA60f3e4B4",
32973
+ "decimals": 18,
32974
+ "name": "xSolvBTC NAV"
32975
+ },
31894
32976
  {
31895
32977
  "contractAddress": "0x8b48E1A576d47Eb8BfE13d54d30aC2251C9F1A8A",
31896
32978
  "proxyAddress": "0x0C997958ccE7A0403AEA7E34d14bbaDA897B5bb3",
@@ -32023,6 +33105,12 @@ var chainlinkFeeds = {
32023
33105
  "decimals": 8,
32024
33106
  "name": "MNT / USD"
32025
33107
  },
33108
+ {
33109
+ "contractAddress": "0xBC81b4E883375c387db454aCaE322196Ae07a481",
33110
+ "proxyAddress": "0x326fA29b208DE897981C78827b8ffDbfa355590b",
33111
+ "decimals": 3,
33112
+ "name": "Real GDP \u2014 Level"
33113
+ },
32026
33114
  {
32027
33115
  "contractAddress": "0xBFf434a1B44677D4ce302da64d84bB4d305c0D49",
32028
33116
  "proxyAddress": "0xded2c52b75B24732e9107377B7Ba93eC1fFa4BAf",
@@ -32191,6 +33279,12 @@ var chainlinkFeeds = {
32191
33279
  "decimals": 18,
32192
33280
  "name": "LINK / ETH"
32193
33281
  },
33282
+ {
33283
+ "contractAddress": "0xa3403Cbd8Db989ED2204A51F9f70945Bf5b2CFb7",
33284
+ "proxyAddress": "0xDC1a8F77Cdc46D1Fb7F22F94dFCA4dDBf566fA23",
33285
+ "decimals": 1,
33286
+ "name": "Real GDP \u2014 Percent Change (Annual Rate)"
33287
+ },
32194
33288
  {
32195
33289
  "contractAddress": "0xa44BCD128E99188565c4849cdfFEea9C773f74ec",
32196
33290
  "proxyAddress": "0x04180965a782E487d0632013ABa488A472243542",
@@ -32347,12 +33441,6 @@ var chainlinkFeeds = {
32347
33441
  "decimals": 8,
32348
33442
  "name": "USDD / USD"
32349
33443
  },
32350
- {
32351
- "contractAddress": "0xdDB2962ACFAc3755f946727450E41131068384FE",
32352
- "proxyAddress": "0x24EA2671671c33D66e9854eC06e42E5D3ac1f764",
32353
- "decimals": 8,
32354
- "name": "USDM / USD"
32355
- },
32356
33444
  {
32357
33445
  "contractAddress": "0xdecCf98Ab543E6fAca8E22dB33445c7DDc855df0",
32358
33446
  "proxyAddress": "0x82BA56a2fADF9C14f17D08bc51bDA0bDB83A8934",
@@ -32401,6 +33489,12 @@ var chainlinkFeeds = {
32401
33489
  "decimals": 8,
32402
33490
  "name": "GM BTC/USD [WBTC-WBTC]"
32403
33491
  },
33492
+ {
33493
+ "contractAddress": "0xeA84B5A70175A98DF02A85bdC6f9191c753130D5",
33494
+ "proxyAddress": "0x552c92c0C09A73d569Ab52FF4C17a153C3472BE3",
33495
+ "decimals": 1,
33496
+ "name": "PCE Price Index \u2014 Percent Change (Annual Rate)"
33497
+ },
32404
33498
  {
32405
33499
  "contractAddress": "0xeC3dfE4FF480C64A6F78b43Fa9963567d35A2cA9",
32406
33500
  "proxyAddress": "0xfB3264D1129824933a52374c2C1696F4470D041e",
@@ -32443,6 +33537,12 @@ var chainlinkFeeds = {
32443
33537
  "decimals": 8,
32444
33538
  "name": "GM ETH/USD [wETH-wETH]"
32445
33539
  },
33540
+ {
33541
+ "contractAddress": "0xf0e892f66173d37Ed7Fb0794C704330C0ac3bd22",
33542
+ "proxyAddress": "0x066Ba4567C40cB315EAd257Bd86585bb4a74004f",
33543
+ "decimals": 3,
33544
+ "name": "PCE Price Index \u2014 Level"
33545
+ },
32446
33546
  {
32447
33547
  "contractAddress": "0xf6bACC7750c23A34b996A355A6E78b17Fc4BaEdC",
32448
33548
  "proxyAddress": "0x383b3624478124697BEF675F07cA37570b73992f",
@@ -32789,6 +33889,18 @@ var chainlinkFeeds = {
32789
33889
  "decimals": 8,
32790
33890
  "name": "SGD / USD"
32791
33891
  },
33892
+ {
33893
+ "contractAddress": "0x3D4C272Ef16e19D84BA1ce15ce21571c994A4C5c",
33894
+ "proxyAddress": "0x3Eb06AE1Ef3adE7B529Fcce522611c6A044697cC",
33895
+ "decimals": 1,
33896
+ "name": "Real GDP \u2014 Percent Change (Annual Rate)"
33897
+ },
33898
+ {
33899
+ "contractAddress": "0x3d055bd7140dDe26AaB5fD00EB25Ac97b511Df75",
33900
+ "proxyAddress": "0x665Fa131DE7af7606c785F26e66d07cA43a274D9",
33901
+ "decimals": 3,
33902
+ "name": "Real GDP - Level"
33903
+ },
32792
33904
  {
32793
33905
  "contractAddress": "0x3de683f981469069D0d5C30b0C7763ceC543221d",
32794
33906
  "proxyAddress": "0x86442E3a98558357d46E6182F4b262f76c4fa26F",
@@ -32813,6 +33925,12 @@ var chainlinkFeeds = {
32813
33925
  "decimals": 8,
32814
33926
  "name": "AUSD / USD"
32815
33927
  },
33928
+ {
33929
+ "contractAddress": "0x50110aA52b0686E8dD7E85cbd0a956c99e526b5C",
33930
+ "proxyAddress": "0x273e7833604F74a6f80f6B25568D29DE33570e99",
33931
+ "decimals": 1,
33932
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Percent Change (Annual Rate)"
33933
+ },
32816
33934
  {
32817
33935
  "contractAddress": "0x5049D7927BB160267bDdA22ADD6Bd85e21eFFE77",
32818
33936
  "proxyAddress": "0x4Cf57DC9028187b9DAaF773c8ecA941036989238",
@@ -32849,6 +33967,12 @@ var chainlinkFeeds = {
32849
33967
  "decimals": 18,
32850
33968
  "name": "LINK.e Proof of Reserves"
32851
33969
  },
33970
+ {
33971
+ "contractAddress": "0x61a7956EBDa4356c2482aF3B9f59b6255ECfCa1C",
33972
+ "proxyAddress": "0x982057Fd0A53d52E558A722ba53Ad95E702Da0dF",
33973
+ "decimals": 3,
33974
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Level"
33975
+ },
32852
33976
  {
32853
33977
  "contractAddress": "0x64922B570edf432defD4d3C5647269727a667EDa",
32854
33978
  "proxyAddress": "0x2dD517B2f9ba49CedB0573131FD97a5AC19ff648",
@@ -32999,6 +34123,12 @@ var chainlinkFeeds = {
32999
34123
  "decimals": 18,
33000
34124
  "name": "syrupUSDC-USDC Exchange Rate"
33001
34125
  },
34126
+ {
34127
+ "contractAddress": "0xB0BE176247438D0142785421Fb558E035cC30e63",
34128
+ "proxyAddress": "0x962Aba596fe6842D644c51b2F112190e6B6e94B4",
34129
+ "decimals": 3,
34130
+ "name": "PCE Price Index \u2014 Level"
34131
+ },
33002
34132
  {
33003
34133
  "contractAddress": "0xC3e5dDD4f98cDFfaF77685e340FF5c32d7282C5C",
33004
34134
  "proxyAddress": "0xD73a74314AcCb53b30cAfDA0cb61c9772B57C4a2",
@@ -33167,6 +34297,12 @@ var chainlinkFeeds = {
33167
34297
  "decimals": 8,
33168
34298
  "name": "EmCH Reserves"
33169
34299
  },
34300
+ {
34301
+ "contractAddress": "0xeF64D0B43E579559771695758178f6AfA0045102",
34302
+ "proxyAddress": "0x9A9587Da4Fd5DD3C9AD47C12aFeec5073C8cFc2a",
34303
+ "decimals": 1,
34304
+ "name": "PCE Price Index \u2014 Percent Change (Annual Rate)"
34305
+ },
33170
34306
  {
33171
34307
  "contractAddress": "0xf52BF03f3f406BAAADE542b3D2D5CeCfFf1754E6",
33172
34308
  "proxyAddress": "0x63769951E4cfDbDC653dD9BBde63D2Ce0746e5F2",
@@ -33211,12 +34347,30 @@ var chainlinkFeeds = {
33211
34347
  "decimals": 18,
33212
34348
  "name": "weETH / ETH"
33213
34349
  },
34350
+ {
34351
+ "contractAddress": "0x2884F3d4fE39cD5c77b00900127a538Bc3Bb548B",
34352
+ "proxyAddress": "0x8b7fAC4A99daDa67C661D4854B2284c7A64722f4",
34353
+ "decimals": 3,
34354
+ "name": "PCE Price Index \u2014 Level"
34355
+ },
34356
+ {
34357
+ "contractAddress": "0x32a7438FD4F6Fc2D1174A3b701caE2f9103AeaD4",
34358
+ "proxyAddress": "0x1E2286815B3D628128fbaa0F213fD53Dea9E015E",
34359
+ "decimals": 3,
34360
+ "name": "Real GDP \u2014 Level"
34361
+ },
33214
34362
  {
33215
34363
  "contractAddress": "0x347C78C807b982F4354264be49110A0F6b3DBC82",
33216
34364
  "proxyAddress": "0x5C5Ee01b351b7ef0b16Cfd59E93F743E0679d7bC",
33217
34365
  "decimals": 18,
33218
34366
  "name": "agETH-ETH Exchange Rate"
33219
34367
  },
34368
+ {
34369
+ "contractAddress": "0x391F84f0a7eD1e8B35890a0ad220aF41b56bc278",
34370
+ "proxyAddress": "0xe5aCa1a31aD6fC61E30Ab8E4a19a9445884A1EDE",
34371
+ "decimals": 1,
34372
+ "name": "PCE Price Index \u2014 Percent Change (Annual Rate)"
34373
+ },
33220
34374
  {
33221
34375
  "contractAddress": "0x4475f62Aa9090A391b5970e96B1146186209CeeE",
33222
34376
  "proxyAddress": "0x4C2f2CD982DD7fF2a607dcEB0B30fae8208D7156",
@@ -33254,10 +34408,16 @@ var chainlinkFeeds = {
33254
34408
  "name": "xSolvBTC NAV"
33255
34409
  },
33256
34410
  {
33257
- "contractAddress": "0x6f0D003A0743F5acea5680B1D128bd433B07ffCE",
33258
- "proxyAddress": "0xEEDF0B095B5dfe75F3881Cb26c19DA209A27463a",
33259
- "decimals": 18,
33260
- "name": "wrsETH / rsETH Exchange Rate"
34411
+ "contractAddress": "0x700E6178eE7b594A6CC1f3dF6105042355051fB1",
34412
+ "proxyAddress": "0xdAad34260E4105702278F225d3d20C453d12065e",
34413
+ "decimals": 1,
34414
+ "name": "Real GDP \u2014 Percent Change (Annual Rate)"
34415
+ },
34416
+ {
34417
+ "contractAddress": "0x82B6a73008c8f73df744847209e3399bc514f8c0",
34418
+ "proxyAddress": "0x9165802Ea199C36F85D53A6F71Da6AF5a6EA8951",
34419
+ "decimals": 3,
34420
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Level"
33261
34421
  },
33262
34422
  {
33263
34423
  "contractAddress": "0x854d46002b2524239b81Ef783AB47CAbd5b9AD4e",
@@ -33271,12 +34431,24 @@ var chainlinkFeeds = {
33271
34431
  "decimals": 18,
33272
34432
  "name": "instETH / ETH Exchange Rate"
33273
34433
  },
34434
+ {
34435
+ "contractAddress": "0x90946FCe1e3b248466160475340A753Aa4C17562",
34436
+ "proxyAddress": "0x8d6ceb62Ce510935792BE737e30f9f61082b72b3",
34437
+ "decimals": 1,
34438
+ "name": "Real Final Sales to Private Domestic Purchasers \u2014 Percent Change (Annual Rate)"
34439
+ },
33274
34440
  {
33275
34441
  "contractAddress": "0x917cab79F9132A0417EBa7B23866B90a8eeeA2D5",
33276
34442
  "proxyAddress": "0xc4194f19E3a0836F6B998394445C6535c50604Ce",
33277
34443
  "decimals": 18,
33278
34444
  "name": "LINK / ETH"
33279
34445
  },
34446
+ {
34447
+ "contractAddress": "0x92b4B8511059Ade8e1B8145Ca66c9EEED8323263",
34448
+ "proxyAddress": "0xEEDF0B095B5dfe75F3881Cb26c19DA209A27463a",
34449
+ "decimals": 18,
34450
+ "name": "wrsETH-ETH Exchange Rate"
34451
+ },
33280
34452
  {
33281
34453
  "contractAddress": "0xA6F72813b20758F08923b48926DF1BA54782F9FF",
33282
34454
  "proxyAddress": "0xAADAa473C1bDF7317ec07c915680Af29DeBfdCb5",
@@ -33598,6 +34770,8 @@ var chainlinkFeeds = {
33598
34770
  var hyperRPCSupportedNetworks = [
33599
34771
  1,
33600
34772
  10,
34773
+ 14,
34774
+ 30,
33601
34775
  42,
33602
34776
  50,
33603
34777
  51,
@@ -33607,28 +34781,55 @@ var hyperRPCSupportedNetworks = [
33607
34781
  130,
33608
34782
  137,
33609
34783
  146,
34784
+ 148,
34785
+ 169,
34786
+ 204,
33610
34787
  250,
34788
+ 252,
34789
+ 255,
33611
34790
  288,
33612
34791
  324,
34792
+ 341,
33613
34793
  480,
34794
+ 841,
33614
34795
  999,
33615
34796
  1101,
33616
34797
  1135,
33617
34798
  1284,
34799
+ 1287,
33618
34800
  1301,
34801
+ 1750,
34802
+ 1868,
34803
+ 1923,
34804
+ 2741,
33619
34805
  2818,
34806
+ 4200,
33620
34807
  4201,
34808
+ 5e3,
34809
+ 5115,
34810
+ 5330,
34811
+ 5845,
34812
+ 5920,
34813
+ 5921,
33621
34814
  6342,
34815
+ 7e3,
33622
34816
  7560,
33623
34817
  8453,
33624
34818
  9889,
33625
34819
  10143,
33626
34820
  10200,
33627
34821
  17e3,
34822
+ 17864,
34823
+ 33111,
34824
+ 34443,
33628
34825
  42161,
34826
+ 42170,
34827
+ 42220,
33629
34828
  43113,
33630
34829
  43114,
34830
+ 48900,
33631
34831
  50104,
34832
+ 57073,
33632
34833
  59144,
33633
34834
  80002,
33634
34835
  80084,
@@ -33639,12 +34840,14 @@ var hyperRPCSupportedNetworks = [
33639
34840
  98866,
33640
34841
  421614,
33641
34842
  534352,
34843
+ 696969,
33642
34844
  7225878,
33643
34845
  7777777,
33644
34846
  11155111,
33645
34847
  11155420,
33646
34848
  168587773,
33647
34849
  531050104,
34850
+ 1313161554,
33648
34851
  1313161567,
33649
34852
  16666e5
33650
34853
  ];
@@ -34680,9 +35883,11 @@ function diffFoundryStorageLayout(layoutBefore, layoutAfter) {
34680
35883
  IAToken_ABI,
34681
35884
  IAaveOracle_ABI,
34682
35885
  IAaveV3ConfigEngine_ABI,
35886
+ IAccessControl_ABI,
34683
35887
  IAuthorizedForwarder_ABI,
34684
35888
  ICollector_ABI,
34685
35889
  IDualAggregator_ABI,
35890
+ IERC1967_ABI,
34686
35891
  IERC20Metadata_ABI,
34687
35892
  IERC20_ABI,
34688
35893
  IEmissionManager_ABI,
@@ -34697,8 +35902,10 @@ function diffFoundryStorageLayout(layoutBefore, layoutAfter) {
34697
35902
  IUmbrella_ABI,
34698
35903
  IWrappedTokenGatewayV3_ABI,
34699
35904
  LTV_PRECISION,
35905
+ Ownable_ABI,
34700
35906
  PayloadState,
34701
35907
  ProposalState,
35908
+ ProxyAdmin_ABI,
34702
35909
  RAY,
34703
35910
  SECONDS_PER_YEAR,
34704
35911
  SelfdestructCheckState,