-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChainNetwork.cs
65 lines (64 loc) · 1.63 KB
/
ChainNetwork.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
namespace EtherScan.Dotnet.Client.Models.Enumerations;
public enum ChainNetwork
{
EthereumMainnet = 1,
SepoliaTestnet = 11155111,
HoleskyTestnet = 17000,
BnbMainnet = 56,
BnbTestnet = 97,
PolygonMainnet = 137,
PolygonAmoyTestnet = 80002,
PolygonZkEvmMainnet = 1101,
PolygonZkEvmCardonaTestnet = 2442,
BaseMainnet = 8453,
BaseSepolia = 84532,
ArbitrumOne = 42161,
ArbitrumNova = 42170,
ArbitrumSepolia = 421614,
LineaMainnet = 59144,
LineaSepolia = 59141,
FantomMainnet = 250,
FantomTestnet = 4002,
BlastMainnet = 81457,
BlastSepolia = 168587773,
OptimismMainnet = 10,
OptimismSepolia = 11155420,
AvalancheMainnet = 43114,
AvalancheFuji = 43113,
BitTorrentMainnet = 199,
BitTorrentTestnet = 1028,
CeloMainnet = 42220,
CeloAlfajores = 44787,
CronosMainnet = 25,
FraxtalMainnet = 252,
FraxtalTestnet = 2522,
Gnosis = 100,
KromaMainnet = 255,
KromaSepolia = 2358,
MantleMainnet = 5000,
MantleSepolia = 5003,
MoonbeamMainnet = 1284,
MoonriverMainnet = 1285,
MoonbaseAlpha = 1287,
OpBnbMainnet = 204,
OpBnbTestnet = 5611,
ScrollMainnet = 534352,
ScrollSepolia = 534351,
TaikoMainnet = 167000,
TaikoHekla = 167009,
WemixMainnet = 1111,
WemixTestnet = 1112,
ZkSyncMainnet = 324,
ZkSyncSepolia = 300,
XaiMainnet = 660279,
XdcMainnet = 50,
XdcApothem = 51,
ApeChainMainnet = 33139,
ApeChainCurtis = 33111,
WorldMainnet = 480,
WorldSepolia = 4801,
SophonMainnet = 50104,
SophonSepolia = 531050104,
SonicMainnet = 146,
SonicBlaze = 57054
}