keeper

package
v2.0.0-rc6 Latest Latest
Warning

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

Go to latest
Published: Jun 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

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

func NonNegativeVestingPoolAmountsInvariant(k Keeper) sdk.Invariant

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

func RegisterInvariants

func RegisterInvariants(ir sdk.InvariantRegistry, k Keeper)

RegisterInvariants register cfedistribution invariants

func VestingPoolConsistentDataInvariant

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

func (Keeper) AddVestingPoolReservation

func (k Keeper) AddVestingPoolReservation(ctx sdk.Context, owner string, vestingPoolName string, reservationId uint64, amout math.Int) error

func (Keeper) AppendVestingAccountTrace

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

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

func (Keeper) Denom

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

Denom returns the denom param

func (Keeper) EmitNewVestingPeriodFromVestingPool

func (k Keeper) EmitNewVestingPeriodFromVestingPool(ctx sdk.Context, owner string, toAddress string, vestingPoolName string, amount math.Int, periodId uint64, restartVesting bool)

func (Keeper) GetAccountVestingPool

func (k Keeper) GetAccountVestingPool(ctx sdk.Context, accountAddress string, name string) (accountVestingPools types.AccountVestingPools, vestingPool *types.VestingPool, found bool)

func (Keeper) GetAccountVestingPools

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

func (Keeper) GetAllAccountVestingPools

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

func (Keeper) GetAllVestingAccountTrace

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

GetAllVestingAccountTrace returns all vestingAccount

func (Keeper) GetAllVestingTypes

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

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

GetVestingAccountById returns a vestingAccount from its id

func (Keeper) GetVestingAccountTraceById

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

GetVestingAccountTraceById returns a vestingAccount from its id

func (Keeper) GetVestingAccountTraceCount

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

GetVestingAccountTraceCount get the total number of vestingAccount

func (Keeper) Logger

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

func (Keeper) MustGetVestingPoolReservation

func (k Keeper) MustGetVestingPoolReservation(ctx sdk.Context, owner string, vestingPoolName string, reservationId uint64) (*types.VestingPoolReservation, error)

func (Keeper) MustGetVestingType

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

get the vesting type by name

func (Keeper) MustGetVestingTypeForVestingPool

func (k Keeper) MustGetVestingTypeForVestingPool(ctx sdk.Context, address string,
	vestingPoolName string) (*types.VestingType, error)

get the vesting type by name

func (Keeper) Params

func (Keeper) RemoveVestingAccountTrace

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

RemoveVestingAccountTrace removes a vestingAccount from the store

func (Keeper) RemoveVestingPoolReservation

func (k Keeper) RemoveVestingPoolReservation(ctx sdk.Context, owner string, vestingPoolName string, reservationId uint64, amout math.Int) error

func (Keeper) RemoveVestingType

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

get the vesting type by name

func (Keeper) SendReservedToNewVestingAccount

func (k Keeper) SendReservedToNewVestingAccount(ctx sdk.Context, owner string, toAddr string, vestingPoolName string, amount math.Int, reservationId uint64,
	free sdk.Dec, lockupPeriod time.Duration, vestingPeriod time.Duration) error

The SendReservedToNewVestingAccount function sends reserved tokens from the vesting pool to a new vesting account. The function validates whether the lockupPeriod and vestingPeriod are greater than or equal to the vesting periods specified in the vesting type. Additionally, the free (sdk.Dec) is validated, and if it exceeds the value specified in the vesting type, instead of returning an error, it is set to the free value specified in the vesting type.

func (Keeper) SendToNewVestingAccount

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

func (Keeper) SendToPeriodicContinuousVestingAccountFromModule

func (k Keeper) SendToPeriodicContinuousVestingAccountFromModule(ctx sdk.Context, moduleName string, userAddress string, amount sdk.Coins,
	free sdk.Dec, startTime int64, endTime int64) (periodId uint64, periodExists bool, err error)

func (Keeper) SetAccountVestingPools

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

func (Keeper) SetAccountVestingPoolsAndVestingAccountTrace

func (k Keeper) SetAccountVestingPoolsAndVestingAccountTrace(ctx sdk.Context, toAddr string, periodId uint64, periodExists bool, vestingPool *types.VestingPool)

func (Keeper) SetParams

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

SetParams sets the x/mint module parameters.

func (Keeper) SetVestingAccountTrace

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

SetVestingAccountTrace set a specific vestingAccount in the store

func (Keeper) SetVestingAccountTraceCount

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

SetVestingAccountTraceCount set the total number of vestingAccount

func (Keeper) SetVestingType

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

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

func (Keeper) WithdrawAllAvailable

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

type Migrator

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

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

func NewMigrator

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

NewMigrator returns a new Migrator.

func (Migrator) Migrate1to2

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

Migrate2to3 migrates from version 1 to 2.

func (Migrator) Migrate2to3

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

Migrate2to3 migrates from version 2 to 3.

type Summary

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

Jump to

Keyboard shortcuts

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