mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
60 lines
1.8 KiB
Go
60 lines
1.8 KiB
Go
package keeper
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
|
|
||
|
|
// "github.com/onsonr/hway/internal/local"
|
||
|
|
"github.com/onsonr/hway/x/did/types"
|
||
|
|
)
|
||
|
|
|
||
|
|
var _ types.QueryServer = Querier{}
|
||
|
|
|
||
|
|
type Querier struct {
|
||
|
|
Keeper
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewQuerier(keeper Keeper) Querier {
|
||
|
|
return Querier{Keeper: keeper}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Params returns the total set of did parameters.
|
||
|
|
func (k Querier) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) {
|
||
|
|
ctx := sdk.UnwrapSDKContext(c)
|
||
|
|
|
||
|
|
p, err := k.Keeper.Params.Get(ctx)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
|
||
|
|
return &types.QueryParamsResponse{Params: &p}, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// LoginOptions implements types.QueryServer.
|
||
|
|
func (k Querier) LoginOptions(goCtx context.Context, req *types.QueryLoginOptionsRequest) (*types.QueryLoginOptionsResponse, error) {
|
||
|
|
// ctx := sdk.UnwrapSDKContext(goCtx)
|
||
|
|
panic("LoginOptions is unimplemented")
|
||
|
|
return &types.QueryLoginOptionsResponse{}, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// RegisterOptions implements types.QueryServer.
|
||
|
|
func (k Querier) RegisterOptions(goCtx context.Context, req *types.QueryRegisterOptionsRequest) (*types.QueryRegisterOptionsResponse, error) {
|
||
|
|
panic("RegisterOptions is unimplemented")
|
||
|
|
return &types.QueryRegisterOptionsResponse{}, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// PropertyExists implements types.QueryServer.
|
||
|
|
func (k Querier) PropertyExists(goCtx context.Context, req *types.QueryExistsRequest) (*types.QueryExistsResponse, error) {
|
||
|
|
// ctx := sdk.UnwrapSDKContext(goCtx)
|
||
|
|
panic("PropertyExists is unimplemented")
|
||
|
|
return &types.QueryExistsResponse{}, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// ResolveIdentifier implements types.QueryServer.
|
||
|
|
func (k Querier) ResolveIdentifier(goCtx context.Context, req *types.QueryResolveRequest) (*types.QueryResolveResponse, error) {
|
||
|
|
// ctx := sdk.UnwrapSDKContext(goCtx)
|
||
|
|
panic("ResolveIdentifier is unimplemented")
|
||
|
|
return &types.QueryResolveResponse{}, nil
|
||
|
|
}
|