Get desktop application:
View/edit binary Protocol Buffers messages
Msg defines the bank Msg service.
CreateVestingAccount defines a method that enables creating a vesting account.
MsgCreateVestingAccount defines a message that enables creating a vesting account.
end of vesting as unix time (in seconds).
MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
(message has no fields)
CreatePermanentLockedAccount defines a method that enables creating a permanent locked account. Since: cosmos-sdk 0.46
MsgCreatePermanentLockedAccount defines a message that enables creating a permanent locked account. Since: cosmos-sdk 0.46
MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type. Since: cosmos-sdk 0.46
(message has no fields)
CreatePeriodicVestingAccount defines a method that enables creating a periodic vesting account. Since: cosmos-sdk 0.46
MsgCreateVestingAccount defines a message that enables creating a vesting account. Since: cosmos-sdk 0.46
start of vesting as unix time (in seconds).
MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount response type. Since: cosmos-sdk 0.46
(message has no fields)
BaseVestingAccount implements the VestingAccount interface. It contains all the necessary fields needed for any vesting account implementation.
Used in:
, , ,Vesting end time, as unix timestamp (in seconds).
ContinuousVestingAccount implements the VestingAccount interface. It continuously vests by unlocking coins linearly with respect to time.
Vesting start time, as unix timestamp (in seconds).
DelayedVestingAccount implements the VestingAccount interface. It vests all coins after a specific time, but non prior. In other words, it keeps them locked until a specified time.
Period defines a length of time and amount of coins that will vest.
Used in:
,Period duration in seconds.
PeriodicVestingAccount implements the VestingAccount interface. It periodically vests by unlocking coins during each specified period.
PermanentLockedAccount implements the VestingAccount interface. It does not ever release coins, locking them indefinitely. Coins in this account can still be used for delegating and for governance votes even while locked. Since: cosmos-sdk 0.43