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
//! chains_mini.json
use ;
use ;
pub use crate*;
/// EIP-155 Chain Data.
///
/// **[Mini version]** - includes only the following fields:
/// - name
/// - chainId
/// - shortName
/// - networkId
/// - nativeCurrency
/// - rpc
/// - faucets
/// - infoURL
///
/// Schema: https://github.com/ethereum-lists/chains/blob/master/tools/schema/chainSchema.json
///
/// [Mini version]: https://github.com/ethereum-lists/chains/blob/2bd5eb7a2f7796411ee13def4b4e601f77f9c243/processor/src/main/kotlin/org/ethereum/lists/chains/Main.kt#L58-L64