@rhinestone/shared-configs 1.9.0 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/configs/chains.json +141 -0
- package/dist/scripts/__tests__/validation.test.js +170 -0
- package/dist/scripts/generate.js +28 -5
- package/dist/scripts/validation.d.ts +57 -0
- package/dist/scripts/validation.d.ts.map +1 -1
- package/dist/scripts/validation.js +213 -2
- package/dist/src/__tests__/chainFactsClient.test.js +12 -2
- package/dist/src/__tests__/chainVirtualization.test.js +9 -3
- package/dist/src/chainVirtualization.d.ts +10 -8
- package/dist/src/chainVirtualization.d.ts.map +1 -1
- package/dist/src/chainVirtualization.js +11 -12
- package/dist/src/chains.d.ts +14 -3
- package/dist/src/chains.d.ts.map +1 -1
- package/dist/src/chains.js +141 -0
- package/dist/src/generated/packageVersion.d.ts +1 -1
- package/dist/src/generated/packageVersion.d.ts.map +1 -1
- package/dist/src/generated/packageVersion.js +1 -1
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/types.d.ts +38 -6
- package/dist/src/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/chains.js
CHANGED
|
@@ -3,6 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.chains = void 0;
|
|
4
4
|
const chains = {
|
|
5
5
|
"1": {
|
|
6
|
+
"caip2": "eip155:1",
|
|
7
|
+
"explorer": {
|
|
8
|
+
"url": "https://etherscan.io",
|
|
9
|
+
"addressPath": "/address/",
|
|
10
|
+
"txPath": "/tx/"
|
|
11
|
+
},
|
|
6
12
|
"name": "Ethereum",
|
|
7
13
|
"nativeToken": {
|
|
8
14
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -91,6 +97,12 @@ const chains = {
|
|
|
91
97
|
]
|
|
92
98
|
},
|
|
93
99
|
"10": {
|
|
100
|
+
"caip2": "eip155:10",
|
|
101
|
+
"explorer": {
|
|
102
|
+
"url": "https://optimistic.etherscan.io",
|
|
103
|
+
"addressPath": "/address/",
|
|
104
|
+
"txPath": "/tx/"
|
|
105
|
+
},
|
|
94
106
|
"name": "OP Mainnet",
|
|
95
107
|
"nativeToken": {
|
|
96
108
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -190,6 +202,12 @@ const chains = {
|
|
|
190
202
|
]
|
|
191
203
|
},
|
|
192
204
|
"56": {
|
|
205
|
+
"caip2": "eip155:56",
|
|
206
|
+
"explorer": {
|
|
207
|
+
"url": "https://bscscan.com",
|
|
208
|
+
"addressPath": "/address/",
|
|
209
|
+
"txPath": "/tx/"
|
|
210
|
+
},
|
|
193
211
|
"name": "BNB Smart Chain",
|
|
194
212
|
"nativeToken": {
|
|
195
213
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -262,6 +280,12 @@ const chains = {
|
|
|
262
280
|
]
|
|
263
281
|
},
|
|
264
282
|
"100": {
|
|
283
|
+
"caip2": "eip155:100",
|
|
284
|
+
"explorer": {
|
|
285
|
+
"url": "https://gnosisscan.io",
|
|
286
|
+
"addressPath": "/address/",
|
|
287
|
+
"txPath": "/tx/"
|
|
288
|
+
},
|
|
265
289
|
"name": "Gnosis",
|
|
266
290
|
"nativeToken": {
|
|
267
291
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -302,6 +326,12 @@ const chains = {
|
|
|
302
326
|
]
|
|
303
327
|
},
|
|
304
328
|
"130": {
|
|
329
|
+
"caip2": "eip155:130",
|
|
330
|
+
"explorer": {
|
|
331
|
+
"url": "https://uniscan.xyz",
|
|
332
|
+
"addressPath": "/address/",
|
|
333
|
+
"txPath": "/tx/"
|
|
334
|
+
},
|
|
305
335
|
"name": "Unichain",
|
|
306
336
|
"nativeToken": {
|
|
307
337
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -389,6 +419,12 @@ const chains = {
|
|
|
389
419
|
]
|
|
390
420
|
},
|
|
391
421
|
"137": {
|
|
422
|
+
"caip2": "eip155:137",
|
|
423
|
+
"explorer": {
|
|
424
|
+
"url": "https://polygonscan.com",
|
|
425
|
+
"addressPath": "/address/",
|
|
426
|
+
"txPath": "/tx/"
|
|
427
|
+
},
|
|
392
428
|
"name": "Polygon",
|
|
393
429
|
"nativeToken": {
|
|
394
430
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -464,6 +500,12 @@ const chains = {
|
|
|
464
500
|
]
|
|
465
501
|
},
|
|
466
502
|
"143": {
|
|
503
|
+
"caip2": "eip155:143",
|
|
504
|
+
"explorer": {
|
|
505
|
+
"url": "https://monadscan.com",
|
|
506
|
+
"addressPath": "/address/",
|
|
507
|
+
"txPath": "/tx/"
|
|
508
|
+
},
|
|
467
509
|
"name": "Monad",
|
|
468
510
|
"nativeToken": {
|
|
469
511
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -537,6 +579,12 @@ const chains = {
|
|
|
537
579
|
]
|
|
538
580
|
},
|
|
539
581
|
"146": {
|
|
582
|
+
"caip2": "eip155:146",
|
|
583
|
+
"explorer": {
|
|
584
|
+
"url": "https://sonicscan.org",
|
|
585
|
+
"addressPath": "/address/",
|
|
586
|
+
"txPath": "/tx/"
|
|
587
|
+
},
|
|
540
588
|
"name": "Sonic",
|
|
541
589
|
"nativeToken": {
|
|
542
590
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -582,6 +630,12 @@ const chains = {
|
|
|
582
630
|
]
|
|
583
631
|
},
|
|
584
632
|
"999": {
|
|
633
|
+
"caip2": "eip155:999",
|
|
634
|
+
"explorer": {
|
|
635
|
+
"url": "https://hyperevmscan.io",
|
|
636
|
+
"addressPath": "/address/",
|
|
637
|
+
"txPath": "/tx/"
|
|
638
|
+
},
|
|
585
639
|
"name": "HyperEVM",
|
|
586
640
|
"nativeToken": {
|
|
587
641
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -640,6 +694,11 @@ const chains = {
|
|
|
640
694
|
},
|
|
641
695
|
"1337": {
|
|
642
696
|
"caip2": "hypercore:mainnet",
|
|
697
|
+
"explorer": {
|
|
698
|
+
"addressPath": "/explorer/address/",
|
|
699
|
+
"txPath": "/explorer/tx/",
|
|
700
|
+
"url": "https://app.hyperliquid.xyz"
|
|
701
|
+
},
|
|
643
702
|
"name": "HyperCore",
|
|
644
703
|
"nativeToken": {
|
|
645
704
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -670,6 +729,12 @@ const chains = {
|
|
|
670
729
|
"providers": []
|
|
671
730
|
},
|
|
672
731
|
"1868": {
|
|
732
|
+
"caip2": "eip155:1868",
|
|
733
|
+
"explorer": {
|
|
734
|
+
"url": "https://soneium.blockscout.com",
|
|
735
|
+
"addressPath": "/address/",
|
|
736
|
+
"txPath": "/tx/"
|
|
737
|
+
},
|
|
673
738
|
"name": "Soneium Mainnet",
|
|
674
739
|
"nativeToken": {
|
|
675
740
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -742,6 +807,12 @@ const chains = {
|
|
|
742
807
|
]
|
|
743
808
|
},
|
|
744
809
|
"4663": {
|
|
810
|
+
"caip2": "eip155:4663",
|
|
811
|
+
"explorer": {
|
|
812
|
+
"url": "https://robinhoodchain.blockscout.com",
|
|
813
|
+
"addressPath": "/address/",
|
|
814
|
+
"txPath": "/tx/"
|
|
815
|
+
},
|
|
745
816
|
"name": "Robinhood Chain",
|
|
746
817
|
"nativeToken": {
|
|
747
818
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -803,6 +874,12 @@ const chains = {
|
|
|
803
874
|
]
|
|
804
875
|
},
|
|
805
876
|
"8453": {
|
|
877
|
+
"caip2": "eip155:8453",
|
|
878
|
+
"explorer": {
|
|
879
|
+
"url": "https://basescan.org",
|
|
880
|
+
"addressPath": "/address/",
|
|
881
|
+
"txPath": "/tx/"
|
|
882
|
+
},
|
|
806
883
|
"name": "Base",
|
|
807
884
|
"nativeToken": {
|
|
808
885
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -876,6 +953,12 @@ const chains = {
|
|
|
876
953
|
]
|
|
877
954
|
},
|
|
878
955
|
"9745": {
|
|
956
|
+
"caip2": "eip155:9745",
|
|
957
|
+
"explorer": {
|
|
958
|
+
"url": "https://plasmascan.to",
|
|
959
|
+
"addressPath": "/address/",
|
|
960
|
+
"txPath": "/tx/"
|
|
961
|
+
},
|
|
879
962
|
"name": "Plasma",
|
|
880
963
|
"nativeToken": {
|
|
881
964
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -924,6 +1007,12 @@ const chains = {
|
|
|
924
1007
|
]
|
|
925
1008
|
},
|
|
926
1009
|
"9746": {
|
|
1010
|
+
"caip2": "eip155:9746",
|
|
1011
|
+
"explorer": {
|
|
1012
|
+
"url": "https://testnet.plasmascan.to",
|
|
1013
|
+
"addressPath": "/address/",
|
|
1014
|
+
"txPath": "/tx/"
|
|
1015
|
+
},
|
|
927
1016
|
"name": "Plasma Testnet",
|
|
928
1017
|
"nativeToken": {
|
|
929
1018
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -974,6 +1063,12 @@ const chains = {
|
|
|
974
1063
|
]
|
|
975
1064
|
},
|
|
976
1065
|
"42161": {
|
|
1066
|
+
"caip2": "eip155:42161",
|
|
1067
|
+
"explorer": {
|
|
1068
|
+
"url": "https://arbiscan.io",
|
|
1069
|
+
"addressPath": "/address/",
|
|
1070
|
+
"txPath": "/tx/"
|
|
1071
|
+
},
|
|
977
1072
|
"name": "Arbitrum One",
|
|
978
1073
|
"nativeToken": {
|
|
979
1074
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1062,6 +1157,12 @@ const chains = {
|
|
|
1062
1157
|
]
|
|
1063
1158
|
},
|
|
1064
1159
|
"43114": {
|
|
1160
|
+
"caip2": "eip155:43114",
|
|
1161
|
+
"explorer": {
|
|
1162
|
+
"url": "https://snowtrace.io",
|
|
1163
|
+
"addressPath": "/address/",
|
|
1164
|
+
"txPath": "/tx/"
|
|
1165
|
+
},
|
|
1065
1166
|
"name": "Avalanche",
|
|
1066
1167
|
"nativeToken": {
|
|
1067
1168
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1143,6 +1244,12 @@ const chains = {
|
|
|
1143
1244
|
]
|
|
1144
1245
|
},
|
|
1145
1246
|
"84532": {
|
|
1247
|
+
"caip2": "eip155:84532",
|
|
1248
|
+
"explorer": {
|
|
1249
|
+
"url": "https://sepolia.basescan.org",
|
|
1250
|
+
"addressPath": "/address/",
|
|
1251
|
+
"txPath": "/tx/"
|
|
1252
|
+
},
|
|
1146
1253
|
"name": "Base Sepolia",
|
|
1147
1254
|
"nativeToken": {
|
|
1148
1255
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1222,6 +1329,12 @@ const chains = {
|
|
|
1222
1329
|
]
|
|
1223
1330
|
},
|
|
1224
1331
|
"421614": {
|
|
1332
|
+
"caip2": "eip155:421614",
|
|
1333
|
+
"explorer": {
|
|
1334
|
+
"url": "https://sepolia.arbiscan.io",
|
|
1335
|
+
"addressPath": "/address/",
|
|
1336
|
+
"txPath": "/tx/"
|
|
1337
|
+
},
|
|
1225
1338
|
"name": "Arbitrum Sepolia",
|
|
1226
1339
|
"nativeToken": {
|
|
1227
1340
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1287,6 +1400,12 @@ const chains = {
|
|
|
1287
1400
|
]
|
|
1288
1401
|
},
|
|
1289
1402
|
"747474": {
|
|
1403
|
+
"caip2": "eip155:747474",
|
|
1404
|
+
"explorer": {
|
|
1405
|
+
"url": "https://katanascan.com",
|
|
1406
|
+
"addressPath": "/address/",
|
|
1407
|
+
"txPath": "/tx/"
|
|
1408
|
+
},
|
|
1290
1409
|
"name": "Katana",
|
|
1291
1410
|
"nativeToken": {
|
|
1292
1411
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1349,6 +1468,12 @@ const chains = {
|
|
|
1349
1468
|
]
|
|
1350
1469
|
},
|
|
1351
1470
|
"11155111": {
|
|
1471
|
+
"caip2": "eip155:11155111",
|
|
1472
|
+
"explorer": {
|
|
1473
|
+
"url": "https://sepolia.etherscan.io",
|
|
1474
|
+
"addressPath": "/address/",
|
|
1475
|
+
"txPath": "/tx/"
|
|
1476
|
+
},
|
|
1352
1477
|
"name": "Sepolia",
|
|
1353
1478
|
"nativeToken": {
|
|
1354
1479
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1414,6 +1539,12 @@ const chains = {
|
|
|
1414
1539
|
]
|
|
1415
1540
|
},
|
|
1416
1541
|
"11155420": {
|
|
1542
|
+
"caip2": "eip155:11155420",
|
|
1543
|
+
"explorer": {
|
|
1544
|
+
"url": "https://optimism-sepolia.blockscout.com",
|
|
1545
|
+
"addressPath": "/address/",
|
|
1546
|
+
"txPath": "/tx/"
|
|
1547
|
+
},
|
|
1417
1548
|
"name": "OP Sepolia",
|
|
1418
1549
|
"nativeToken": {
|
|
1419
1550
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1480,6 +1611,11 @@ const chains = {
|
|
|
1480
1611
|
},
|
|
1481
1612
|
"728126428": {
|
|
1482
1613
|
"caip2": "tron:mainnet",
|
|
1614
|
+
"explorer": {
|
|
1615
|
+
"addressPath": "/#/address/",
|
|
1616
|
+
"txPath": "/#/transaction/",
|
|
1617
|
+
"url": "https://tronscan.org"
|
|
1618
|
+
},
|
|
1483
1619
|
"name": "Tron",
|
|
1484
1620
|
"nativeToken": {
|
|
1485
1621
|
"address": "0x0000000000000000000000000000000000000000",
|
|
@@ -1522,6 +1658,11 @@ const chains = {
|
|
|
1522
1658
|
},
|
|
1523
1659
|
"792703809": {
|
|
1524
1660
|
"caip2": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
|
|
1661
|
+
"explorer": {
|
|
1662
|
+
"addressPath": "/address/",
|
|
1663
|
+
"txPath": "/tx/",
|
|
1664
|
+
"url": "https://solscan.io"
|
|
1665
|
+
},
|
|
1525
1666
|
"name": "Solana",
|
|
1526
1667
|
"nativeToken": {
|
|
1527
1668
|
"address": "11111111111111111111111111111111",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../../../src/generated/packageVersion.ts"],"names":[],"mappings":"AACA,QAAA,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../../../src/generated/packageVersion.ts"],"names":[],"mappings":"AACA,QAAA,MAAM,eAAe,WAAW,CAAC;AAEjC,OAAO,EAAE,eAAe,EAAE,CAAC"}
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PACKAGE_VERSION = void 0;
|
|
4
4
|
// Auto-generated by scripts/generate.ts. Do not edit manually.
|
|
5
|
-
const PACKAGE_VERSION = "1.
|
|
5
|
+
const PACKAGE_VERSION = "1.10.1";
|
|
6
6
|
exports.PACKAGE_VERSION = PACKAGE_VERSION;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { contractAddresses } from "./generated/contracts";
|
|
2
2
|
import { contractAddresses as contractAddressesDev } from "./generated/contracts.dev";
|
|
3
|
-
import type { ChainEntry, ChainItem, ChainList, ChainNetwork, ChainStack, ChainRegistry, ProviderName, ProviderRegistry, SettlementLayer, SupportedChain, SupportedMainnet, SupportedOPStackMainnet, SupportedOPStackTestnet, SupportedTestnet, SwapQuoter } from "./types";
|
|
3
|
+
import type { ChainEntry, ChainExplorer, ChainItem, ChainList, ChainNetwork, ChainStack, ChainRegistry, ProviderName, ProviderRegistry, SettlementLayer, SupportedChain, SupportedMainnet, SupportedOPStackMainnet, SupportedOPStackTestnet, SupportedTestnet, SwapQuoter } from "./types";
|
|
4
4
|
import { chains, MainnetNetwork, mainnetChains, OPStackChains, TestnetNetwork, testnetChains } from "./types";
|
|
5
5
|
import type { PegGroup } from "./types";
|
|
6
6
|
import { getOftConfig, getSupportedOftTokens, hasOftSupport, OFT_REGISTRY } from "./oft";
|
|
@@ -16,6 +16,6 @@ declare const mainnetChainList: ChainList;
|
|
|
16
16
|
declare const testnetChainList: ChainList;
|
|
17
17
|
declare function chainHasUnpricedTokens(chainId: number): boolean;
|
|
18
18
|
export { chainRegistry, providerRegistry, mainnetChainList, testnetChainList, contractAddresses, contractAddressesDev, chains, mainnetChains, testnetChains, MainnetNetwork, OPStackChains, TestnetNetwork, OFT_REGISTRY, getOftConfig, hasOftSupport, getSupportedOftTokens, chainHasUnpricedTokens, HYPERCORE_CHAIN_ID, HYPERCORE_SETTLEMENT_CHAIN_ID, CORE_WRITER_PRECOMPILE, CORE_DEPOSIT_WALLET, HYPERCORE_SPOT_DEX, HYPERCORE_DEFAULT_PERP_DEX, HYPERCORE_USDC_ACTIVATION_FEE, getApproveCoreDepositWalletCall, getDepositForCall, isHyperCoreChainId, resolveSettlementChainId, isNonEvmChainId, getNonEvmChainIds, getCaip2, chainIdFromCaip2, createChainFactsClient, CHAIN_FACTS_LATEST_URL, CHAIN_FACTS_PUBLIC_KEY, };
|
|
19
|
-
export type { ChainEntry, ChainItem, ChainList, ChainNetwork, ChainStack, ChainRegistry, ProviderRegistry, ProviderName, SwapQuoter, SupportedMainnet, SupportedTestnet, SupportedChain, SupportedOPStackMainnet, SupportedOPStackTestnet, SettlementLayer, OftConfig, PegGroup, ChainFactsClient, ChainFactsClientOptions, ChainFactsErrorPhase, ChainFactsPayload, ChainFactsSnapshot, ChainFactsSource, };
|
|
19
|
+
export type { ChainEntry, ChainExplorer, ChainItem, ChainList, ChainNetwork, ChainStack, ChainRegistry, ProviderRegistry, ProviderName, SwapQuoter, SupportedMainnet, SupportedTestnet, SupportedChain, SupportedOPStackMainnet, SupportedOPStackTestnet, SettlementLayer, OftConfig, PegGroup, ChainFactsClient, ChainFactsClientOptions, ChainFactsErrorPhase, ChainFactsPayload, ChainFactsSnapshot, ChainFactsSource, };
|
|
20
20
|
export * from "./abis";
|
|
21
21
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,iBAAiB,IAAI,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACtF,OAAO,KAAK,EACV,UAAU,EACV,SAAS,EACT,SAAS,EACT,YAAY,EACZ,UAAU,EACV,aAAa,EACb,YAAY,EACZ,gBAAgB,EAChB,eAAe,EACf,cAAc,EACd,gBAAgB,EAChB,uBAAuB,EACvB,uBAAuB,EACvB,gBAAgB,EAChB,UAAU,EACX,MAAM,SAAS,CAAC;AACjB,OAAO,EACL,MAAM,EACN,cAAc,EACd,aAAa,EACb,aAAa,EACb,cAAc,EACd,aAAa,EACd,MAAM,SAAS,CAAC;AACjB,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,EACL,YAAY,EACZ,qBAAqB,EACrB,aAAa,EACb,YAAY,EACb,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,EACL,mBAAmB,EACnB,sBAAsB,EACtB,+BAA+B,EAC/B,iBAAiB,EACjB,kBAAkB,EAClB,0BAA0B,EAC1B,6BAA6B,EAC7B,kBAAkB,EAClB,6BAA6B,EAC7B,kBAAkB,EAClB,wBAAwB,EACzB,MAAM,aAAa,CAAC;AACrB,OAAO,EACL,gBAAgB,EAChB,QAAQ,EACR,iBAAiB,EACjB,eAAe,EAChB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EACL,sBAAsB,EACtB,sBAAsB,EACvB,MAAM,2BAA2B,CAAC;AACnC,OAAO,KAAK,EACV,gBAAgB,EAChB,uBAAuB,EACvB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EACjB,MAAM,oBAAoB,CAAC;AAE5B,QAAA,MAAM,aAAa,EAAE,aAAkD,CAAC;AACxE,QAAA,MAAM,gBAAgB,EAAE,gBACkB,CAAC;AAC3C,QAAA,MAAM,gBAAgB,EAAE,SAA6C,CAAC;AACtE,QAAA,MAAM,gBAAgB,EAAE,SAA6C,CAAC;AAOtE,iBAAS,sBAAsB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAIxD;AAED,OAAO,EAEL,aAAa,EACb,gBAAgB,EAChB,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,EACjB,oBAAoB,EAEpB,MAAM,EACN,aAAa,EACb,aAAa,EAEb,cAAc,EACd,aAAa,EACb,cAAc,EAEd,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,qBAAqB,EAErB,sBAAsB,EAEtB,kBAAkB,EAClB,6BAA6B,EAC7B,sBAAsB,EACtB,mBAAmB,EACnB,kBAAkB,EAClB,0BAA0B,EAC1B,6BAA6B,EAC7B,+BAA+B,EAC/B,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,EAExB,eAAe,EACf,iBAAiB,EACjB,QAAQ,EACR,gBAAgB,EAEhB,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,GACvB,CAAC;AACF,YAAY,EAEV,UAAU,EACV,SAAS,EACT,SAAS,EACT,YAAY,EACZ,UAAU,EACV,aAAa,EACb,gBAAgB,EAChB,YAAY,EACZ,UAAU,EAEV,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,uBAAuB,EACvB,uBAAuB,EACvB,eAAe,EAEf,SAAS,EAET,QAAQ,EAER,gBAAgB,EAChB,uBAAuB,EACvB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,GACjB,CAAC;AAEF,cAAc,QAAQ,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/src/types.d.ts
CHANGED
|
@@ -52,6 +52,18 @@ interface TokenEntry {
|
|
|
52
52
|
settlementLayers?: SettlementLayer[];
|
|
53
53
|
unpriced?: boolean;
|
|
54
54
|
}
|
|
55
|
+
/**
|
|
56
|
+
* A chain's block explorer. Split into a base and paths rather than a single
|
|
57
|
+
* template because the paths are not universal — see `ChainEntry.explorer`.
|
|
58
|
+
*/
|
|
59
|
+
interface ChainExplorer {
|
|
60
|
+
/** Origin, no trailing slash (e.g. `https://etherscan.io`). */
|
|
61
|
+
url: string;
|
|
62
|
+
/** Path from `url` to an address page, with both slashes (`/address/`). */
|
|
63
|
+
addressPath: string;
|
|
64
|
+
/** Path from `url` to a transaction page, with both slashes (`/tx/`). */
|
|
65
|
+
txPath: string;
|
|
66
|
+
}
|
|
55
67
|
interface NativeTokenEntry {
|
|
56
68
|
symbol: string;
|
|
57
69
|
/** EVM: zero address placeholder. SVM: wSOL mint. TVM: zero address placeholder. */
|
|
@@ -85,13 +97,33 @@ interface ChainEntry {
|
|
|
85
97
|
*/
|
|
86
98
|
stack: ChainStack;
|
|
87
99
|
/**
|
|
88
|
-
* Canonical CAIP-2 chain identifier (`namespace:reference`)
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
*
|
|
100
|
+
* Canonical CAIP-2 chain identifier (`namespace:reference`) — the id this
|
|
101
|
+
* chain is addressed by on the wire.
|
|
102
|
+
*
|
|
103
|
+
* Present on every entry. Chains whose id is not an EIP-155 one author it
|
|
104
|
+
* (`solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp`, `tron:mainnet`,
|
|
105
|
+
* `hypercore:mainnet`); EVM chains have `eip155:<chainId>` stamped by
|
|
106
|
+
* `classifyChainCaip2` at build time. Read it rather than deriving the
|
|
107
|
+
* eip155 form — the derivation is wrong for exactly the chains where being
|
|
108
|
+
* wrong is silent, HyperCore above all (`eip155:1337` is the Hardhat local
|
|
109
|
+
* chain id).
|
|
92
110
|
* https://chainagnostic.org/CAIPs/caip-2
|
|
93
111
|
*/
|
|
94
|
-
caip2
|
|
112
|
+
caip2: string;
|
|
113
|
+
/**
|
|
114
|
+
* Where a human can look this chain's addresses and transactions up, or
|
|
115
|
+
* `null` for a chain with no explorer (HyperCore today) — consumers render
|
|
116
|
+
* plain text rather than a link in that case.
|
|
117
|
+
*
|
|
118
|
+
* `url` carries no trailing slash and the paths carry their own, so a link is
|
|
119
|
+
* `${url}${addressPath}${value}`. The paths exist because they are not
|
|
120
|
+
* universal: Tronscan routes under a fragment (`/#/address/`) and calls a
|
|
121
|
+
* transaction `transaction`, not `tx`.
|
|
122
|
+
*
|
|
123
|
+
* Derived from the chain's viem definition where it has one, authored in the
|
|
124
|
+
* jsonnet where it does not — see `classifyChainExplorers`.
|
|
125
|
+
*/
|
|
126
|
+
explorer: ChainExplorer | null;
|
|
95
127
|
/**
|
|
96
128
|
* True for virtual chains (e.g. HyperCore, chain id 1337) that are addressed
|
|
97
129
|
* as a distinct destination but have no RPC / providers / contracts / gas
|
|
@@ -152,5 +184,5 @@ interface ErpcConfig {
|
|
|
152
184
|
providerIdPrefix: Record<string, string>;
|
|
153
185
|
}
|
|
154
186
|
export { OPStackChains, MainnetNetwork, TestnetNetwork, mainnetChains, testnetChains, chains, PEG_GROUPS };
|
|
155
|
-
export type { ChainItem, ChainEntry, ChainNetwork, ChainRegistry, ChainStack, ChainList, ContractAddresses, ProviderRegistry, ProviderName, SettlementLayer, SupportedTestnet, SupportedMainnet, SupportedOPStackMainnet, SupportedOPStackTestnet, SupportedChain, SwapQuoter, SwapQuoterConfig, PegGroup, VmType, ErpcFailsafe, ErpcChainOverride, ErpcConfig, };
|
|
187
|
+
export type { ChainItem, ChainEntry, ChainExplorer, ChainNetwork, ChainRegistry, ChainStack, ChainList, ContractAddresses, ProviderRegistry, ProviderName, SettlementLayer, SupportedTestnet, SupportedMainnet, SupportedOPStackMainnet, SupportedOPStackTestnet, SupportedChain, SwapQuoter, SwapQuoterConfig, PegGroup, VmType, ErpcFailsafe, ErpcChainOverride, ErpcConfig, };
|
|
156
188
|
//# sourceMappingURL=types.d.ts.map
|
package/dist/src/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EACL,MAAM,EACN,cAAc,EACd,aAAa,EACb,aAAa,EACb,cAAc,EACd,aAAa,EACd,MAAM,sBAAsB,CAAC;AAE9B,KAAK,gBAAgB,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;AACvD,KAAK,gBAAgB,GAAG,gBAAgB,CAAC,OAAO,cAAc,CAAC,CAAC;AAChE,KAAK,gBAAgB,GAAG,gBAAgB,CAAC,OAAO,cAAc,CAAC,CAAC;AAChE,KAAK,uBAAuB,GAAG,OAAO,CAAC,gBAAgB,CAAC,OAAO,aAAa,CAAC,EAAE,gBAAgB,CAAC,CAAC;AACjG,KAAK,uBAAuB,GAAG,OAAO,CAAC,gBAAgB,CAAC,OAAO,aAAa,CAAC,EAAE,gBAAgB,CAAC,CAAC;AACjG,KAAK,cAAc,GAAG,gBAAgB,GAAG,gBAAgB,CAAC;AAE1D,KAAK,eAAe,GAAG,QAAQ,GAAG,KAAK,GAAG,OAAO,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,CAAC;AAEtF,KAAK,UAAU,GAAG,OAAO,GAAG,IAAI,GAAG,QAAQ,GAAG,WAAW,GAAG,MAAM,CAAC;AAEnE,KAAK,QAAQ,GAAG,KAAK,GAAG,KAAK,CAAC;AAE9B,KAAK,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;AAEpC,KAAK,YAAY,GAAG,SAAS,GAAG,SAAS,CAAC;AAE1C;;;;;;;;;;;;;GAaG;AACH,KAAK,UAAU,GAAG,UAAU,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,CAAC;AAE7D,QAAA,MAAM,UAAU,EAAE,MAAM,CAAC,QAAQ,EAAE;IAAE,SAAS,EAAE,MAAM,CAAA;CAAE,CAGvD,CAAC;AAEF,UAAU,UAAU;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,4EAA4E;IAC5E,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;;;;;;OASG;IACH,gBAAgB,CAAC,EAAE,eAAe,EAAE,CAAC;IAKrC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,UAAU,gBAAgB;IACxB,MAAM,EAAE,MAAM,CAAC;IACf,oFAAoF;IACpF,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,UAAU,gBAAgB;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,UAAU,UAAU;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;OASG;IACH,OAAO,EAAE,YAAY,CAAC;IACtB;;;;;;;OAOG;IACH,KAAK,EAAE,UAAU,CAAC;IAClB
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
|