@revoke.cash/chains 9.0.0 → 11.0.0
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/src/chains.js +591 -95
- package/dist/src/enums.d.ts +44 -14
- package/dist/src/enums.js +44 -14
- package/package.json +1 -1
package/dist/src/chains.js
CHANGED
|
@@ -27,6 +27,12 @@ exports.chains = {
|
|
|
27
27
|
name: 'etherscan',
|
|
28
28
|
url: 'https://etherscan.io',
|
|
29
29
|
standard: 'EIP3091'
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'blockscout',
|
|
33
|
+
url: 'https://eth.blockscout.com',
|
|
34
|
+
icon: 'blockscout',
|
|
35
|
+
standard: 'EIP3091'
|
|
30
36
|
}
|
|
31
37
|
]
|
|
32
38
|
},
|
|
@@ -124,6 +130,12 @@ exports.chains = {
|
|
|
124
130
|
name: 'etherscan-goerli',
|
|
125
131
|
url: 'https://goerli.etherscan.io',
|
|
126
132
|
standard: 'EIP3091'
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
name: 'blockscout-goerli',
|
|
136
|
+
url: 'https://eth-goerli.blockscout.com',
|
|
137
|
+
icon: 'blockscout',
|
|
138
|
+
standard: 'EIP3091'
|
|
127
139
|
}
|
|
128
140
|
]
|
|
129
141
|
},
|
|
@@ -194,7 +206,7 @@ exports.chains = {
|
|
|
194
206
|
10: {
|
|
195
207
|
name: 'OP Mainnet',
|
|
196
208
|
chain: 'ETH',
|
|
197
|
-
rpc: ['https://mainnet.optimism.io
|
|
209
|
+
rpc: ['https://mainnet.optimism.io', 'https://optimism.publicnode.com'],
|
|
198
210
|
faucets: [],
|
|
199
211
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
200
212
|
infoURL: 'https://optimism.io',
|
|
@@ -206,6 +218,12 @@ exports.chains = {
|
|
|
206
218
|
name: 'etherscan',
|
|
207
219
|
url: 'https://optimistic.etherscan.io',
|
|
208
220
|
standard: 'EIP3091'
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
name: 'blockscout',
|
|
224
|
+
url: 'https://optimism.blockscout.com',
|
|
225
|
+
icon: 'blockscout',
|
|
226
|
+
standard: 'EIP3091'
|
|
209
227
|
}
|
|
210
228
|
]
|
|
211
229
|
},
|
|
@@ -432,7 +450,7 @@ exports.chains = {
|
|
|
432
450
|
redFlags: ['reusedChainId']
|
|
433
451
|
},
|
|
434
452
|
25: {
|
|
435
|
-
name: 'Cronos Mainnet
|
|
453
|
+
name: 'Cronos Mainnet',
|
|
436
454
|
chain: 'CRO',
|
|
437
455
|
rpc: ['https://evm.cronos.org', 'https://cronos-evm.publicnode.com'],
|
|
438
456
|
features: [{ name: 'EIP1559' }],
|
|
@@ -1077,7 +1095,8 @@ exports.chains = {
|
|
|
1077
1095
|
'https://rpc.syscoin.org',
|
|
1078
1096
|
'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}',
|
|
1079
1097
|
'https://syscoin.public-rpc.com',
|
|
1080
|
-
'wss://rpc.syscoin.org/wss'
|
|
1098
|
+
'wss://rpc.syscoin.org/wss',
|
|
1099
|
+
'https://syscoin-evm.publicnode.com'
|
|
1081
1100
|
],
|
|
1082
1101
|
faucets: ['https://faucet.syscoin.org'],
|
|
1083
1102
|
nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
|
|
@@ -1410,7 +1429,7 @@ exports.chains = {
|
|
|
1410
1429
|
75: {
|
|
1411
1430
|
name: 'Decimal Smart Chain Mainnet',
|
|
1412
1431
|
chain: 'DSC',
|
|
1413
|
-
rpc: ['https://node.decimalchain.com/web3'],
|
|
1432
|
+
rpc: ['https://node.decimalchain.com/web3/'],
|
|
1414
1433
|
faucets: [],
|
|
1415
1434
|
nativeCurrency: { name: 'Decimal', symbol: 'DEL', decimals: 18 },
|
|
1416
1435
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -1458,7 +1477,8 @@ exports.chains = {
|
|
|
1458
1477
|
{
|
|
1459
1478
|
name: 'blockscout',
|
|
1460
1479
|
url: 'https://blockscout.com/poa/sokol',
|
|
1461
|
-
|
|
1480
|
+
icon: 'blockscout',
|
|
1481
|
+
standard: 'EIP3091'
|
|
1462
1482
|
}
|
|
1463
1483
|
]
|
|
1464
1484
|
},
|
|
@@ -1518,22 +1538,32 @@ exports.chains = {
|
|
|
1518
1538
|
]
|
|
1519
1539
|
},
|
|
1520
1540
|
81: {
|
|
1521
|
-
name: '
|
|
1522
|
-
chain: '
|
|
1523
|
-
rpc: [
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1541
|
+
name: 'Japan Open Chain Mainnet',
|
|
1542
|
+
chain: 'JOC',
|
|
1543
|
+
rpc: [
|
|
1544
|
+
'https://rpc-1.japanopenchain.org:8545',
|
|
1545
|
+
'https://rpc-2.japanopenchain.org:8545'
|
|
1546
|
+
],
|
|
1547
|
+
faucets: [],
|
|
1548
|
+
nativeCurrency: {
|
|
1549
|
+
name: 'Japan Open Chain Token',
|
|
1550
|
+
symbol: 'JOC',
|
|
1551
|
+
decimals: 18
|
|
1552
|
+
},
|
|
1553
|
+
infoURL: 'https://www.japanopenchain.org/',
|
|
1554
|
+
shortName: 'joc',
|
|
1527
1555
|
chainId: 81,
|
|
1528
1556
|
networkId: 81,
|
|
1529
|
-
|
|
1557
|
+
icon: 'joc',
|
|
1530
1558
|
explorers: [
|
|
1531
1559
|
{
|
|
1532
|
-
name: '
|
|
1533
|
-
url: 'https://
|
|
1534
|
-
standard: 'EIP3091'
|
|
1560
|
+
name: 'Block Explorer',
|
|
1561
|
+
url: 'https://explorer.japanopenchain.org',
|
|
1562
|
+
standard: 'EIP3091',
|
|
1563
|
+
icon: 'joc'
|
|
1535
1564
|
}
|
|
1536
|
-
]
|
|
1565
|
+
],
|
|
1566
|
+
redFlags: ['reusedChainId']
|
|
1537
1567
|
},
|
|
1538
1568
|
82: {
|
|
1539
1569
|
name: 'Meter Mainnet',
|
|
@@ -1888,7 +1918,8 @@ exports.chains = {
|
|
|
1888
1918
|
{
|
|
1889
1919
|
name: 'blockscout',
|
|
1890
1920
|
url: 'https://blockscout.com/poa/core',
|
|
1891
|
-
|
|
1921
|
+
icon: 'blockscout',
|
|
1922
|
+
standard: 'EIP3091'
|
|
1892
1923
|
}
|
|
1893
1924
|
]
|
|
1894
1925
|
},
|
|
@@ -1926,7 +1957,7 @@ exports.chains = {
|
|
|
1926
1957
|
},
|
|
1927
1958
|
{
|
|
1928
1959
|
name: 'blockscout',
|
|
1929
|
-
url: 'https://blockscout.com
|
|
1960
|
+
url: 'https://gnosis.blockscout.com',
|
|
1930
1961
|
icon: 'blockscout',
|
|
1931
1962
|
standard: 'EIP3091'
|
|
1932
1963
|
}
|
|
@@ -3015,6 +3046,25 @@ exports.chains = {
|
|
|
3015
3046
|
chainId: 208,
|
|
3016
3047
|
networkId: 208
|
|
3017
3048
|
},
|
|
3049
|
+
210: {
|
|
3050
|
+
name: 'Bitnet',
|
|
3051
|
+
chain: 'BTN',
|
|
3052
|
+
icon: 'bitnet',
|
|
3053
|
+
rpc: ['https://rpc.bitnet.money', 'https://rpc.btnscan.com'],
|
|
3054
|
+
faucets: [],
|
|
3055
|
+
nativeCurrency: { name: 'Bitnet', symbol: 'BTN', decimals: 18 },
|
|
3056
|
+
infoURL: 'https://bitnet.money',
|
|
3057
|
+
shortName: 'BTN',
|
|
3058
|
+
chainId: 210,
|
|
3059
|
+
networkId: 210,
|
|
3060
|
+
explorers: [
|
|
3061
|
+
{
|
|
3062
|
+
name: 'Bitnet Explorer',
|
|
3063
|
+
url: 'https://btnscan.com',
|
|
3064
|
+
standard: 'EIP3091'
|
|
3065
|
+
}
|
|
3066
|
+
]
|
|
3067
|
+
},
|
|
3018
3068
|
211: {
|
|
3019
3069
|
name: 'Freight Trust Network',
|
|
3020
3070
|
chain: 'EDI',
|
|
@@ -3842,6 +3892,12 @@ exports.chains = {
|
|
|
3842
3892
|
url: 'https://shiden.subscan.io',
|
|
3843
3893
|
standard: 'none',
|
|
3844
3894
|
icon: 'subscan'
|
|
3895
|
+
},
|
|
3896
|
+
{
|
|
3897
|
+
name: 'blockscout',
|
|
3898
|
+
url: 'https://blockscout.com/shiden',
|
|
3899
|
+
icon: 'blockscout',
|
|
3900
|
+
standard: 'EIP3091'
|
|
3845
3901
|
}
|
|
3846
3902
|
]
|
|
3847
3903
|
},
|
|
@@ -3942,7 +3998,11 @@ exports.chains = {
|
|
|
3942
3998
|
chainId: 369,
|
|
3943
3999
|
networkId: 369,
|
|
3944
4000
|
infoURL: 'https://pulsechain.com/',
|
|
3945
|
-
rpc: [
|
|
4001
|
+
rpc: [
|
|
4002
|
+
'https://rpc.pulsechain.com',
|
|
4003
|
+
'wss://rpc.pulsechain.com',
|
|
4004
|
+
'https://pulsechain.publicnode.com'
|
|
4005
|
+
],
|
|
3946
4006
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
3947
4007
|
faucets: [],
|
|
3948
4008
|
ens: { registry: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e' },
|
|
@@ -4083,13 +4143,24 @@ exports.chains = {
|
|
|
4083
4143
|
420: {
|
|
4084
4144
|
name: 'Optimism Goerli Testnet',
|
|
4085
4145
|
chain: 'ETH',
|
|
4086
|
-
rpc: [
|
|
4146
|
+
rpc: [
|
|
4147
|
+
'https://goerli.optimism.io',
|
|
4148
|
+
'https://optimism-goerli.publicnode.com'
|
|
4149
|
+
],
|
|
4087
4150
|
faucets: [],
|
|
4088
4151
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
|
4089
4152
|
infoURL: 'https://optimism.io',
|
|
4090
4153
|
shortName: 'ogor',
|
|
4091
4154
|
chainId: 420,
|
|
4092
|
-
networkId: 420
|
|
4155
|
+
networkId: 420,
|
|
4156
|
+
explorers: [
|
|
4157
|
+
{
|
|
4158
|
+
name: 'blockscout',
|
|
4159
|
+
url: 'https://optimism-goerli.blockscout.com',
|
|
4160
|
+
icon: 'blockscout',
|
|
4161
|
+
standard: 'EIP3091'
|
|
4162
|
+
}
|
|
4163
|
+
]
|
|
4093
4164
|
},
|
|
4094
4165
|
424: {
|
|
4095
4166
|
name: 'PGN (Public Goods Network)',
|
|
@@ -4135,6 +4206,30 @@ exports.chains = {
|
|
|
4135
4206
|
}
|
|
4136
4207
|
]
|
|
4137
4208
|
},
|
|
4209
|
+
443: {
|
|
4210
|
+
name: 'Obscuro Testnet',
|
|
4211
|
+
title: 'Obscuro Sepolia Rollup Testnet',
|
|
4212
|
+
chainId: 443,
|
|
4213
|
+
shortName: 'obs-testnet',
|
|
4214
|
+
chain: 'ETH',
|
|
4215
|
+
networkId: 443,
|
|
4216
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
4217
|
+
rpc: ['https://testnet.obscu.ro'],
|
|
4218
|
+
faucets: [],
|
|
4219
|
+
infoURL: 'https://obscu.ro',
|
|
4220
|
+
explorers: [
|
|
4221
|
+
{
|
|
4222
|
+
name: 'Obscuro Sepolia Rollup Explorer',
|
|
4223
|
+
url: 'https://testnet.obscuroscan.io',
|
|
4224
|
+
standard: 'none'
|
|
4225
|
+
}
|
|
4226
|
+
],
|
|
4227
|
+
parent: {
|
|
4228
|
+
type: 'L2',
|
|
4229
|
+
chain: 'eip155-5',
|
|
4230
|
+
bridges: [{ url: 'https://bridge.obscu.ro' }]
|
|
4231
|
+
}
|
|
4232
|
+
},
|
|
4138
4233
|
444: {
|
|
4139
4234
|
name: 'Frenchain Testnet',
|
|
4140
4235
|
chain: 'tfren',
|
|
@@ -4484,13 +4579,23 @@ exports.chains = {
|
|
|
4484
4579
|
url: 'https://astar.subscan.io',
|
|
4485
4580
|
standard: 'none',
|
|
4486
4581
|
icon: 'subscan'
|
|
4582
|
+
},
|
|
4583
|
+
{
|
|
4584
|
+
name: 'blockscout',
|
|
4585
|
+
url: 'https://blockscout.com/astar',
|
|
4586
|
+
icon: 'blockscout',
|
|
4587
|
+
standard: 'EIP3091'
|
|
4487
4588
|
}
|
|
4488
4589
|
]
|
|
4489
4590
|
},
|
|
4490
4591
|
595: {
|
|
4491
|
-
name: 'Acala Mandala Testnet',
|
|
4592
|
+
name: 'Acala Mandala Testnet TC9',
|
|
4492
4593
|
chain: 'mACA',
|
|
4493
|
-
rpc: [
|
|
4594
|
+
rpc: [
|
|
4595
|
+
'https://eth-rpc-tc9.aca-staging.network',
|
|
4596
|
+
'wss://eth-rpc-tc9.aca-staging.network'
|
|
4597
|
+
],
|
|
4598
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
4494
4599
|
faucets: [],
|
|
4495
4600
|
nativeCurrency: {
|
|
4496
4601
|
name: 'Acala Mandala Token',
|
|
@@ -4500,31 +4605,59 @@ exports.chains = {
|
|
|
4500
4605
|
infoURL: 'https://acala.network',
|
|
4501
4606
|
shortName: 'maca',
|
|
4502
4607
|
chainId: 595,
|
|
4503
|
-
networkId: 595
|
|
4608
|
+
networkId: 595,
|
|
4609
|
+
slip44: 595,
|
|
4610
|
+
explorers: [
|
|
4611
|
+
{
|
|
4612
|
+
name: 'blockscout',
|
|
4613
|
+
url: 'https://blockscout.mandala.aca-staging.network',
|
|
4614
|
+
standard: 'EIP3091'
|
|
4615
|
+
}
|
|
4616
|
+
]
|
|
4504
4617
|
},
|
|
4505
4618
|
596: {
|
|
4506
4619
|
name: 'Karura Network Testnet',
|
|
4507
4620
|
chain: 'KAR',
|
|
4508
|
-
rpc: [
|
|
4621
|
+
rpc: [
|
|
4622
|
+
'https://eth-rpc-karura-testnet.aca-staging.network',
|
|
4623
|
+
'wss://eth-rpc-karura-testnet.aca-staging.network'
|
|
4624
|
+
],
|
|
4509
4625
|
faucets: [],
|
|
4510
4626
|
nativeCurrency: { name: 'Karura Token', symbol: 'KAR', decimals: 18 },
|
|
4511
4627
|
infoURL: 'https://karura.network',
|
|
4512
4628
|
shortName: 'tkar',
|
|
4513
4629
|
chainId: 596,
|
|
4514
4630
|
networkId: 596,
|
|
4515
|
-
slip44: 596
|
|
4631
|
+
slip44: 596,
|
|
4632
|
+
explorers: [
|
|
4633
|
+
{
|
|
4634
|
+
name: 'blockscout',
|
|
4635
|
+
url: 'https://blockscout.karura-testnet.aca-staging.network',
|
|
4636
|
+
standard: 'EIP3091'
|
|
4637
|
+
}
|
|
4638
|
+
]
|
|
4516
4639
|
},
|
|
4517
4640
|
597: {
|
|
4518
4641
|
name: 'Acala Network Testnet',
|
|
4519
4642
|
chain: 'ACA',
|
|
4520
|
-
rpc: [
|
|
4643
|
+
rpc: [
|
|
4644
|
+
'https://eth-rpc-acala-testnet.aca-staging.network',
|
|
4645
|
+
'wss://eth-rpc-acala-testnet.aca-staging.network'
|
|
4646
|
+
],
|
|
4521
4647
|
faucets: [],
|
|
4522
4648
|
nativeCurrency: { name: 'Acala Token', symbol: 'ACA', decimals: 18 },
|
|
4523
4649
|
infoURL: 'https://acala.network',
|
|
4524
4650
|
shortName: 'taca',
|
|
4525
4651
|
chainId: 597,
|
|
4526
4652
|
networkId: 597,
|
|
4527
|
-
slip44: 597
|
|
4653
|
+
slip44: 597,
|
|
4654
|
+
explorers: [
|
|
4655
|
+
{
|
|
4656
|
+
name: 'blockscout',
|
|
4657
|
+
url: 'https://blockscout.acala-dev.aca-dev.network',
|
|
4658
|
+
standard: 'EIP3091'
|
|
4659
|
+
}
|
|
4660
|
+
]
|
|
4528
4661
|
},
|
|
4529
4662
|
599: {
|
|
4530
4663
|
name: 'Metis Goerli Testnet',
|
|
@@ -4564,6 +4697,26 @@ exports.chains = {
|
|
|
4564
4697
|
chainId: 600,
|
|
4565
4698
|
networkId: 600
|
|
4566
4699
|
},
|
|
4700
|
+
601: {
|
|
4701
|
+
name: 'PEER Testnet',
|
|
4702
|
+
chain: 'PEER',
|
|
4703
|
+
rpc: ['http://testnet-polka-host-232813573.us-west-1.elb.amazonaws.com'],
|
|
4704
|
+
faucets: ['https://testnet.peer.inc'],
|
|
4705
|
+
nativeCurrency: { name: 'PEER Token', symbol: 'PEER', decimals: 18 },
|
|
4706
|
+
infoURL: 'https://peer.inc',
|
|
4707
|
+
shortName: 'PEER',
|
|
4708
|
+
chainId: 601,
|
|
4709
|
+
networkId: 601,
|
|
4710
|
+
icon: 'peer',
|
|
4711
|
+
explorers: [
|
|
4712
|
+
{
|
|
4713
|
+
name: 'PEER Explorer',
|
|
4714
|
+
url: 'https://testnet.peer.inc',
|
|
4715
|
+
standard: 'none',
|
|
4716
|
+
icon: 'peer'
|
|
4717
|
+
}
|
|
4718
|
+
]
|
|
4719
|
+
},
|
|
4567
4720
|
614: {
|
|
4568
4721
|
name: 'Graphlinq Blockchain Mainnet',
|
|
4569
4722
|
chain: 'GLQ Blockchain',
|
|
@@ -4664,14 +4817,25 @@ exports.chains = {
|
|
|
4664
4817
|
686: {
|
|
4665
4818
|
name: 'Karura Network',
|
|
4666
4819
|
chain: 'KAR',
|
|
4667
|
-
rpc: [
|
|
4820
|
+
rpc: [
|
|
4821
|
+
'https://eth-rpc-karura.aca-api.network',
|
|
4822
|
+
'wss://eth-rpc-karura.aca-api.network'
|
|
4823
|
+
],
|
|
4824
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
4668
4825
|
faucets: [],
|
|
4669
4826
|
nativeCurrency: { name: 'Karura Token', symbol: 'KAR', decimals: 18 },
|
|
4670
|
-
infoURL: 'https://
|
|
4827
|
+
infoURL: 'https://acala.network/karura',
|
|
4671
4828
|
shortName: 'kar',
|
|
4672
4829
|
chainId: 686,
|
|
4673
4830
|
networkId: 686,
|
|
4674
|
-
slip44: 686
|
|
4831
|
+
slip44: 686,
|
|
4832
|
+
explorers: [
|
|
4833
|
+
{
|
|
4834
|
+
name: 'blockscout',
|
|
4835
|
+
url: 'https://blockscout.karura.network',
|
|
4836
|
+
standard: 'EIP3091'
|
|
4837
|
+
}
|
|
4838
|
+
]
|
|
4675
4839
|
},
|
|
4676
4840
|
700: {
|
|
4677
4841
|
name: 'Star Social Testnet',
|
|
@@ -4897,14 +5061,25 @@ exports.chains = {
|
|
|
4897
5061
|
787: {
|
|
4898
5062
|
name: 'Acala Network',
|
|
4899
5063
|
chain: 'ACA',
|
|
4900
|
-
rpc: [
|
|
5064
|
+
rpc: [
|
|
5065
|
+
'https://eth-rpc-acala.aca-api.network',
|
|
5066
|
+
'wss://eth-rpc-acala.aca-api.network'
|
|
5067
|
+
],
|
|
5068
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
4901
5069
|
faucets: [],
|
|
4902
5070
|
nativeCurrency: { name: 'Acala Token', symbol: 'ACA', decimals: 18 },
|
|
4903
5071
|
infoURL: 'https://acala.network',
|
|
4904
5072
|
shortName: 'aca',
|
|
4905
5073
|
chainId: 787,
|
|
4906
5074
|
networkId: 787,
|
|
4907
|
-
slip44: 787
|
|
5075
|
+
slip44: 787,
|
|
5076
|
+
explorers: [
|
|
5077
|
+
{
|
|
5078
|
+
name: 'blockscout',
|
|
5079
|
+
url: 'https://blockscout.acala.network',
|
|
5080
|
+
standard: 'EIP3091'
|
|
5081
|
+
}
|
|
5082
|
+
]
|
|
4908
5083
|
},
|
|
4909
5084
|
788: {
|
|
4910
5085
|
name: 'Aerochain Testnet',
|
|
@@ -5433,7 +5608,8 @@ exports.chains = {
|
|
|
5433
5608
|
infoURL: 'https://pulsechain.com',
|
|
5434
5609
|
rpc: [
|
|
5435
5610
|
'https://rpc.v4.testnet.pulsechain.com/',
|
|
5436
|
-
'wss://rpc.v4.testnet.pulsechain.com/'
|
|
5611
|
+
'wss://rpc.v4.testnet.pulsechain.com/',
|
|
5612
|
+
'https://pulsechain-testnet.publicnode.com'
|
|
5437
5613
|
],
|
|
5438
5614
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
5439
5615
|
faucets: ['https://faucet.v4.testnet.pulsechain.com/'],
|
|
@@ -5940,6 +6116,26 @@ exports.chains = {
|
|
|
5940
6116
|
}
|
|
5941
6117
|
]
|
|
5942
6118
|
},
|
|
6119
|
+
1080: {
|
|
6120
|
+
name: 'Mintara Mainnet',
|
|
6121
|
+
title: 'Mintara Mainnet',
|
|
6122
|
+
chain: 'Mintara',
|
|
6123
|
+
icon: 'mintara',
|
|
6124
|
+
rpc: ['https://subnets.avax.network/mintara/mainnet/rpc'],
|
|
6125
|
+
faucets: [],
|
|
6126
|
+
nativeCurrency: { name: 'MINTARA', symbol: 'MNTR', decimals: 18 },
|
|
6127
|
+
infoURL: 'https://playthink.co.jp',
|
|
6128
|
+
shortName: 'mintara',
|
|
6129
|
+
chainId: 1080,
|
|
6130
|
+
networkId: 1080,
|
|
6131
|
+
explorers: [
|
|
6132
|
+
{
|
|
6133
|
+
name: 'explorer',
|
|
6134
|
+
url: 'https://subnets.avax.network/mintara',
|
|
6135
|
+
standard: 'EIP3091'
|
|
6136
|
+
}
|
|
6137
|
+
]
|
|
6138
|
+
},
|
|
5943
6139
|
1088: {
|
|
5944
6140
|
name: 'Metis Andromeda Mainnet',
|
|
5945
6141
|
chain: 'ETH',
|
|
@@ -6826,6 +7022,26 @@ exports.chains = {
|
|
|
6826
7022
|
}
|
|
6827
7023
|
]
|
|
6828
7024
|
},
|
|
7025
|
+
1379: {
|
|
7026
|
+
name: 'Kalar Chain',
|
|
7027
|
+
chain: 'KLC',
|
|
7028
|
+
icon: 'kalarchain',
|
|
7029
|
+
rpc: ['https://rpc-api.kalarchain.tech'],
|
|
7030
|
+
faucets: [],
|
|
7031
|
+
nativeCurrency: { name: 'Kalar', symbol: 'KLC', decimals: 18 },
|
|
7032
|
+
infoURL: 'https://kalarchain.tech',
|
|
7033
|
+
shortName: 'KLC',
|
|
7034
|
+
chainId: 1379,
|
|
7035
|
+
networkId: 1379,
|
|
7036
|
+
explorers: [
|
|
7037
|
+
{
|
|
7038
|
+
name: 'kalarscan',
|
|
7039
|
+
url: 'https://explorer.kalarchain.tech',
|
|
7040
|
+
icon: 'kalarscan',
|
|
7041
|
+
standard: 'EIP3091'
|
|
7042
|
+
}
|
|
7043
|
+
]
|
|
7044
|
+
},
|
|
6829
7045
|
1388: {
|
|
6830
7046
|
name: 'AmStar Mainnet',
|
|
6831
7047
|
chain: 'AmStar',
|
|
@@ -7073,7 +7289,7 @@ exports.chains = {
|
|
|
7073
7289
|
title: 'Tenet Mainnet',
|
|
7074
7290
|
chain: 'TENET',
|
|
7075
7291
|
icon: 'tenet',
|
|
7076
|
-
rpc: ['https://rpc.tenet.org'],
|
|
7292
|
+
rpc: ['https://rpc.tenet.org', 'https://tenet-evm.publicnode.com'],
|
|
7077
7293
|
faucets: [],
|
|
7078
7294
|
nativeCurrency: { name: 'TENET', symbol: 'TENET', decimals: 18 },
|
|
7079
7295
|
infoURL: 'https://tenet.org/',
|
|
@@ -7424,6 +7640,25 @@ exports.chains = {
|
|
|
7424
7640
|
chainId: 1856,
|
|
7425
7641
|
networkId: 1
|
|
7426
7642
|
},
|
|
7643
|
+
1875: {
|
|
7644
|
+
name: 'WhiteBIT Network',
|
|
7645
|
+
chain: 'WBT',
|
|
7646
|
+
rpc: ['https://rpc.whitebit.network'],
|
|
7647
|
+
faucets: [],
|
|
7648
|
+
nativeCurrency: { name: 'WhiteBIT Coin', symbol: 'WBT', decimals: 18 },
|
|
7649
|
+
infoURL: 'https://whitebit.network',
|
|
7650
|
+
shortName: 'wbt',
|
|
7651
|
+
chainId: 1875,
|
|
7652
|
+
networkId: 1875,
|
|
7653
|
+
icon: 'whitebit',
|
|
7654
|
+
explorers: [
|
|
7655
|
+
{
|
|
7656
|
+
name: 'wb-explorer',
|
|
7657
|
+
url: 'https://explorer.whitebit.network',
|
|
7658
|
+
standard: 'EIP3091'
|
|
7659
|
+
}
|
|
7660
|
+
]
|
|
7661
|
+
},
|
|
7427
7662
|
1881: {
|
|
7428
7663
|
name: 'Gitshock Cartenz Testnet',
|
|
7429
7664
|
chain: 'Gitshock Cartenz',
|
|
@@ -8467,7 +8702,8 @@ exports.chains = {
|
|
|
8467
8702
|
'https://evm.kava.io',
|
|
8468
8703
|
'https://evm2.kava.io',
|
|
8469
8704
|
'wss://wevm.kava.io',
|
|
8470
|
-
'wss://wevm2.kava.io'
|
|
8705
|
+
'wss://wevm2.kava.io',
|
|
8706
|
+
'https://kava-evm.publicnode.com'
|
|
8471
8707
|
],
|
|
8472
8708
|
faucets: [],
|
|
8473
8709
|
nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 },
|
|
@@ -9956,7 +10192,7 @@ exports.chains = {
|
|
|
9956
10192
|
name: 'Mantle',
|
|
9957
10193
|
chain: 'ETH',
|
|
9958
10194
|
icon: 'mantle',
|
|
9959
|
-
rpc: ['https://rpc.mantle.xyz'],
|
|
10195
|
+
rpc: ['https://rpc.mantle.xyz', 'https://mantle.publicnode.com'],
|
|
9960
10196
|
faucets: [],
|
|
9961
10197
|
nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
|
|
9962
10198
|
infoURL: 'https://mantle.xyz',
|
|
@@ -10210,10 +10446,25 @@ exports.chains = {
|
|
|
10210
10446
|
}
|
|
10211
10447
|
]
|
|
10212
10448
|
},
|
|
10449
|
+
5616: {
|
|
10450
|
+
name: 'Arcturus Chain Testnet',
|
|
10451
|
+
chain: 'ARCTURUS',
|
|
10452
|
+
rpc: ['http://185.99.196.3:8545'],
|
|
10453
|
+
faucets: [],
|
|
10454
|
+
nativeCurrency: { name: 'Test Arct', symbol: 'tARCT', decimals: 18 },
|
|
10455
|
+
infoURL: 'https://arcturuschain.io',
|
|
10456
|
+
shortName: 'ARCT',
|
|
10457
|
+
chainId: 5616,
|
|
10458
|
+
networkId: 5616
|
|
10459
|
+
},
|
|
10213
10460
|
5700: {
|
|
10214
10461
|
name: 'Syscoin Tanenbaum Testnet',
|
|
10215
10462
|
chain: 'SYS',
|
|
10216
|
-
rpc: [
|
|
10463
|
+
rpc: [
|
|
10464
|
+
'https://rpc.tanenbaum.io',
|
|
10465
|
+
'wss://rpc.tanenbaum.io/wss',
|
|
10466
|
+
'https://syscoin-tanenbaum-evm.publicnode.com'
|
|
10467
|
+
],
|
|
10217
10468
|
faucets: ['https://faucet.tanenbaum.io'],
|
|
10218
10469
|
nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
|
|
10219
10470
|
infoURL: 'https://syscoin.org',
|
|
@@ -10516,7 +10767,10 @@ exports.chains = {
|
|
|
10516
10767
|
6688: {
|
|
10517
10768
|
name: 'IRIShub',
|
|
10518
10769
|
chain: 'IRIShub',
|
|
10519
|
-
rpc: [
|
|
10770
|
+
rpc: [
|
|
10771
|
+
'https://evmrpc.irishub-1.irisnet.org',
|
|
10772
|
+
'https://iris-evm.publicnode.com'
|
|
10773
|
+
],
|
|
10520
10774
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
10521
10775
|
faucets: [],
|
|
10522
10776
|
nativeCurrency: { name: 'Eris', symbol: 'ERIS', decimals: 18 },
|
|
@@ -10612,10 +10866,10 @@ exports.chains = {
|
|
|
10612
10866
|
]
|
|
10613
10867
|
},
|
|
10614
10868
|
7001: {
|
|
10615
|
-
name: 'ZetaChain Athens Testnet',
|
|
10869
|
+
name: 'ZetaChain Athens 3 Testnet',
|
|
10616
10870
|
chain: 'ZetaChain',
|
|
10617
10871
|
icon: 'zetachain',
|
|
10618
|
-
rpc: ['https://
|
|
10872
|
+
rpc: ['https://rpc.ankr.com/zetachain_evm_athens_testnet'],
|
|
10619
10873
|
faucets: ['https://labs.zetachain.com/get-zeta'],
|
|
10620
10874
|
nativeCurrency: { name: 'Zeta', symbol: 'aZETA', decimals: 18 },
|
|
10621
10875
|
infoURL: 'https://zetachain.com/docs',
|
|
@@ -10626,8 +10880,14 @@ exports.chains = {
|
|
|
10626
10880
|
explorers: [
|
|
10627
10881
|
{
|
|
10628
10882
|
name: 'ZetaChain Athens Testnet Explorer',
|
|
10629
|
-
url: 'https://explorer.
|
|
10883
|
+
url: 'https://athens3.explorer.zetachain.com',
|
|
10630
10884
|
standard: 'none'
|
|
10885
|
+
},
|
|
10886
|
+
{
|
|
10887
|
+
name: 'blockscout',
|
|
10888
|
+
url: 'https://zetachain-athens-3.blockscout.com',
|
|
10889
|
+
icon: 'blockscout',
|
|
10890
|
+
standard: 'EIP3091'
|
|
10631
10891
|
}
|
|
10632
10892
|
]
|
|
10633
10893
|
},
|
|
@@ -11353,7 +11613,7 @@ exports.chains = {
|
|
|
11353
11613
|
8453: {
|
|
11354
11614
|
name: 'Base',
|
|
11355
11615
|
chain: 'ETH',
|
|
11356
|
-
rpc: ['https://
|
|
11616
|
+
rpc: ['https://mainnet.base.org/'],
|
|
11357
11617
|
faucets: [],
|
|
11358
11618
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
11359
11619
|
infoURL: 'https://base.org',
|
|
@@ -11366,7 +11626,8 @@ exports.chains = {
|
|
|
11366
11626
|
{
|
|
11367
11627
|
name: 'basescout',
|
|
11368
11628
|
url: 'https://base.blockscout.com',
|
|
11369
|
-
|
|
11629
|
+
icon: 'blockscout',
|
|
11630
|
+
standard: 'EIP3091'
|
|
11370
11631
|
}
|
|
11371
11632
|
],
|
|
11372
11633
|
status: 'active'
|
|
@@ -11982,6 +12243,92 @@ exports.chains = {
|
|
|
11982
12243
|
networkId: 9792,
|
|
11983
12244
|
explorers: []
|
|
11984
12245
|
},
|
|
12246
|
+
9818: {
|
|
12247
|
+
name: 'IMPERIUM TESTNET',
|
|
12248
|
+
chain: 'tIMP',
|
|
12249
|
+
rpc: [
|
|
12250
|
+
'https://data-aws-testnet.imperiumchain.com, https://data-aws2-testnet.imperiumchain.com'
|
|
12251
|
+
],
|
|
12252
|
+
faucets: ['https://faucet.imperiumchain.com/'],
|
|
12253
|
+
nativeCurrency: { name: 'tIMP', symbol: 'tIMP', decimals: 18 },
|
|
12254
|
+
infoURL: 'https://imperiumchain.com',
|
|
12255
|
+
shortName: 'tIMP',
|
|
12256
|
+
chainId: 9818,
|
|
12257
|
+
networkId: 9818,
|
|
12258
|
+
icon: 'timp',
|
|
12259
|
+
explorers: [
|
|
12260
|
+
{
|
|
12261
|
+
name: 'IMPERIUM TESTNET Explorer',
|
|
12262
|
+
icon: 'timp',
|
|
12263
|
+
url: 'https://network.impscan.com',
|
|
12264
|
+
standard: 'none'
|
|
12265
|
+
}
|
|
12266
|
+
]
|
|
12267
|
+
},
|
|
12268
|
+
9819: {
|
|
12269
|
+
name: 'IMPERIUM MAINNET',
|
|
12270
|
+
chain: 'IMP',
|
|
12271
|
+
rpc: [
|
|
12272
|
+
'https://data-aws-mainnet.imperiumchain.com, https://data-aws2-mainnet.imperiumchain.com'
|
|
12273
|
+
],
|
|
12274
|
+
faucets: ['https://faucet.imperiumchain.com/'],
|
|
12275
|
+
nativeCurrency: { name: 'IMP', symbol: 'IMP', decimals: 18 },
|
|
12276
|
+
infoURL: 'https://imperiumchain.com',
|
|
12277
|
+
shortName: 'IMP',
|
|
12278
|
+
chainId: 9819,
|
|
12279
|
+
networkId: 9819,
|
|
12280
|
+
icon: 'imp',
|
|
12281
|
+
explorers: [
|
|
12282
|
+
{
|
|
12283
|
+
name: 'IMPERIUM Explorer',
|
|
12284
|
+
icon: 'imp',
|
|
12285
|
+
url: 'https://impscan.com',
|
|
12286
|
+
standard: 'none'
|
|
12287
|
+
}
|
|
12288
|
+
]
|
|
12289
|
+
},
|
|
12290
|
+
9977: {
|
|
12291
|
+
name: 'Mind Smart Chain Testnet',
|
|
12292
|
+
chain: 'tMIND',
|
|
12293
|
+
icon: 'mindchain',
|
|
12294
|
+
rpc: ['https://testnet-msc.mindchain.info/'],
|
|
12295
|
+
faucets: ['https://faucet.mindchain.info/'],
|
|
12296
|
+
nativeCurrency: { name: 'MIND Coin', symbol: 'tMIND', decimals: 18 },
|
|
12297
|
+
infoURL: 'https://mindscan.info',
|
|
12298
|
+
shortName: 'tMIND',
|
|
12299
|
+
chainId: 9977,
|
|
12300
|
+
networkId: 9977,
|
|
12301
|
+
explorers: [
|
|
12302
|
+
{
|
|
12303
|
+
name: 'Mind Chain explorer',
|
|
12304
|
+
url: 'https://testnet.mindscan.info',
|
|
12305
|
+
standard: 'EIP3091'
|
|
12306
|
+
}
|
|
12307
|
+
]
|
|
12308
|
+
},
|
|
12309
|
+
9996: {
|
|
12310
|
+
name: 'Mind Smart Chain Mainnet',
|
|
12311
|
+
chain: 'MIND',
|
|
12312
|
+
icon: 'mindchain',
|
|
12313
|
+
rpc: [
|
|
12314
|
+
'https://rpc-msc.mindchain.info/',
|
|
12315
|
+
'https://seednode.mindchain.info',
|
|
12316
|
+
'wss://seednode.mindchain.info/ws'
|
|
12317
|
+
],
|
|
12318
|
+
faucets: [],
|
|
12319
|
+
nativeCurrency: { name: 'MIND Coin', symbol: 'MIND', decimals: 18 },
|
|
12320
|
+
infoURL: 'https://mindscan.info',
|
|
12321
|
+
shortName: 'MIND',
|
|
12322
|
+
chainId: 9996,
|
|
12323
|
+
networkId: 9996,
|
|
12324
|
+
explorers: [
|
|
12325
|
+
{
|
|
12326
|
+
name: 'Mind Chain explorer',
|
|
12327
|
+
url: 'https://mainnet.mindscan.info',
|
|
12328
|
+
standard: 'EIP3091'
|
|
12329
|
+
}
|
|
12330
|
+
]
|
|
12331
|
+
},
|
|
11985
12332
|
9997: {
|
|
11986
12333
|
name: 'AltLayer Testnet',
|
|
11987
12334
|
chain: 'ETH',
|
|
@@ -12116,10 +12463,16 @@ exports.chains = {
|
|
|
12116
12463
|
networkId: 10200,
|
|
12117
12464
|
explorers: [
|
|
12118
12465
|
{
|
|
12119
|
-
name: 'blockscout',
|
|
12466
|
+
name: 'blockscout-chiadochain',
|
|
12120
12467
|
url: 'https://blockscout.chiadochain.net',
|
|
12121
12468
|
icon: 'blockscout',
|
|
12122
12469
|
standard: 'EIP3091'
|
|
12470
|
+
},
|
|
12471
|
+
{
|
|
12472
|
+
name: 'blockscout',
|
|
12473
|
+
url: 'https://gnosis-chiado.blockscout.com',
|
|
12474
|
+
icon: 'blockscout',
|
|
12475
|
+
standard: 'EIP3091'
|
|
12123
12476
|
}
|
|
12124
12477
|
]
|
|
12125
12478
|
},
|
|
@@ -12348,7 +12701,7 @@ exports.chains = {
|
|
|
12348
12701
|
11235: {
|
|
12349
12702
|
name: 'Haqq Network',
|
|
12350
12703
|
chain: 'Haqq',
|
|
12351
|
-
rpc: ['https://rpc.eth.haqq.network'],
|
|
12704
|
+
rpc: ['https://rpc.eth.haqq.network', 'https://haqq-evm.publicnode.com'],
|
|
12352
12705
|
faucets: [],
|
|
12353
12706
|
nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
|
|
12354
12707
|
infoURL: 'https://islamiccoin.net',
|
|
@@ -12619,21 +12972,21 @@ exports.chains = {
|
|
|
12619
12972
|
]
|
|
12620
12973
|
},
|
|
12621
12974
|
13308: {
|
|
12622
|
-
name: 'Credit
|
|
12975
|
+
name: 'Credit Smart Chain',
|
|
12623
12976
|
chain: 'CREDIT',
|
|
12624
|
-
rpc: ['https://
|
|
12977
|
+
rpc: ['https://rpc.creditsmartchain.com'],
|
|
12625
12978
|
faucets: [],
|
|
12626
12979
|
nativeCurrency: { name: 'Credit', symbol: 'CREDIT', decimals: 18 },
|
|
12627
12980
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
12628
12981
|
infoURL: 'https://creditsmartchain.com',
|
|
12629
12982
|
shortName: 'Credit',
|
|
12630
12983
|
chainId: 13308,
|
|
12631
|
-
networkId:
|
|
12984
|
+
networkId: 13308,
|
|
12632
12985
|
icon: 'credit',
|
|
12633
12986
|
explorers: [
|
|
12634
12987
|
{
|
|
12635
|
-
name: '
|
|
12636
|
-
url: 'https://
|
|
12988
|
+
name: 'Creditscan',
|
|
12989
|
+
url: 'https://scan.creditsmartchain.com',
|
|
12637
12990
|
icon: 'credit',
|
|
12638
12991
|
standard: 'EIP3091'
|
|
12639
12992
|
}
|
|
@@ -12926,6 +13279,26 @@ exports.chains = {
|
|
|
12926
13279
|
}
|
|
12927
13280
|
]
|
|
12928
13281
|
},
|
|
13282
|
+
18122: {
|
|
13283
|
+
name: 'Smart Trade Networks',
|
|
13284
|
+
chain: 'Smart Trade Networks',
|
|
13285
|
+
rpc: ['https://beefledgerwallet.com:8544'],
|
|
13286
|
+
faucets: [],
|
|
13287
|
+
nativeCurrency: { name: 'STN', symbol: 'STN', decimals: 18 },
|
|
13288
|
+
infoURL: 'https://www.smarttradenetworks.com',
|
|
13289
|
+
shortName: 'STN',
|
|
13290
|
+
chainId: 18122,
|
|
13291
|
+
networkId: 18122,
|
|
13292
|
+
icon: 'stn',
|
|
13293
|
+
explorers: [
|
|
13294
|
+
{
|
|
13295
|
+
name: 'stnscan',
|
|
13296
|
+
url: 'https://stnscan.com',
|
|
13297
|
+
icon: 'stn',
|
|
13298
|
+
standard: 'none'
|
|
13299
|
+
}
|
|
13300
|
+
]
|
|
13301
|
+
},
|
|
12929
13302
|
18159: {
|
|
12930
13303
|
name: 'Proof Of Memes',
|
|
12931
13304
|
title: 'Proof Of Memes Mainnet',
|
|
@@ -13732,7 +14105,8 @@ exports.chains = {
|
|
|
13732
14105
|
rpc: [
|
|
13733
14106
|
'https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}',
|
|
13734
14107
|
'https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}',
|
|
13735
|
-
'https://arb1.arbitrum.io/rpc'
|
|
14108
|
+
'https://arb1.arbitrum.io/rpc',
|
|
14109
|
+
'https://arbitrum-one.publicnode.com'
|
|
13736
14110
|
],
|
|
13737
14111
|
faucets: [],
|
|
13738
14112
|
explorers: [
|
|
@@ -13761,7 +14135,10 @@ exports.chains = {
|
|
|
13761
14135
|
chain: 'ETH',
|
|
13762
14136
|
networkId: 42170,
|
|
13763
14137
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
13764
|
-
rpc: [
|
|
14138
|
+
rpc: [
|
|
14139
|
+
'https://nova.arbitrum.io/rpc',
|
|
14140
|
+
'https://arbitrum-nova.publicnode.com'
|
|
14141
|
+
],
|
|
13765
14142
|
faucets: [],
|
|
13766
14143
|
explorers: [
|
|
13767
14144
|
{
|
|
@@ -13842,6 +14219,26 @@ exports.chains = {
|
|
|
13842
14219
|
}
|
|
13843
14220
|
]
|
|
13844
14221
|
},
|
|
14222
|
+
42888: {
|
|
14223
|
+
name: 'Kinto Testnet',
|
|
14224
|
+
title: 'Kinto Testnet',
|
|
14225
|
+
chain: 'ETH',
|
|
14226
|
+
rpc: ['http://35.215.120.180:8545'],
|
|
14227
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
14228
|
+
faucets: [],
|
|
14229
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
14230
|
+
infoURL: 'https://ethereum.org',
|
|
14231
|
+
shortName: 'keth',
|
|
14232
|
+
chainId: 42888,
|
|
14233
|
+
networkId: 42888,
|
|
14234
|
+
explorers: [
|
|
14235
|
+
{
|
|
14236
|
+
name: 'kintoscan',
|
|
14237
|
+
url: 'http://35.215.120.180:4000',
|
|
14238
|
+
standard: 'EIP3091'
|
|
14239
|
+
}
|
|
14240
|
+
]
|
|
14241
|
+
},
|
|
13845
14242
|
43110: {
|
|
13846
14243
|
name: 'Athereum',
|
|
13847
14244
|
chain: 'ATH',
|
|
@@ -15181,7 +15578,8 @@ exports.chains = {
|
|
|
15181
15578
|
{
|
|
15182
15579
|
name: 'basescout',
|
|
15183
15580
|
url: 'https://base-goerli.blockscout.com',
|
|
15184
|
-
|
|
15581
|
+
icon: 'blockscout',
|
|
15582
|
+
standard: 'EIP3091'
|
|
15185
15583
|
}
|
|
15186
15584
|
]
|
|
15187
15585
|
},
|
|
@@ -16212,7 +16610,7 @@ exports.chains = {
|
|
|
16212
16610
|
202020: {
|
|
16213
16611
|
name: 'Decimal Smart Chain Testnet',
|
|
16214
16612
|
chain: 'tDSC',
|
|
16215
|
-
rpc: ['https://testnet-val.decimalchain.com/web3'],
|
|
16613
|
+
rpc: ['https://testnet-val.decimalchain.com/web3/'],
|
|
16216
16614
|
faucets: [],
|
|
16217
16615
|
nativeCurrency: { name: 'Decimal', symbol: 'tDEL', decimals: 18 },
|
|
16218
16616
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -16293,6 +16691,48 @@ exports.chains = {
|
|
|
16293
16691
|
}
|
|
16294
16692
|
]
|
|
16295
16693
|
},
|
|
16694
|
+
221230: {
|
|
16695
|
+
name: 'Reapchain Mainnet',
|
|
16696
|
+
chain: 'REAP',
|
|
16697
|
+
rpc: ['https://rpc.reapchain.org'],
|
|
16698
|
+
faucets: [],
|
|
16699
|
+
nativeCurrency: { name: 'Reap', symbol: 'REAP', decimals: 18 },
|
|
16700
|
+
features: [],
|
|
16701
|
+
infoURL: 'https://reapchain.com',
|
|
16702
|
+
shortName: 'reap',
|
|
16703
|
+
chainId: 221230,
|
|
16704
|
+
networkId: 221230,
|
|
16705
|
+
icon: 'reapchain',
|
|
16706
|
+
explorers: [
|
|
16707
|
+
{
|
|
16708
|
+
name: 'Reapchain Dashboard',
|
|
16709
|
+
url: 'https://dashboard.reapchain.org',
|
|
16710
|
+
icon: 'reapchain',
|
|
16711
|
+
standard: 'none'
|
|
16712
|
+
}
|
|
16713
|
+
]
|
|
16714
|
+
},
|
|
16715
|
+
221231: {
|
|
16716
|
+
name: 'Reapchain Testnet',
|
|
16717
|
+
chain: 'REAP',
|
|
16718
|
+
rpc: ['https://test-rpc.reapchain.org'],
|
|
16719
|
+
faucets: ['http://faucet.reapchain.com'],
|
|
16720
|
+
nativeCurrency: { name: 'test-Reap', symbol: 'tREAP', decimals: 18 },
|
|
16721
|
+
features: [],
|
|
16722
|
+
infoURL: 'https://reapchain.com',
|
|
16723
|
+
shortName: 'reap-testnet',
|
|
16724
|
+
chainId: 221231,
|
|
16725
|
+
networkId: 221231,
|
|
16726
|
+
icon: 'reapchain',
|
|
16727
|
+
explorers: [
|
|
16728
|
+
{
|
|
16729
|
+
name: 'Reapchain Testnet Dashboard',
|
|
16730
|
+
url: 'https://test-dashboard.reapchain.org',
|
|
16731
|
+
icon: 'reapchain',
|
|
16732
|
+
standard: 'none'
|
|
16733
|
+
}
|
|
16734
|
+
]
|
|
16735
|
+
},
|
|
16296
16736
|
224168: {
|
|
16297
16737
|
name: 'Taf ECO Chain Mainnet',
|
|
16298
16738
|
chain: 'Taf ECO Chain',
|
|
@@ -16762,7 +17202,10 @@ exports.chains = {
|
|
|
16762
17202
|
symbol: 'AGOR',
|
|
16763
17203
|
decimals: 18
|
|
16764
17204
|
},
|
|
16765
|
-
rpc: [
|
|
17205
|
+
rpc: [
|
|
17206
|
+
'https://goerli-rollup.arbitrum.io/rpc',
|
|
17207
|
+
'https://arbitrum-goerli.publicnode.com'
|
|
17208
|
+
],
|
|
16766
17209
|
faucets: [],
|
|
16767
17210
|
infoURL: 'https://arbitrum.io/',
|
|
16768
17211
|
explorers: [
|
|
@@ -17522,6 +17965,26 @@ exports.chains = {
|
|
|
17522
17965
|
slip44: 1,
|
|
17523
17966
|
explorers: []
|
|
17524
17967
|
},
|
|
17968
|
+
3441005: {
|
|
17969
|
+
name: 'Manta Pacific Testnet',
|
|
17970
|
+
chain: 'Manta Pacific',
|
|
17971
|
+
rpc: ['https://manta-testnet.calderachain.xyz/http'],
|
|
17972
|
+
faucets: [],
|
|
17973
|
+
nativeCurrency: { name: 'Manta', symbol: 'MANTA', decimals: 18 },
|
|
17974
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
17975
|
+
infoURL: 'https://manta-testnet.caldera.dev/',
|
|
17976
|
+
shortName: 'manta',
|
|
17977
|
+
chainId: 3441005,
|
|
17978
|
+
networkId: 3441005,
|
|
17979
|
+
icon: 'manta',
|
|
17980
|
+
explorers: [
|
|
17981
|
+
{
|
|
17982
|
+
name: 'manta-testnet Explorer',
|
|
17983
|
+
url: 'https://manta-testnet.calderaexplorer.xyz',
|
|
17984
|
+
standard: 'EIP3091'
|
|
17985
|
+
}
|
|
17986
|
+
]
|
|
17987
|
+
},
|
|
17525
17988
|
4000003: {
|
|
17526
17989
|
name: 'AltLayer Zero Gas Network',
|
|
17527
17990
|
chain: 'ETH',
|
|
@@ -17840,7 +18303,10 @@ exports.chains = {
|
|
|
17840
18303
|
rpc: [
|
|
17841
18304
|
'https://rpc.sepolia.org',
|
|
17842
18305
|
'https://rpc2.sepolia.org',
|
|
17843
|
-
'https://rpc-sepolia.rockx.com'
|
|
18306
|
+
'https://rpc-sepolia.rockx.com',
|
|
18307
|
+
'https://rpc.sepolia.ethpandaops.io',
|
|
18308
|
+
'https://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
|
18309
|
+
'wss://sepolia.infura.io/v3/${INFURA_API_KEY}'
|
|
17844
18310
|
],
|
|
17845
18311
|
faucets: ['http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'],
|
|
17846
18312
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -18272,6 +18738,12 @@ exports.chains = {
|
|
|
18272
18738
|
name: 'neonscan',
|
|
18273
18739
|
url: 'https://devnet.neonscan.org',
|
|
18274
18740
|
standard: 'EIP3091'
|
|
18741
|
+
},
|
|
18742
|
+
{
|
|
18743
|
+
name: 'blockscout',
|
|
18744
|
+
url: 'https://neon-devnet.blockscout.com',
|
|
18745
|
+
icon: 'blockscout',
|
|
18746
|
+
standard: 'EIP3091'
|
|
18275
18747
|
}
|
|
18276
18748
|
]
|
|
18277
18749
|
},
|
|
@@ -18652,10 +19124,19 @@ exports.chains = {
|
|
|
18652
19124
|
1666600000: {
|
|
18653
19125
|
name: 'Harmony Mainnet Shard 0',
|
|
18654
19126
|
chain: 'Harmony',
|
|
18655
|
-
rpc: [
|
|
18656
|
-
|
|
19127
|
+
rpc: [
|
|
19128
|
+
'https://api.harmony.one',
|
|
19129
|
+
'https://a.api.s0.t.hmny.io',
|
|
19130
|
+
'https://api.s0.t.hmny.io',
|
|
19131
|
+
'https://rpc.ankr.com/harmony',
|
|
19132
|
+
'https://harmony.api.onfinality.io/public',
|
|
19133
|
+
'https://1rpc.io/one'
|
|
19134
|
+
],
|
|
19135
|
+
faucets: [],
|
|
18657
19136
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
18658
19137
|
infoURL: 'https://www.harmony.one/',
|
|
19138
|
+
slip44: 1023,
|
|
19139
|
+
ens: { registry: '0x4cd2563118e57b19179d8dc033f2b0c5b5d69ff5' },
|
|
18659
19140
|
shortName: 'hmy-s0',
|
|
18660
19141
|
chainId: 1666600000,
|
|
18661
19142
|
networkId: 1666600000,
|
|
@@ -18674,9 +19155,17 @@ exports.chains = {
|
|
|
18674
19155
|
faucets: [],
|
|
18675
19156
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
18676
19157
|
infoURL: 'https://www.harmony.one/',
|
|
19158
|
+
slip44: 1023,
|
|
18677
19159
|
shortName: 'hmy-s1',
|
|
18678
19160
|
chainId: 1666600001,
|
|
18679
|
-
networkId: 1666600001
|
|
19161
|
+
networkId: 1666600001,
|
|
19162
|
+
explorers: [
|
|
19163
|
+
{
|
|
19164
|
+
name: 'Harmony Block Explorer',
|
|
19165
|
+
url: 'https://explorer.harmony.one/blocks/shard/1',
|
|
19166
|
+
standard: 'none'
|
|
19167
|
+
}
|
|
19168
|
+
]
|
|
18680
19169
|
},
|
|
18681
19170
|
1666600002: {
|
|
18682
19171
|
name: 'Harmony Mainnet Shard 2',
|
|
@@ -18685,9 +19174,17 @@ exports.chains = {
|
|
|
18685
19174
|
faucets: [],
|
|
18686
19175
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
18687
19176
|
infoURL: 'https://www.harmony.one/',
|
|
19177
|
+
slip44: 1023,
|
|
18688
19178
|
shortName: 'hmy-s2',
|
|
18689
19179
|
chainId: 1666600002,
|
|
18690
|
-
networkId: 1666600002
|
|
19180
|
+
networkId: 1666600002,
|
|
19181
|
+
explorers: [
|
|
19182
|
+
{
|
|
19183
|
+
name: 'Harmony Block Explorer',
|
|
19184
|
+
url: 'https://explorer.harmony.one/blocks/shard/2',
|
|
19185
|
+
standard: 'none'
|
|
19186
|
+
}
|
|
19187
|
+
]
|
|
18691
19188
|
},
|
|
18692
19189
|
1666600003: {
|
|
18693
19190
|
name: 'Harmony Mainnet Shard 3',
|
|
@@ -18696,9 +19193,17 @@ exports.chains = {
|
|
|
18696
19193
|
faucets: [],
|
|
18697
19194
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
18698
19195
|
infoURL: 'https://www.harmony.one/',
|
|
19196
|
+
slip44: 1023,
|
|
18699
19197
|
shortName: 'hmy-s3',
|
|
18700
19198
|
chainId: 1666600003,
|
|
18701
|
-
networkId: 1666600003
|
|
19199
|
+
networkId: 1666600003,
|
|
19200
|
+
explorers: [
|
|
19201
|
+
{
|
|
19202
|
+
name: 'Harmony Block Explorer',
|
|
19203
|
+
url: 'https://explorer.harmony.one/blocks/shard/3',
|
|
19204
|
+
standard: 'none'
|
|
19205
|
+
}
|
|
19206
|
+
]
|
|
18702
19207
|
},
|
|
18703
19208
|
1666700000: {
|
|
18704
19209
|
name: 'Harmony Testnet Shard 0',
|
|
@@ -18713,7 +19218,7 @@ exports.chains = {
|
|
|
18713
19218
|
explorers: [
|
|
18714
19219
|
{
|
|
18715
19220
|
name: 'Harmony Testnet Block Explorer',
|
|
18716
|
-
url: 'https://explorer.
|
|
19221
|
+
url: 'https://explorer.testnet.harmony.one',
|
|
18717
19222
|
standard: 'EIP3091'
|
|
18718
19223
|
}
|
|
18719
19224
|
]
|
|
@@ -18722,52 +19227,43 @@ exports.chains = {
|
|
|
18722
19227
|
name: 'Harmony Testnet Shard 1',
|
|
18723
19228
|
chain: 'Harmony',
|
|
18724
19229
|
rpc: ['https://api.s1.b.hmny.io'],
|
|
18725
|
-
faucets: [],
|
|
19230
|
+
faucets: ['https://faucet.pops.one'],
|
|
18726
19231
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
18727
19232
|
infoURL: 'https://www.harmony.one/',
|
|
18728
19233
|
shortName: 'hmy-b-s1',
|
|
18729
19234
|
chainId: 1666700001,
|
|
18730
|
-
networkId: 1666700001
|
|
19235
|
+
networkId: 1666700001,
|
|
19236
|
+
explorers: [
|
|
19237
|
+
{
|
|
19238
|
+
name: 'Harmony Block Explorer',
|
|
19239
|
+
url: 'https://explorer.testnet.harmony.one',
|
|
19240
|
+
standard: 'none'
|
|
19241
|
+
}
|
|
19242
|
+
]
|
|
18731
19243
|
},
|
|
18732
|
-
|
|
18733
|
-
name: 'Harmony
|
|
19244
|
+
1666900000: {
|
|
19245
|
+
name: 'Harmony Devnet Shard 0',
|
|
18734
19246
|
chain: 'Harmony',
|
|
18735
|
-
rpc: ['https://api.
|
|
19247
|
+
rpc: ['https://api.s0.ps.hmny.io'],
|
|
18736
19248
|
faucets: [],
|
|
18737
19249
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
18738
19250
|
infoURL: 'https://www.harmony.one/',
|
|
18739
|
-
shortName: 'hmy-
|
|
18740
|
-
chainId:
|
|
18741
|
-
networkId:
|
|
19251
|
+
shortName: 'hmy-ps-s0',
|
|
19252
|
+
chainId: 1666900000,
|
|
19253
|
+
networkId: 1666900000,
|
|
19254
|
+
explorers: []
|
|
18742
19255
|
},
|
|
18743
|
-
|
|
18744
|
-
name: 'Harmony
|
|
19256
|
+
1666900001: {
|
|
19257
|
+
name: 'Harmony Devnet Shard 1',
|
|
18745
19258
|
chain: 'Harmony',
|
|
18746
|
-
rpc: ['https://api.
|
|
19259
|
+
rpc: ['https://api.s1.ps.hmny.io'],
|
|
18747
19260
|
faucets: [],
|
|
18748
19261
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
18749
19262
|
infoURL: 'https://www.harmony.one/',
|
|
18750
|
-
shortName: 'hmy-
|
|
18751
|
-
chainId:
|
|
18752
|
-
networkId:
|
|
18753
|
-
|
|
18754
|
-
1666900000: {
|
|
18755
|
-
name: 'Harmony Devnet Shard 0',
|
|
18756
|
-
chain: 'Harmony',
|
|
18757
|
-
rpc: ['https://api.s1.ps.hmny.io', 'https://api.s1.ps.hmny.io'],
|
|
18758
|
-
faucets: ['http://dev.faucet.easynode.one/'],
|
|
18759
|
-
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
|
18760
|
-
infoURL: 'https://www.harmony.one/',
|
|
18761
|
-
shortName: 'hmy-ps-s0',
|
|
18762
|
-
chainId: 1666900000,
|
|
18763
|
-
networkId: 1666900000,
|
|
18764
|
-
explorers: [
|
|
18765
|
-
{
|
|
18766
|
-
name: 'Harmony Block Explorer',
|
|
18767
|
-
url: 'https://explorer.ps.hmny.io',
|
|
18768
|
-
standard: 'EIP3091'
|
|
18769
|
-
}
|
|
18770
|
-
]
|
|
19263
|
+
shortName: 'hmy-ps-s1',
|
|
19264
|
+
chainId: 1666900001,
|
|
19265
|
+
networkId: 1666900001,
|
|
19266
|
+
explorers: []
|
|
18771
19267
|
},
|
|
18772
19268
|
2021121117: {
|
|
18773
19269
|
name: 'DataHopper',
|