-
Notifications
You must be signed in to change notification settings - Fork 170
/
modules.go
188 lines (159 loc) · 5.64 KB
/
modules.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package app
import (
"encoding/json"
"fmt"
"time"
gravitytypes "github.com/Gravity-Bridge/Gravity-Bridge/module/x/gravity/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/bank"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
"github.com/cosmos/cosmos-sdk/x/crisis"
crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types"
"github.com/cosmos/cosmos-sdk/x/genutil"
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
"github.com/cosmos/cosmos-sdk/x/gov"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
"github.com/cosmos/cosmos-sdk/x/mint"
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
"github.com/cosmos/cosmos-sdk/x/slashing"
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
"github.com/cosmos/cosmos-sdk/x/staking"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
)
// BankModule defines a custom wrapper around the x/bank module's AppModuleBasic
// implementation to provide custom default genesis state.
type BankModule struct {
bank.AppModuleBasic
}
// DefaultGenesis returns custom Umee x/bank module genesis state.
func (BankModule) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage {
umeeMetadata := banktypes.Metadata{
Description: "The native staking token of the Umee network.",
Base: BondDenom,
Name: DisplayDenom,
Display: DisplayDenom,
Symbol: DisplayDenom,
DenomUnits: []*banktypes.DenomUnit{
{
Denom: BondDenom,
Exponent: 0,
Aliases: []string{
"microumee",
},
},
{
Denom: DisplayDenom,
Exponent: 6,
Aliases: []string{},
},
},
}
genState := banktypes.DefaultGenesisState()
genState.DenomMetadata = append(genState.DenomMetadata, umeeMetadata)
return cdc.MustMarshalJSON(genState)
}
// StakingModule defines a custom wrapper around the x/staking module's
// AppModuleBasic implementation to provide custom default genesis state.
type StakingModule struct {
staking.AppModuleBasic
}
// DefaultGenesis returns custom Umee x/staking module genesis state.
func (StakingModule) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage {
params := stakingtypes.DefaultParams()
params.BondDenom = BondDenom
return cdc.MustMarshalJSON(&stakingtypes.GenesisState{
Params: params,
})
}
// CrisisModule defines a custom wrapper around the x/crisis module's
// AppModuleBasic implementation to provide custom default genesis state.
type CrisisModule struct {
crisis.AppModuleBasic
}
// DefaultGenesis returns custom Umee x/crisis module genesis state.
func (CrisisModule) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage {
return cdc.MustMarshalJSON(&crisistypes.GenesisState{
ConstantFee: sdk.NewCoin(BondDenom, sdk.NewInt(1000)),
})
}
// MintModule defines a custom wrapper around the x/mint module's
// AppModuleBasic implementation to provide custom default genesis state.
type MintModule struct {
mint.AppModuleBasic
}
// DefaultGenesis returns custom Umee x/mint module genesis state.
func (MintModule) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage {
genState := minttypes.DefaultGenesisState()
genState.Params.MintDenom = BondDenom
return cdc.MustMarshalJSON(genState)
}
// GovModule defines a custom wrapper around the x/gov module's
// AppModuleBasic implementation to provide custom default genesis state.
type GovModule struct {
gov.AppModuleBasic
}
// DefaultGenesis returns custom Umee x/gov module genesis state.
func (GovModule) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage {
minDeposit := sdk.NewCoins(sdk.NewCoin(BondDenom, govtypes.DefaultMinDepositTokens))
genState := govtypes.DefaultGenesisState()
genState.DepositParams.MinDeposit = minDeposit
return cdc.MustMarshalJSON(genState)
}
// SlashingModule defines a custom wrapper around the x/slashing module's
// AppModuleBasic implementation to provide custom default genesis state.
type SlashingModule struct {
slashing.AppModuleBasic
}
// DefaultGenesis returns custom Umee x/slashing module genesis state.
func (SlashingModule) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage {
genState := slashingtypes.DefaultGenesisState()
genState.Params.SignedBlocksWindow = 10000
genState.Params.DowntimeJailDuration = 24 * time.Hour
return cdc.MustMarshalJSON(genState)
}
// GenutilModule defines a custom wrapper around the x/genutil module's
// AppModuleBasic implementation to provide custom genesis state validation.
type GenutilModule struct {
genutil.AppModuleBasic
}
// ValidateGenesis validates the x/genutil genesis state.
func (GenutilModule) ValidateGenesis(
cdc codec.JSONCodec,
encCfg client.TxEncodingConfig,
bz json.RawMessage,
) error {
var genState genutiltypes.GenesisState
if err := cdc.UnmarshalJSON(bz, &genState); err != nil {
return fmt.Errorf("failed to unmarshal %s genesis state: %w", genutiltypes.ModuleName, err)
}
txJSONDecoder := encCfg.TxJSONDecoder()
for i, genTx := range genState.GenTxs {
var tx sdk.Tx
tx, err := txJSONDecoder(genTx)
if err != nil {
return err
}
msgs := tx.GetMsgs()
if n := len(msgs); n != 2 {
return fmt.Errorf(
"gentx %d contains invalid number of messages; expected: 2; got: %d",
i, n,
)
}
if _, ok := msgs[0].(*stakingtypes.MsgCreateValidator); !ok {
return fmt.Errorf(
"gentx %d contains invalid message at index 0; expected: %T; got: %T",
i, &stakingtypes.MsgCreateValidator{}, msgs[0],
)
}
if _, ok := msgs[1].(*gravitytypes.MsgSetOrchestratorAddress); !ok {
return fmt.Errorf(
"gentx %d contains invalid message at index 1; expected: %T; got: %T",
i, &gravitytypes.MsgSetOrchestratorAddress{}, msgs[1],
)
}
}
return nil
}