mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
23 lines
457 B
Go
23 lines
457 B
Go
|
// nolint
|
||
|
package validatorvesting
|
||
|
|
||
|
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 (
|
||
|
NewGenesisState = types.NewGenesisState
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
GenesisState = types.GenesisState
|
||
|
Keeper = keeper.Keeper
|
||
|
ValidatorVestingAccount = types.ValidatorVestingAccount
|
||
|
)
|