mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
* delete deprecated flags and old slashing protection schema * remove toledo mentions * build * do not remove migration
22 lines
384 B
Go
22 lines
384 B
Go
package params
|
|
|
|
const (
|
|
Mainnet ConfigName = iota
|
|
Minimal
|
|
EndToEnd
|
|
Pyrmont
|
|
Prater
|
|
)
|
|
|
|
// ConfigNames provides network configuration names.
|
|
var ConfigNames = map[ConfigName]string{
|
|
Mainnet: "mainnet",
|
|
Minimal: "minimal",
|
|
EndToEnd: "end-to-end",
|
|
Pyrmont: "pyrmont",
|
|
Prater: "prater",
|
|
}
|
|
|
|
// ConfigName enum describes the type of known network in use.
|
|
type ConfigName = int
|