github.com/okex/exchain@v1.8.0/libs/ibc-go/modules/core/alias.go (about) 1 package ibc 2 3 import ( 4 "github.com/okex/exchain/libs/ibc-go/modules/core/common" 5 "github.com/okex/exchain/libs/ibc-go/modules/core/keeper" 6 "github.com/okex/exchain/libs/ibc-go/modules/core/types" 7 ) 8 9 type ( 10 Keeper = keeper.FacadedKeeper 11 V2Keeper = keeper.Keeper 12 ) 13 14 const () 15 16 var ( 17 NewKeeper = keeper.NewKeeper 18 NewV4Keeper = keeper.NewV4Keeper 19 NewFacadedKeeper = keeper.NewFacadedKeeper 20 ModuleCdc = types.ModuleCdc 21 DefaultGenesisState = types.DefaultGenesisState 22 ) 23 24 const ( 25 IBCV4 common.SelectVersion = 4.0 26 IBCV2 common.SelectVersion = 2.0 27 )