mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
32 lines
968 B
Go
32 lines
968 B
Go
package validatorvesting
|
|
|
|
// nolint
|
|
// DONTCOVER
|
|
import (
|
|
"github.com/cosmos/cosmos-sdk/x/validator-vesting/internal/keeper"
|
|
"github.com/cosmos/cosmos-sdk/x/validator-vesting/internal/types"
|
|
)
|
|
|
|
const (
|
|
ModuleName = types.ModuleName
|
|
StoreKey = types.StoreKey
|
|
)
|
|
|
|
var (
|
|
NewValidatorVestingAccountRaw = types.NewValidatorVestingAccountRaw
|
|
NewValidatorVestingAccount = types.NewValidatorVestingAccount
|
|
NewGenesisState = types.NewGenesisState
|
|
DefaultGenesisState = types.DefaultGenesisState
|
|
RegisterCodec = types.RegisterCodec
|
|
ValidatorVestingAccountPrefix = types.ValidatorVestingAccountPrefix
|
|
BlocktimeKey = types.BlocktimeKey
|
|
ValidatorVestingAccountKey = types.ValidatorVestingAccountKey
|
|
NewKeeper = keeper.NewKeeper
|
|
)
|
|
|
|
type (
|
|
GenesisState = types.GenesisState
|
|
Keeper = keeper.Keeper
|
|
ValidatorVestingAccount = types.ValidatorVestingAccount
|
|
)
|