Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: integrate ibc x 0.52 #4477

Merged
merged 25 commits into from
Feb 3, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updates
julienrbrt committed Jan 24, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 48eccca2e56e2346e91a51ebdc08a7cb5f82dc93
8 changes: 6 additions & 2 deletions ignite/templates/app/files/app/ibc.go.plush
Original file line number Diff line number Diff line change
@@ -137,14 +137,18 @@ func (app *App) registerIBCModules(appOpts servertypes.AppOptions) error {

app.IBCKeeper.SetRouter(ibcRouter)

storeProvider := app.IBCKeeper.ClientKeeper.GetStoreProvider()
tmLightClientModule := ibctm.NewLightClientModule(app.appCodec, storeProvider)
soloLightClientModule := solomachine.NewLightClientModule(app.appCodec, storeProvider)

// register IBC modules
if err := app.RegisterModules(
ibc.NewAppModule(app.appCodec, app.IBCKeeper),
ibctransfer.NewAppModule(app.appCodec, app.TransferKeeper),
ibcfee.NewAppModule(app.appCodec, app.IBCFeeKeeper),
icamodule.NewAppModule(app.appCodec, &app.ICAControllerKeeper, &app.ICAHostKeeper),
ibctm.NewAppModule(),
solomachine.NewAppModule(),
ibctm.NewAppModule(tmLightClientModule),
solomachine.NewAppModule(soloLightClientModule),
); err != nil {
return err
}