mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
3d00af7fa3
- Replace command line flags with `-c` config flag. Part of #1180 - Convert node config private keys to hex-encoded string versions. - Remove `GenerateConfig` from library. - Remove unused `FirebaseConfig` from library. - Fix loading of `config/status-chain-genesis.json` in non-dev machines.
17 lines
428 B
Go
17 lines
428 B
Go
package params
|
|
|
|
// Define available fleets.
|
|
const (
|
|
FleetUndefined = ""
|
|
FleetBeta = "eth.beta"
|
|
FleetStaging = "eth.staging"
|
|
)
|
|
|
|
// Cluster defines a list of Ethereum nodes.
|
|
type Cluster struct {
|
|
StaticNodes []string `json:"staticnodes"`
|
|
BootNodes []string `json:"bootnodes"`
|
|
MailServers []string `json:"mailservers"` // list of trusted mail servers
|
|
RendezvousNodes []string `json:"rendezvousnodes"`
|
|
}
|