keeper

package
v1.1.0-rc0 Latest Latest
Warning

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

Go to latest
Published: Jan 3, 2023 License: Apache-2.0 Imports: 19 Imported by: 0

Documentation

Index

Constants

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

Variables

This section is empty.

Functions

func CalculateWithdrawable

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

func GetVestingAccountIDBytes

func GetVestingAccountIDBytes(id uint64) []byte

GetVestingAccountIDBytes returns the byte representation of the ID

func GetVestingAccountIDFromBytes

func GetVestingAccountIDFromBytes(bz []byte) uint64

GetVestingAccountIDFromBytes returns ID in uint64 format from a byte array

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 sdk.StoreKey,
	ps paramtypes.Subspace,
	bank types.BankKeeper,
	staking types.StakingKeeper,
	account types.AccountKeeper,
	distribution types.DistributionKeeper,
	gov types.GovKeeper,
) *Keeper

func (Keeper) AppendVestingAccount

func (k Keeper) AppendVestingAccount(
	ctx sdk.Context,
	vestingAccount types.VestingAccount,
) uint64

AppendVestingAccount 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 sdk.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) 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.AccountVestingPools)

GetAllAccountVestingPools returns all AccountVestingPools

func (Keeper) GetAllVestingAccount

func (k Keeper) GetAllVestingAccount(ctx sdk.Context) (list []types.VestingAccount)

GetAllVestingAccount 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) types.Params

GetParams get all parameters as types.Params

func (Keeper) GetVestingAccount

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

GetVestingAccount returns a vestingAccount from its id

func (Keeper) GetVestingAccountCount

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

GetVestingAccountCount 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) RemoveVestingAccount

func (k Keeper) RemoveVestingAccount(ctx sdk.Context, id uint64)

RemoveVestingAccount removes a vestingAccount from the store

func (Keeper) SendToNewVestingAccount

func (k Keeper) SendToNewVestingAccount(ctx sdk.Context, fromAddr string, toAddr string, vestingPoolName string, amount sdk.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, params types.Params)

SetParams set the params

func (Keeper) SetVestingAccount

func (k Keeper) SetVestingAccount(ctx sdk.Context, vestingAccount types.VestingAccount)

SetVestingAccount set a specific vestingAccount in the store

func (Keeper) SetVestingAccountCount

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

SetVestingAccountCount 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) VestingsSummary added in v1.1.0

func (Keeper) WithdrawAllAvailable

func (k Keeper) WithdrawAllAvailable(ctx sdk.Context, address 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) Migrator

NewMigrator returns a new Migrator.

func (Migrator) Migrate1to2 added in v1.1.0

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

Migrate1to2 migrates from version 1 to 2.

Jump to

Keyboard shortcuts

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