The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
woop/common/config/global_config.go

15 lines
270 B

6 years ago
package config
6 years ago
// NetworkType describes the type of Harmony network
6 years ago
type NetworkType int
6 years ago
// Constants for NetworkType
6 years ago
const (
6 years ago
Mainnet NetworkType = 0
Testnet NetworkType = 1
Devnet NetworkType = 2
6 years ago
)
6 years ago
// Network is the type of Harmony network
6 years ago
var Network = Testnet