mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
17 lines
406 B
Go
17 lines
406 B
Go
|
package types
|
||
|
|
||
|
import (
|
||
|
types "github.com/cosmos/cosmos-sdk/codec/types"
|
||
|
v017auction "github.com/kava-labs/kava/x/auction/types"
|
||
|
)
|
||
|
|
||
|
func RegisterInterfaces(registry types.InterfaceRegistry) {
|
||
|
registry.RegisterInterface(
|
||
|
"kava.auction.v1beta1.GenesisAuction",
|
||
|
(*v017auction.GenesisAuction)(nil),
|
||
|
&v017auction.SurplusAuction{},
|
||
|
&v017auction.DebtAuction{},
|
||
|
&v017auction.CollateralAuction{},
|
||
|
)
|
||
|
}
|