diff --git a/ignite/pkg/chainregistry/consts.go b/ignite/pkg/chainregistry/consts.go index f90166e841..3f10b59e0b 100644 --- a/ignite/pkg/chainregistry/consts.go +++ b/ignite/pkg/chainregistry/consts.go @@ -3,48 +3,48 @@ package chainregistry type NetworkType string const ( - // NetworkTypeMainnet is the mainnet network type + // NetworkTypeMainnet is the mainnet network type. NetworkTypeMainnet NetworkType = "mainnet" - // NetworkTypeTestnet is the testnet network type + // NetworkTypeTestnet is the testnet network type. NetworkTypeTestnet NetworkType = "testnet" - // NetworkTypeDevnet is the devnet network type + // NetworkTypeDevnet is the devnet network type. NetworkTypeDevnet NetworkType = "devnet" ) type ChainType string const ( - // ChainTypeCosmos is the cosmos chain type + // ChainTypeCosmos is the cosmos chain type. ChainTypeCosmos ChainType = "cosmos" - // ChainTypeEip155 is the eip155 chain type + // ChainTypeEip155 is the eip155 chain type. ChainTypeEip155 ChainType = "eip155" ) type ChainStatus string const ( - // ChainStatusActive is the live chain status + // ChainStatusActive is the live chain status. ChainStatusActive ChainStatus = "live" - // ChainStatusUpcoming is the upcoming chain status + // ChainStatusUpcoming is the upcoming chain status. ChainStatusUpcoming ChainStatus = "upcoming" - // ChainStatusKilled is the inactive chain status + // ChainStatusKilled is the inactive chain status. ChainStatusKilled ChainStatus = "killed" ) type KeyAlgos string const ( - // KeyAlgoSecp256k1 is the secp256k1 key algorithm + // KeyAlgoSecp256k1 is the secp256k1 key algorithm. KeyAlgoSecp256k1 KeyAlgos = "secp256k1" - // KeyAlgosEthSecp256k1 is the secp256k1 key algorithm with ethereum compatibility + // KeyAlgosEthSecp256k1 is the secp256k1 key algorithm with ethereum compatibility. KeyAlgosEthSecp256k1 KeyAlgos = "ethsecp256k1" - // KeyAlgoEd25519 is the ed25519 key algorithm + // KeyAlgoEd25519 is the ed25519 key algorithm. KeyAlgoEd25519 KeyAlgos = "ed25519" )