-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
alias.go
29 lines (25 loc) · 1014 Bytes
/
alias.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package vesting
// DONTCOVER
// nolint
import (
"github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
)
var (
RegisterCodec = types.RegisterCodec
RegisterInterfaces = types.RegisterInterfaces
NewBaseVestingAccount = types.NewBaseVestingAccount
NewContinuousVestingAccountRaw = types.NewContinuousVestingAccountRaw
NewContinuousVestingAccount = types.NewContinuousVestingAccount
NewPeriodicVestingAccountRaw = types.NewPeriodicVestingAccountRaw
NewPeriodicVestingAccount = types.NewPeriodicVestingAccount
NewDelayedVestingAccountRaw = types.NewDelayedVestingAccountRaw
NewDelayedVestingAccount = types.NewDelayedVestingAccount
)
type (
BaseVestingAccount = types.BaseVestingAccount
ContinuousVestingAccount = types.ContinuousVestingAccount
PeriodicVestingAccount = types.PeriodicVestingAccount
DelayedVestingAccount = types.DelayedVestingAccount
Period = types.Period
Periods = types.Periods
)