keeper

package
v1.2.0-alpha.7 Latest Latest
Warning

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

Go to latest
Published: Mar 27, 2023 License: Apache-2.0 Imports: 25 Imported by: 0

Documentation

Index

Constants

View Source
const NONNEGATIVE_AMOUNTS_INVARIANT = "nonnegative vesting pool amounts"
View Source
const VestingAddress = "vestingAddr: "

Variables

This section is empty.

Functions

func CalculateWithdrawable

func CalculateWithdrawable(current time.Time, vestingPool types.VestingPool) math.Int

func ModuleAccountInvariant added in v1.1.0

func ModuleAccountInvariant(k Keeper) sdk.Invariant

ModuleAccountInvariant checks that sum on locked in vesting pools equals to module account balance

func NewMsgServerImpl

func NewMsgServerImpl(keeper Keeper) types.MsgServer

NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.

func NonNegativeVestingPoolAmountsInvariant added in v1.1.0

func NonNegativeVestingPoolAmountsInvariant(k Keeper) sdk.Invariant

NonNegativeCoinStateInvariant checks that any locked coins amount in vesting pools is non negative

func RegisterInvariants added in v1.1.0

func RegisterInvariants(ir sdk.InvariantRegistry, k Keeper)

RegisterInvariants register cfedistribution invariants

func VestingPoolConsistentDataInvariant added in v1.1.0

func VestingPoolConsistentDataInvariant(k Keeper) sdk.Invariant

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,
	bank types.BankKeeper,
	staking types.StakingKeeper,
	account types.AccountKeeper,
	distribution types.DistributionKeeper,
	gov types.GovKeeper,
	authority string,
) *Keeper

func (Keeper) AppendVestingAccountTrace added in v1.2.0

func (k Keeper) AppendVestingAccountTrace(
	ctx sdk.Context,
	vestingAccountTrace types.VestingAccountTrace,
) uint64

AppendVestingAccountTrace appends a vestingAccount in the store with a new id and update the count

func (Keeper) CreateVestingAccount

func (k Keeper) CreateVestingAccount(ctx sdk.Context, fromAddress string, toAddress string,
	amount sdk.Coins, startTime int64, endTime int64) error

func (Keeper) CreateVestingPool

func (k Keeper) CreateVestingPool(ctx sdk.Context, addr string, name string, amount math.Int, duration time.Duration, vestingType string) error

func (Keeper) DeleteAccountVestingPools added in v1.1.0

func (k Keeper) DeleteAccountVestingPools(ctx sdk.Context, accountAddress string) (accountVestingPools types.AccountVestingPools)

get the vesting types

func (Keeper) Denom

func (k Keeper) Denom(ctx sdk.Context) (res string)

Denom returns the denom param

func (Keeper) GenesisVestingsSummary added in v1.2.0

func (Keeper) GetAccountVestingPools added in v1.1.0

func (k Keeper) GetAccountVestingPools(ctx sdk.Context, accountAddress string) (accountVestingPools types.AccountVestingPools, found bool)

get the vesting types

func (Keeper) GetAllAccountVestingPools added in v1.1.0

func (k Keeper) GetAllAccountVestingPools(ctx sdk.Context) (list types.AccountVestingPoolsList)

GetAllAccountVestingPools returns all AccountVestingPools

func (Keeper) GetAllVestingAccountTrace added in v1.2.0

func (k Keeper) GetAllVestingAccountTrace(ctx sdk.Context) (list []types.VestingAccountTrace)

GetAllVestingAccountTrace returns all vestingAccount

func (Keeper) GetAllVestingTypes added in v1.1.0

func (k Keeper) GetAllVestingTypes(ctx sdk.Context) (vestingTypes types.VestingTypes)

GetAllVestingTypes returns all VestingTypes

func (Keeper) GetParams

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

GetParams returns the current x/mint module parameters.

func (Keeper) GetVestingAccountTrace added in v1.2.0

