Documentation
¶
Index ¶
- Constants
- Variables
- func NewHandler(k Keeper, am auth.AccountMapper) sdkTypes.Handler
- func NewQuerier(k Keeper, cdc *amino.Codec) sdk.Querier
- func RegisterCodec(cdc *amino.Codec) *amino.Codec
- type Keeper
- type MsgIDCreate
- func (msg MsgIDCreate) Get(key interface{}) (value interface{})
- func (msg MsgIDCreate) GetSignBytes() []byte
- func (msg MsgIDCreate) GetSigners() []sdk.AccAddress
- func (msg MsgIDCreate) Route() string
- func (msg MsgIDCreate) String() string
- func (msg MsgIDCreate) Tags() sdk.Tags
- func (msg MsgIDCreate) Type() string
- func (msg MsgIDCreate) ValidateBasic() sdk.Error
- type MsgIDDelete
- func (msg MsgIDDelete) Get(key interface{}) (value interface{})
- func (msg MsgIDDelete) GetSignBytes() []byte
- func (msg MsgIDDelete) GetSigners() []sdk.AccAddress
- func (msg MsgIDDelete) Route() string
- func (msg MsgIDDelete) String() string
- func (msg MsgIDDelete) Tags() sdk.Tags
- func (msg MsgIDDelete) Type() string
- func (msg MsgIDDelete) ValidateBasic() sdk.Error
- type MsgIDUpdate
- func (msg MsgIDUpdate) Get(key interface{}) (value interface{})
- func (msg MsgIDUpdate) GetSignBytes() []byte
- func (msg MsgIDUpdate) GetSigners() []sdk.AccAddress
- func (msg MsgIDUpdate) Route() string
- func (msg MsgIDUpdate) String() string
- func (msg MsgIDUpdate) Tags() sdk.Tags
- func (msg MsgIDUpdate) Type() string
- func (msg MsgIDUpdate) ValidateBasic() sdk.Error
- type QueryIdentityParams
Constants ¶
View Source
const (
QueryIdentity = "identity"
)
Variables ¶
View Source
var ( // Address - String Type Address = "Address" Hash = "Hash" Event = "Event" // Value - []byte CreatedEvent = "Created" UpdatedEvent = "Updated" DeletedEvent = "Deleted" )
Functions ¶
Types ¶
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
type MsgIDCreate ¶
type MsgIDCreate struct {
Address sdk.AccAddress `json:"address"`
Hash string `json:"hash"`
}
func NewMsgIDCreate ¶
func NewMsgIDCreate(address sdk.AccAddress, hash string) MsgIDCreate
func (MsgIDCreate) ValidateBasic ¶
func (msg MsgIDCreate) ValidateBasic() sdk.Error
ValidateBasic ...
type MsgIDDelete ¶
type MsgIDDelete struct {
Address sdk.AccAddress `json:"address"`
}
func NewMsgIDDelete ¶
func NewMsgIDDelete(address sdk.AccAddress) MsgIDDelete
func (MsgIDDelete) ValidateBasic ¶
func (msg MsgIDDelete) ValidateBasic() sdk.Error
ValidateBasic ...
type MsgIDUpdate ¶
type MsgIDUpdate struct {
Address sdk.AccAddress `json:"address"`
Hash string `json:"hash"`
}
func NewMsgIDUpdate ¶
func NewMsgIDUpdate(address sdk.AccAddress, hash string) MsgIDUpdate
func (MsgIDUpdate) ValidateBasic ¶
func (msg MsgIDUpdate) ValidateBasic() sdk.Error
ValidateBasic ...
type QueryIdentityParams ¶
type QueryIdentityParams struct {
Address sdk.AccAddress
}
Click to show internal directories.
Click to hide internal directories.