Versions in this module Expand all Collapse all v1 v1.0.0 Nov 28, 2023 Changes in this version + type Database interface + AddUserToGroup func(member types.UserGroupMember) error + DeleteAllSubspaces func(height int64) error + DeleteSection func(height int64, subspaceID uint64, sectionID uint32) error + DeleteSubspace func(height int64, id uint64) error + DeleteUserGroup func(height int64, subspaceID uint64, groupID uint32) error + DeleteUserPermission func(permission types.UserPermission) error + RemoveUserFromGroup func(member types.UserGroupMember) error + SaveSection func(section types.Section) error + SaveSubspace func(subspace types.Subspace) error + SaveUserGroup func(group types.UserGroup) error + SaveUserPermission func(permission types.UserPermission) error + type Module struct + func NewModule(node node.Node, grpcConnection *grpc.ClientConn, cdc codec.Codec, db Database) *Module + func (m *Module) HandleGenesis(doc *tmtypes.GenesisDoc, appState map[string]json.RawMessage) error + func (m *Module) HandleMsg(index int, msg sdk.Msg, tx *juno.Tx) error + func (m *Module) HandleMsgExec(index int, _ *authz.MsgExec, _ int, executedMsg sdk.Msg, tx *juno.Tx) error + func (m *Module) Name() string + func (m *Module) QueryAllSubspaces(height int64) ([]types.Subspace, error) + func (m *Module) QuerySubspace(height int64, subspaceID uint64) (types.Subspace, error) + func (m *Module) RefreshSubspaceData(height int64, subspaceID uint64) error + func (m *Module) RefreshSubspacesData(height int64) error Other modules containing this package github.com/desmos-labs/athena/v2