github.com/kotalco/kotal@v0.3.0/apis/ethereum/v1alpha1/network.go (about) 1 package v1alpha1 2 3 const ( 4 // MainNetwork is ethereum main network 5 MainNetwork = "mainnet" 6 // RopstenNetwork is ropsten pos network 7 RopstenNetwork = "ropsten" 8 // RinkebyNetwork is rinkeby poa network 9 RinkebyNetwork = "rinkeby" 10 // GoerliNetwork is goerli pos cross-client network 11 GoerliNetwork = "goerli" 12 // SepoliaNetwork is sepolia pos network 13 SepoliaNetwork = "sepolia" 14 // XDaiNetwork is xdai pos network 15 XDaiNetwork = "xdai" 16 // KottiNetwork is kotti poa ethereum classic test network 17 KottiNetwork = "kotti" 18 // ClassicNetwork is ethereum classic network 19 ClassicNetwork = "classic" 20 // MordorNetwork is mordon poe ethereum classic test network 21 MordorNetwork = "mordor" 22 // DevNetwork is local development network 23 DevNetwork = "dev" 24 ) 25 26 // HexString is String in hexadecial format 27 // +kubebuilder:validation:Pattern="^0[xX][0-9a-fA-F]+$" 28 type HexString string 29 30 // Hash is KECCAK-256 hash 31 // +kubebuilder:validation:Pattern="^0[xX][0-9a-fA-F]{64}$" 32 type Hash string