func (k Keeper) GetVestingAccountTrace(ctx sdk.Context, address string) (val types.VestingAccountTrace, found bool)

GetVestingAccountById returns a vestingAccount from its id

func (Keeper) GetVestingAccountTraceById added in v1.2.0

func (k Keeper) GetVestingAccountTraceById(ctx sdk.Context, id uint64) (val types.VestingAccountTrace, found bool)

GetVestingAccountTraceById returns a vestingAccount from its id

func (Keeper) GetVestingAccountTraceCount added in v1.2.0

func (k Keeper) GetVestingAccountTraceCount(ctx sdk.Context) uint64

GetVestingAccountTraceCount get the total number of vestingAccount

func (Keeper) GetVestingType

func (k Keeper) GetVestingType(ctx sdk.Context, name string) (vestingType types.VestingType, err error)

get the vesting type by name

func (Keeper) Logger

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

func (Keeper) Params

func (Keeper) RemoveVestingAccountTrace added in v1.2.0

func (k Keeper) RemoveVestingAccountTrace(ctx sdk.Context, address string)

RemoveVestingAccountTrace removes a vestingAccount from the store

func (Keeper) RemoveVestingType added in v1.2.0

func (k Keeper) RemoveVestingType(ctx sdk.Context, name string)

get the vesting type by name

func (Keeper) SendToNewVestingAccount

func (k Keeper) SendToNewVestingAccount(ctx sdk.Context, owner string, toAddr string, vestingPoolName string, amount math.Int, restartVesting bool) (withdrawn sdk.Coin, returnedError error)

func (Keeper) SetAccountVestingPools added in v1.1.0

func (k Keeper) SetAccountVestingPools(ctx sdk.Context, accountVestingPools types.AccountVestingPools)

set the vesting types

func (Keeper) SetParams

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

SetParams sets the x/mint module parameters.

func (Keeper) SetVestingAccountTrace added in v1.2.0

func (k Keeper) SetVestingAccountTrace(ctx sdk.Context, vestingAccountTrace types.VestingAccountTrace)

SetVestingAccountTrace set a specific vestingAccount in the store

func (Keeper) SetVestingAccountTraceCount added in v1.2.0

func (k Keeper) SetVestingAccountTraceCount(ctx sdk.Context, count uint64)

SetVestingAccountTraceCount set the total number of vestingAccount

func (Keeper) SetVestingType added in v1.1.0

func (k Keeper) SetVestingType(ctx sdk.Context, vestingType types.VestingType)

set the vesting type

func (Keeper) SetVestingTypes

func (k Keeper) SetVestingTypes(ctx sdk.Context, vestingTypes types.VestingTypes)

set the vesting types

func (Keeper) UnlockUnbondedContinuousVestingAccountCoins added in v1.2.0

func (k Keeper) UnlockUnbondedContinuousVestingAccountCoins(ctx sdk.Context, ownerAddress sdk.AccAddress, amountToUnlock sdk.Coins) (*vestingtypes.ContinuousVestingAccount, error)

func (Keeper) VestingsSummary added in v1.1.0

func (Keeper) WithdrawAllAvailable

func (k Keeper) WithdrawAllAvailable(ctx sdk.Context, owner string) (withdrawn sdk.Coin, returnedError error)

type Migrator added in v1.1.0

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

Migrator is a struct for handling in-place store migrations.

func NewMigrator added in v1.1.0

func NewMigrator(keeper Keeper, legacySubspace exported.Subspace) Migrator

NewMigrator returns a new Migrator.

func (Migrator) Migrate1to2 added in v1.1.0

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

Migrate2to3 migrates from version 1 to 2.

func (Migrator) Migrate2to3 added in v1.2.0

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

Migrate2to3 migrates from version 2 to 3.

type Summary added in v1.2.0

type Summary struct {
	VestingAllAmount        sdk.Int
	VestingInPoolsAmount    sdk.Int
	VestingInAccountsAmount sdk.Int
	DelegatedVestingAmount  sdk.Int
}

Jump to

Keyboard shortcuts

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