mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 11:32:20 +00:00
3d048b7f1a
* Add chain config and CLI changes for Binance Smart Chain support * Remove BSC hashes for now * Add an if statement for BSC forks * Fix up if statement * Compiles * Remove extra dependencies from go.mod/go.sum * Add a TODO * Potentially fix the tests
15 lines
359 B
Go
15 lines
359 B
Go
package networkname
|
|
|
|
const (
|
|
MainnetChainName = "mainnet"
|
|
RopstenChainName = "ropsten"
|
|
RinkebyChainName = "rinkeby"
|
|
GoerliChainName = "goerli"
|
|
DevChainName = "dev"
|
|
ErigonMineName = "erigonmine"
|
|
SokolChainName = "sokol"
|
|
KovanChainName = "kovan"
|
|
BSCMainnetChainName = "bsc-mainnet"
|
|
FermionChainName = "fermion"
|
|
)
|