-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathinit.go
More file actions
88 lines (83 loc) · 3.62 KB
/
init.go
File metadata and controls
88 lines (83 loc) · 3.62 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
Copyright 2022 Nethermind
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package configs
var networksConfigs map[string]NetworkConfig = map[string]NetworkConfig{
NetworkMainnet: {
Name: NetworkMainnet,
NetworkService: "merge",
GenesisForkVersion: "0x00000000",
SupportsMEVBoost: true,
CheckpointSyncURL: "https://beaconstate.ethstaker.cc",
RelayURLs: []string{
"https://0xa7ab7a996c8584251c8f925da3170bdfd6ebc75d50f5ddc4050a6fdc77f2a3b5fce2cc750d0865e05d7228af97d69561@agnostic-relay.net",
"https://0x9000009807ed12c1f08bf4e81c6da3ba8e3fc3d953898ce0102433094e5f22f21102ec057841fcb81978ed1ea0fa8246@builder-relay-mainnet.blocknative.com",
"https://0xad0a8bb54565c2211cee576363f3a347089d2f07cf72679d16911d740262694cadb62d7fd7483f27afd714ca0f1b9118@bloxroute.ethical.blxrbdn.com",
"https://0x8b5d2e73e2a3a55c6c87b8b6eb92e0149a125c852751db1422fa951e42a09b82c142c3ea98d0d9930b056a3bc9896b8f@bloxroute.max-profit.blxrbdn.com",
"https://0xb0b07cd0abef743db4260b0ed50619cf6ad4d82064cb4fbec9d3ec530f7c5e6793d9f286c4e082c0244ffb9f2658fe88@bloxroute.regulated.blxrbdn.com",
"https://0xb3ee7afcf27f1f1259ac1787876318c6584ee353097a50ed84f51a1f21a323b3736f271a895c7ce918c038e4265918be@relay.edennetwork.io",
"https://0xac6e77dfe25ecd6110b8e780608cce0dab71fdd5ebea22a16c0205200f2f8e2e3ad3b71d3499c54ad14d6c21b41a37ae@boost-relay.flashbots.net",
"https://0xa1559ace749633b997cb3fdacffb890aeebdb0f5a3b6aaa7eeeaf1a38af0a8fe88b9e4b1f61f236d2e64d95733327a62@relay.ultrasound.money",
},
ChainID: 1,
Weight: 1,
},
NetworkSepolia: {
Name: NetworkSepolia,
NetworkService: "merge",
GenesisForkVersion: "0x90000069",
SupportsMEVBoost: true,
CheckpointSyncURL: "https://sepolia.checkpoint-sync.ethpandaops.io",
RelayURLs: []string{
"https://0x845bd072b7cd566f02faeb0a4033ce9399e42839ced64e8b2adcfc859ed1e8e1a5a293336a49feac6d9a5edb779be53a@builder-relay-sepolia.flashbots.net",
},
ChainID: 11155111,
Weight: 3,
},
NetworkChiado: {
Name: NetworkChiado,
NetworkService: "merge",
GenesisForkVersion: "0x0000006f",
CheckpointSyncURL: "https://checkpoint.chiadochain.net",
ChainID: 10200,
Weight: 5,
},
NetworkGnosis: {
Name: NetworkGnosis,
NetworkService: "merge",
GenesisForkVersion: "0x00000064",
CheckpointSyncURL: "https://checkpoint.gnosischain.com",
ChainID: 100,
Weight: 4,
},
NetworkHoodi: {
Name: NetworkHoodi,
NetworkService: "merge",
GenesisForkVersion: "0x10000910",
SupportsMEVBoost: true,
CheckpointSyncURL: "https://checkpoint-sync.hoodi.ethpandaops.io",
RelayURLs: []string{
"https://0xaa58208899c6105603b74396734a6263cc7d947f444f396a90f7b7d3e65d102aec7e5e5291b27e08d02c50a050825c2f@hoodi.titanrelay.xyz",
},
ChainID: 560048,
Weight: 2,
},
NetworkCustom: {
Name: NetworkCustom,
NetworkService: "merge",
GenesisForkVersion: "0x00000000", // TODO: only affects keystores generation, ensure the deposit method does not conflict over this.
Weight: 7,
},
}
func NetworksConfigs() map[string]NetworkConfig {
return networksConfigs
}