refactor: decouple comet from modules (#21382)

This commit is contained in:
son trinh
2024-09-11 09:18:13 +00:00
committed by GitHub
parent 04cec5b5e5
commit 1d4ecd5e37
32 changed files with 1702 additions and 5169 deletions
+10
View File
@@ -0,0 +1,10 @@
package types
import cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
type GenesisValidator struct {
Address ConsAddress
PubKey cryptotypes.PubKey
Power int64
Name string
}