erigon-pulse/params/networkname/network_name.go
ledgerwatch 25208964e5
Export chainspecs into json files (#4148)
* Export chainspecs into json files

* Add sepolia

* Add more chains

* Extract rest of the chains

Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
2022-05-15 17:37:42 +01:00

36 lines
772 B
Go

package networkname
const (
MainnetChainName = "mainnet"
SepoliaChainName = "sepolia"
RopstenChainName = "ropsten"
RinkebyChainName = "rinkeby"
GoerliChainName = "goerli"
KilnDevnetChainName = "kiln-devnet"
DevChainName = "dev"
SokolChainName = "sokol"
FermionChainName = "fermion"
BSCChainName = "bsc"
ChapelChainName = "chapel"
RialtoChainName = "rialto"
MumbaiChainName = "mumbai"
BorMainnetChainName = "bor-mainnet"
)
var All = []string{
MainnetChainName,
SepoliaChainName,
RopstenChainName,
RinkebyChainName,
GoerliChainName,
KilnDevnetChainName,
//DevChainName,
SokolChainName,
FermionChainName,
BSCChainName,
ChapelChainName,
//RialtoChainName,
MumbaiChainName,
BorMainnetChainName,
}