mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
f3d6dbcc1e
* config params into pkg * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
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
|