(registry types.InterfaceRegistry)
| 33 | } |
| 34 | |
| 35 | func RegisterInterfaces(registry types.InterfaceRegistry) { |
| 36 | registry.RegisterImplementations( |
| 37 | (*sdk.Msg)(nil), |
| 38 | &MsgRemoveLiquidity{}, |
| 39 | &MsgRemoveLiquidityUnits{}, |
| 40 | &MsgCreatePool{}, |
| 41 | &MsgAddLiquidity{}, |
| 42 | &MsgSwap{}, |
| 43 | &MsgDecommissionPool{}, |
| 44 | &MsgUnlockLiquidityRequest{}, |
| 45 | &MsgAddLiquidityToRewardsBucketRequest{}, |
| 46 | ) |
| 47 | |
| 48 | msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc) |
| 49 | } |