Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type ExpectedKeepers
- type Keeper
- func (k Keeper) AddExtraPayoutToEvent(ctx sdk.Context, sportEventUID string, amount sdk.Int) error
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)
- func (k Keeper) GetSportEvent(ctx sdk.Context, sportEventUID string) (val types.SportEvent, found bool)
- func (k Keeper) GetSportEventAll(ctx sdk.Context) (list []types.SportEvent, err error)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) RemoveSportEvent(ctx sdk.Context, sportEventUID string)
- func (k Keeper) ResolveSportEvents(ctx sdk.Context, resolutionEvents []types.ResolutionEvent) error
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetSportEvent(ctx sdk.Context, sportEvent types.SportEvent)
- func (k Keeper) SportEvent(c context.Context, req *types.QuerySportEventRequest) (*types.QuerySportEventResponse, error)
- func (k Keeper) SportEventAll(c context.Context, req *types.QuerySportEventListAllRequest) (*types.QuerySportEventListAllResponse, error)
- func (k Keeper) SportEventExists(ctx sdk.Context, sportEventUID string) bool
- func (k Keeper) SportEventListByUIDs(goCtx context.Context, req *types.QuerySportEventListByUIDsRequest) (*types.QuerySportEventListByUIDsResponse, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
Types ¶
type ExpectedKeepers ¶
ExpectedKeepers contains expected keepers parameter needed by NewKeeper
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
Keeper is the type for module properties
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeKey, memKey sdk.StoreKey, ps paramtypes.Subspace, expectedKeepers ExpectedKeepers, ) *Keeper
NewKeeper creates new keeper object
func (Keeper) AddExtraPayoutToEvent ¶
AddExtraPayoutToEvent update current total amount of payouts for a sport event
func (Keeper) GetSportEvent ¶
func (k Keeper) GetSportEvent(ctx sdk.Context, sportEventUID string) (val types.SportEvent, found bool)
GetSportEvent returns a specific sport event by its UID
func (Keeper) GetSportEventAll ¶
GetSportEventAll returns all sport events
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
Params returns the params of the module
func (Keeper) RemoveSportEvent ¶
RemoveSportEvent removes a sport event from the store
func (Keeper) ResolveSportEvents ¶
ResolveSportEvents updates a sport event with its resolution
func (Keeper) SetSportEvent ¶
func (k Keeper) SetSportEvent(ctx sdk.Context, sportEvent types.SportEvent)
SetSportEvent sets a specific sport event in the store
func (Keeper) SportEvent ¶
func (k Keeper) SportEvent(c context.Context, req *types.QuerySportEventRequest) (*types.QuerySportEventResponse, error)
SportEvent returns a specific sport events by its UID
func (Keeper) SportEventAll ¶
func (k Keeper) SportEventAll(c context.Context, req *types.QuerySportEventListAllRequest) (*types.QuerySportEventListAllResponse, error)
SportEventAll returns all the sport events
func (Keeper) SportEventExists ¶
SportEventExists checks if a specific sport event exists or not
func (Keeper) SportEventListByUIDs ¶
func (k Keeper) SportEventListByUIDs(goCtx context.Context, req *types.QuerySportEventListByUIDsRequest) (*types.QuerySportEventListByUIDsResponse, error)
SportEventListByUIDs return success events and failed events id only back to the caller