-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.go
225 lines (187 loc) · 6.36 KB
/
module.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// Copyright 2024 NASD Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package globalfee
import (
"context"
"encoding/json"
"fmt"
autocliv1 "cosmossdk.io/api/cosmos/autocli/v1"
"cosmossdk.io/core/appmodule"
"cosmossdk.io/core/store"
"cosmossdk.io/depinject"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/grpc-ecosystem/grpc-gateway/runtime"
modulev1 "github.com/noble-assets/globalfee/api/module/v1"
globalfeev1 "github.com/noble-assets/globalfee/api/v1"
"github.com/noble-assets/globalfee/keeper"
"github.com/noble-assets/globalfee/types"
)
// ConsensusVersion defines the current GlobalFee module consensus version.
const ConsensusVersion = 2
var (
_ module.AppModuleBasic = AppModule{}
_ appmodule.AppModule = AppModule{}
_ module.HasConsensusVersion = AppModule{}
_ module.HasGenesis = AppModule{}
_ module.HasGenesisBasics = AppModuleBasic{}
_ module.HasServices = AppModule{}
)
//
type AppModuleBasic struct {
registry codectypes.InterfaceRegistry
}
func NewAppModuleBasic(registry codectypes.InterfaceRegistry) AppModuleBasic {
return AppModuleBasic{registry: registry}
}
func (AppModuleBasic) Name() string { return types.ModuleName }
func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
types.RegisterLegacyAminoCodec(cdc)
}
func (AppModuleBasic) RegisterInterfaces(reg codectypes.InterfaceRegistry) {
types.RegisterInterfaces(reg)
}
func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux) {
if err := types.RegisterQueryHandlerClient(context.Background(), mux, types.NewQueryClient(clientCtx)); err != nil {
panic(err)
}
}
func (AppModuleBasic) DefaultGenesis(cdc codec.JSONCodec) json.RawMessage {
return cdc.MustMarshalJSON(types.DefaultGenesisState())
}
func (b AppModuleBasic) ValidateGenesis(cdc codec.JSONCodec, _ client.TxEncodingConfig, bz json.RawMessage) error {
var genesis types.GenesisState
if err := cdc.UnmarshalJSON(bz, &genesis); err != nil {
return fmt.Errorf("failed to unmarshal %s genesis state: %w", types.ModuleName, err)
}
return genesis.Validate(b.registry)
}
//
type AppModule struct {
AppModuleBasic
subspace paramstypes.Subspace
keeper *keeper.Keeper
}
func NewAppModule(registry codectypes.InterfaceRegistry, subspace paramstypes.Subspace, keeper *keeper.Keeper) AppModule {
return AppModule{
AppModuleBasic: NewAppModuleBasic(registry),
subspace: subspace,
keeper: keeper,
}
}
func (AppModule) IsOnePerModuleType() {}
func (AppModule) IsAppModule() {}
func (AppModule) ConsensusVersion() uint64 { return ConsensusVersion }
func (m AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, bz json.RawMessage) {
var genesis types.GenesisState
cdc.MustUnmarshalJSON(bz, &genesis)
InitGenesis(ctx, m.keeper, genesis)
}
func (m AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.RawMessage {
genesis := ExportGenesis(ctx, m.keeper)
return cdc.MustMarshalJSON(genesis)
}
func (m AppModule) RegisterServices(cfg module.Configurator) {
types.RegisterMsgServer(cfg.MsgServer(), keeper.NewMsgServer(m.keeper))
types.RegisterQueryServer(cfg.QueryServer(), keeper.NewQueryServer(m.keeper))
migrator := NewMigrator(m.subspace, m.keeper)
if err := cfg.RegisterMigration(types.ModuleName, 1, migrator.Migrate1to2); err != nil {
panic(fmt.Sprintf("failed to migrate GlobalFee from version 1 to 2: %v", err))
}
}
//
func (AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
return &autocliv1.ModuleOptions{
Tx: &autocliv1.ServiceCommandDescriptor{
Service: globalfeev1.Msg_ServiceDesc.ServiceName,
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
{
RpcMethod: "UpdateGasPrices",
Use: "update-gas-prices [gas-prices ...]",
Short: "Update the minimum required gas prices for non-bypassed messages",
Example: "update-gas-prices 0.1uusdc 0.09ueure",
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
{
ProtoField: "gas_prices",
Varargs: true,
},
},
},
{
RpcMethod: "UpdateBypassMessages",
Use: "update-bypass-messages [bypass-messages ...]",
Short: "Update the messages that are allowed to bypass required gas prices",
Example: "update-bypass-messages /ibc.core.client.v1.MsgUpdateClient /noble.globalfee.v1.MsgUpdateGasPrices",
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
{
ProtoField: "bypass_messages",
Varargs: true,
},
},
},
},
},
Query: &autocliv1.ServiceCommandDescriptor{
Service: globalfeev1.Query_ServiceDesc.ServiceName,
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
{
RpcMethod: "GasPrices",
Use: "gas-prices",
},
{
RpcMethod: "BypassMessages",
Use: "bypass-messages",
},
},
},
}
}
//
func init() {
appmodule.Register(&modulev1.Module{},
appmodule.Provide(ProvideModule),
)
}
type ModuleInputs struct {
depinject.In
Config *modulev1.Module
Service store.KVStoreService
Registry codectypes.InterfaceRegistry
Cdc codec.Codec
Subspace paramstypes.Subspace
}
type ModuleOutputs struct {
depinject.Out
Keeper *keeper.Keeper
Module appmodule.AppModule
}
func ProvideModule(in ModuleInputs) ModuleOutputs {
if in.Config.Authority == "" {
panic("authority for GlobalFee module must be set")
}
authority := authtypes.NewModuleAddressOrBech32Address(in.Config.Authority)
k := keeper.NewKeeper(
authority.String(),
in.Registry,
in.Service,
in.Cdc,
)
m := NewAppModule(in.Registry, in.Subspace, k)
return ModuleOutputs{Keeper: k, Module: m}
}