Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Jan 15, 2025
1 parent a34d2d0 commit 62e718d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions ignite/pkg/chainregistry/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

0 comments on commit 62e718d

Please sign in to comment.