Skip to content

Commit 66cfe8d

Browse files
committed
feat: added changes in app_config for evm, feemarket modules
1 parent c0ea60c commit 66cfe8d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

app/app_config.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ import (
5353
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported"
5454
"google.golang.org/protobuf/types/known/durationpb"
5555

56+
evmtypes "github.com/zeta-chain/ethermint/x/evm/types"
57+
feemarkettypes "github.com/zeta-chain/ethermint/x/feemarket/types"
58+
5659
pushmodulev1 "push/api/push/push/module"
5760
_ "push/x/push/module" // import for side-effects
5861
pushmoduletypes "push/x/push/types"
@@ -92,6 +95,8 @@ var (
9295
group.ModuleName,
9396
consensustypes.ModuleName,
9497
circuittypes.ModuleName,
98+
evmtypes.ModuleName,
99+
feemarkettypes.ModuleName,
95100
// chain modules
96101
pushmoduletypes.ModuleName,
97102
// this line is used by starport scaffolding # stargate/app/initGenesis
@@ -117,6 +122,8 @@ var (
117122
ibctransfertypes.ModuleName,
118123
icatypes.ModuleName,
119124
ibcfeetypes.ModuleName,
125+
evmtypes.ModuleName,
126+
feemarkettypes.ModuleName,
120127
// chain modules
121128
pushmoduletypes.ModuleName,
122129
// this line is used by starport scaffolding # stargate/app/beginBlockers
@@ -136,6 +143,8 @@ var (
136143
capabilitytypes.ModuleName,
137144
icatypes.ModuleName,
138145
ibcfeetypes.ModuleName,
146+
evmtypes.ModuleName,
147+
feemarkettypes.ModuleName,
139148
// chain modules
140149
pushmoduletypes.ModuleName,
141150
// this line is used by starport scaffolding # stargate/app/endBlockers
@@ -158,6 +167,7 @@ var (
158167
{Account: ibctransfertypes.ModuleName, Permissions: []string{authtypes.Minter, authtypes.Burner}},
159168
{Account: ibcfeetypes.ModuleName},
160169
{Account: icatypes.ModuleName},
170+
{Account: evmtypes.ModuleName, Permissions: []string{authtypes.Minter, authtypes.Burner}},
161171
// this line is used by starport scaffolding # stargate/app/maccPerms
162172
}
163173

go.mod

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,10 @@ require (
254254
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
255255
github.com/tendermint/go-amino v0.16.0 // indirect
256256
github.com/tidwall/btree v1.7.0 // indirect
257+
github.com/tidwall/gjson v1.14.4 // indirect
258+
github.com/tidwall/match v1.1.1 // indirect
259+
github.com/tidwall/pretty v1.2.0 // indirect
260+
github.com/tidwall/sjson v1.2.5 // indirect
257261
github.com/tklauser/go-sysconf v0.3.12 // indirect
258262
github.com/tklauser/numcpus v0.6.1 // indirect
259263
github.com/tyler-smith/go-bip39 v1.1.0 // indirect

0 commit comments

Comments
 (0)