- Add nitro server and x/nitro module
- wire go-nitro p2p through cometbft
- Add distsig server, currently WIP
- integrate DKG and DSS schemes into ABCI methods
- Remove deprecated features
- crisis module
- module invariants
- Update to use newer SDK patterns
- upgrade sdk to v0.53.x
- custom address codec
- expand use of depinject
- migrate e2e tests to system tests
- use depinject to set up integration tests
- change reserved protobuf field name `cerc.registry.v1.Record.type`
- Revise & add documentation
- TransferCoinsToModuleAccount: clarify function
- Update init.sh script
26 lines
589 B
Go
26 lines
589 B
Go
package registry
|
|
|
|
import (
|
|
registry "github.com/cosmos/cosmos-sdk/codec/types"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/msgservice"
|
|
)
|
|
|
|
func RegisterInterfaces(registry registry.InterfaceRegistry) {
|
|
registry.RegisterImplementations((*sdk.Msg)(nil),
|
|
&MsgSetName{},
|
|
&MsgReserveAuthority{},
|
|
&MsgDeleteName{},
|
|
&MsgSetAuthorityBond{},
|
|
|
|
&MsgSetRecord{},
|
|
&MsgRenewRecord{},
|
|
&MsgAssociateBond{},
|
|
&MsgDissociateBond{},
|
|
&MsgDissociateRecords{},
|
|
&MsgReassociateRecords{},
|
|
)
|
|
|
|
msgservice.RegisterMsgServiceDesc(registry, &Msg_serviceDesc)
|
|
}
|