Higher than v0.50
Integrating the Avalanche Light-Client Module in Your Cosmos SDK Application
1. Import the Avalanche Light-Client Module
import (
// other imports...
ava "github.com/cosmos/ibc-go/v8/modules/light-clients/14-avalanche"
)2. Register the Avalanche Module in the Module Manager
app.ModuleManager = module.NewManager(
// other modules...
ava.AppModuleBasic{},
)3. Add module to the RegisterIBC function
Last updated