Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) AddAdminKey(project *types.Project, adminKey string, vrfpk string)
- func (k Keeper) AddDeveloperKey(ctx sdk.Context, developerKey string, project *types.Project, ...) error
- func (k Keeper) AddKeysToProject(ctx sdk.Context, projectID string, adminKey string, ...) error
- func (k Keeper) BeginBlock(ctx sdk.Context)
- func (k Keeper) ChargeComputeUnitsToProject(ctx sdk.Context, project types.Project, cu uint64) (err error)
- func (k Keeper) CreateAdminProject(ctx sdk.Context, subscriptionAddress string, plan plantypes.Plan, vrfpk string) error
- func (k Keeper) CreateProject(ctx sdk.Context, subscriptionAddress string, projectData types.ProjectData, ...) error
- func (k Keeper) DeleteProject(ctx sdk.Context, projectID string) error
- func (k Keeper) Developer(goCtx context.Context, req *types.QueryDeveloperRequest) (*types.QueryDeveloperResponse, error)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetProjectDeveloperData(ctx sdk.Context, developerKey string, blockHeight uint64) (types.ProtoDeveloperData, error)
- func (k Keeper) GetProjectForBlock(ctx sdk.Context, projectID string, blockHeight uint64) (types.Project, error)
- func (k Keeper) GetProjectForDeveloper(ctx sdk.Context, developerKey string, blockHeight uint64) (proj types.Project, vrfpk string, errRet error)
- func (k Keeper) Info(goCtx context.Context, req *types.QueryInfoRequest) (*types.QueryInfoResponse, 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) RegisterKey(ctx sdk.Context, key types.ProjectKey, project *types.Project, ...) error
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetPolicy(ctx sdk.Context, projectIDs []string, policy *types.Policy, key string, ...) error
- func (k Keeper) SnapshotSubscriptionProjects(ctx sdk.Context, subscriptionAddr string)
- type Migrator
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 Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeKey, memKey sdk.StoreKey, ps paramtypes.Subspace, epochStorageKeeper types.EpochStorageKeeper, ) *Keeper
func (Keeper) AddAdminKey ¶ added in v0.10.0
func (Keeper) AddDeveloperKey ¶ added in v0.10.0
func (Keeper) AddKeysToProject ¶
func (Keeper) BeginBlock ¶ added in v0.10.0
func (Keeper) ChargeComputeUnitsToProject ¶
func (Keeper) CreateAdminProject ¶
func (k Keeper) CreateAdminProject(ctx sdk.Context, subscriptionAddress string, plan plantypes.Plan, vrfpk string) error
add a default project to a subscription, add the subscription key as
func (Keeper) CreateProject ¶
func (k Keeper) CreateProject(ctx sdk.Context, subscriptionAddress string, projectData types.ProjectData, plan plantypes.Plan) error
add a new project to the subscription
func (Keeper) DeleteProject ¶
func (Keeper) Developer ¶
func (k Keeper) Developer(goCtx context.Context, req *types.QueryDeveloperRequest) (*types.QueryDeveloperResponse, error)
func (Keeper) GetProjectDeveloperData ¶
func (Keeper) GetProjectForBlock ¶
func (Keeper) GetProjectForDeveloper ¶
func (Keeper) Info ¶
func (k Keeper) Info(goCtx context.Context, req *types.QueryInfoRequest) (*types.QueryInfoResponse, error)
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) RegisterKey ¶ added in v0.10.0
type Migrator ¶
type Migrator struct {
// contains filtered or unexported fields
}
func NewMigrator ¶
Click to show internal directories.
Click to hide internal directories.