keeper

package
v1.2.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 2, 2024 License: Apache-2.0 Imports: 19 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewMsgServerImpl

func NewMsgServerImpl(keeper Keeper) types.MsgServer

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 storetypes.StoreKey,
	ps paramtypes.Subspace,
	epochstorageKeeper types.EpochStorageKeeper,
	fixationStoreKeeper types.FixationStoreKeeper,
) *Keeper

func (Keeper) AddKeysToProject

func (k Keeper) AddKeysToProject(ctx sdk.Context, projectID, adminKey string, projectKeys []types.ProjectKey) error

AddKeysToProject adds keys to a project. Keys are added immediately, retroactively effective at the start of this epoch. The adminKey must be valid (and specifically, not already marked for deletion by next epoch).

func (Keeper) ChargeComputeUnitsToProject

func (k Keeper) ChargeComputeUnitsToProject(ctx sdk.Context, project types.Project, blockHeight, cu uint64) (err error)

ChargeComputUnitsToProject charges use of CU to the project at a given block. Propgage the charge to subsequent versions (blocks) within the same snapshot.

func (Keeper) CreateAdminProject

func (k Keeper) CreateAdminProject(ctx sdk.Context, subAddr string, plan plantypes.Plan) error

CreateAdminProject creates the (default) admin project

func (Keeper) CreateProject

func (k Keeper) CreateProject(ctx sdk.Context, subAddr string, projectData types.ProjectData, plan plantypes.Plan) error

CreateProject adds a new project to a subscription (takes effect retroactively at the beginning of this epoch)

func (Keeper) DelKeysFromProject

func (k Keeper) DelKeysFromProject(ctx sdk.Context, projectID, adminKey string, projectKeys []types.ProjectKey) error

DelKeysFromProject delete keys from a project. Keys are marked for deleteion due by the beginning of next epoch. The adminKey must be valid (specifically, not already marked for deletion by next epoch).

func (Keeper) DeleteProject

func (k Keeper) DeleteProject(ctx sdk.Context, creator, projectID string) error

DeleteProject deletes a project from a subscription (takes effect at the beginning of next epoch)

func (Keeper) Developer

func (Keeper) ExportDevelopers

func (k Keeper) ExportDevelopers(ctx sdk.Context) fixationtypes.GenesisState

func (Keeper) ExportProjects

func (k Keeper) ExportProjects(ctx sdk.Context) fixationtypes.GenesisState

func (Keeper) GetAllProjectsForSubscription

func (k Keeper) GetAllProjectsForSubscription(ctx sdk.Context, subscription string) []string

GetAllProjectsForSubscription returns a list of all projectID for a subscription

func (Keeper) GetParams

func (k Keeper) GetParams(ctx sdk.Context) types.Params

GetParams get all parameters as types.Params

func (Keeper) GetProjectDeveloperData

func (k Keeper) GetProjectDeveloperData(ctx sdk.Context, developerKey string, blockHeight uint64) (types.ProtoDeveloperData, error)

func (Keeper) GetProjectForBlock

func (k Keeper) GetProjectForBlock(ctx sdk.Context, projectID string, block uint64) (types.Project, error)

GetProjectForBlock returns the version of a given project at a given block

func (Keeper) GetProjectForDeveloper

func (k Keeper) GetProjectForDeveloper(ctx sdk.Context, developerKey string, blockHeight uint64) (proj types.Project, errRet error)

func (Keeper) Info

func (Keeper) InitDevelopers

func (k Keeper) InitDevelopers(ctx sdk.Context, gs fixationtypes.GenesisState)

func (Keeper) InitProjects

func (k Keeper) InitProjects(ctx sdk.Context, gs fixationtypes.GenesisState)

func (Keeper) Logger

func (k Keeper) Logger(ctx sdk.Context) log.Logger

func (Keeper) Params

func (Keeper) SetParams

func (k Keeper) SetParams(ctx sdk.Context, params types.Params)

SetParams set the params

func (Keeper) SetProjectPolicy

func (k Keeper) SetProjectPolicy(ctx sdk.Context, projectIDs []string, policy *planstypes.Policy, key string, setPolicyEnum types.SetPolicyEnum) error

SetProjectPolicy applies new policies to project(s). The change will take effect in the beginning of the next epoch. The adminKey must be valid (and specifically, not already marked for deletion by next epoch).

func (Keeper) SnapshotSubscriptionProjects

func (k Keeper) SnapshotSubscriptionProjects(ctx sdk.Context, subscriptionAddr string, block uint64)

Snapshot all projects of a given subscription

type Migrator

type Migrator struct {
	// contains filtered or unexported fields
}

func NewMigrator

func NewMigrator(keeper Keeper) Migrator

func (Migrator) Migrate2to3

func (m Migrator) Migrate2to3(ctx sdk.Context) error

Migrate2to3 implements store migration from v2 to v3:

  • Trigger version upgrade of the projectsFS, develooperKeysFS fixation stores
  • Update keys contents

func (Migrator) Migrate3to4

func (m Migrator) Migrate3to4(ctx sdk.Context) error

Migrate3to4 implements store migration from v3 to v4:

  • Trigger version upgrade of the projectsFS, develooperKeysFS fixation-stores

func (Migrator) Migrate4to5

func (m Migrator) Migrate4to5(ctx sdk.Context) error

Migrate4to5 implements store migration from v4 to v5:

  • Trigger version upgrade of the projectsFS, developerKeysFS fixation stores
  • Update keys types (from list of types to bitmap)

func (Migrator) Migrate5to6

func (m Migrator) Migrate5to6(ctx sdk.Context) error

Migrate5to6 implements store migration from v5 to v6: -- trigger fixation migration, deleteat and live variables

func (Migrator) Migrate6to7

func (m Migrator) Migrate6to7(ctx sdk.Context) error

Migrate6to7 implements store migration from v6 to v7: -- trigger fixation migration (v4->v5), initialize IsLatest field

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL