2021-04-18 15:54:18 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package cosmos.vesting.v1beta1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "cosmos/base/v1beta1/coin.proto";
|
|
|
|
import "cosmos/auth/v1beta1/auth.proto";
|
|
|
|
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/auth/vesting/types";
|
|
|
|
|
|
|
|
// BaseVestingAccount implements the VestingAccount interface. It contains all
|
|
|
|
// the necessary fields needed for any vesting account implementation.
|
|
|
|
message BaseVestingAccount {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
|
|
|
|
cosmos.auth.v1beta1.BaseAccount base_account = 1 [(gogoproto.embed) = true];
|
|
|
|
repeated cosmos.base.v1beta1.Coin original_vesting = 2 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins",
|
|
|
|
(gogoproto.moretags) = "yaml:\"original_vesting\""
|
|
|
|
];
|
|
|
|
repeated cosmos.base.v1beta1.Coin delegated_free = 3 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins",
|
|
|
|
(gogoproto.moretags) = "yaml:\"delegated_free\""
|
|
|
|
];
|
|
|
|
repeated cosmos.base.v1beta1.Coin delegated_vesting = 4 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins",
|
|
|
|
(gogoproto.moretags) = "yaml:\"delegated_vesting\""
|
|
|
|
];
|
|
|
|
int64 end_time = 5 [(gogoproto.moretags) = "yaml:\"end_time\""];
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContinuousVestingAccount implements the VestingAccount interface. It
|
|
|
|
// continuously vests by unlocking coins linearly with respect to time.
|
|
|
|
message ContinuousVestingAccount {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
|
|
|
|
BaseVestingAccount base_vesting_account = 1 [(gogoproto.embed) = true];
|
|
|
|
int64 start_time = 2 [(gogoproto.moretags) = "yaml:\"start_time\""];
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
message DelayedVestingAccount {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
|
|
|
|
BaseVestingAccount base_vesting_account = 1 [(gogoproto.embed) = true];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Period defines a length of time and amount of coins that will vest.
|
|
|
|
message Period {
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
|
|
|
|
int64 length = 1;
|
|
|
|
repeated cosmos.base.v1beta1.Coin amount = 2
|
|
|
|
[(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"];
|
|
|
|
}
|
|
|
|
|
|
|
|
// PeriodicVestingAccount implements the VestingAccount interface. It
|
|
|
|
// periodically vests by unlocking coins during each specified period.
|
|
|
|
message PeriodicVestingAccount {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
|
|
|
|
BaseVestingAccount base_vesting_account = 1 [(gogoproto.embed) = true];
|
|
|
|
int64 start_time = 2 [(gogoproto.moretags) = "yaml:\"start_time\""];
|
|
|
|
repeated Period vesting_periods = 3 [(gogoproto.moretags) = "yaml:\"vesting_periods\"", (gogoproto.nullable) = false];
|
|
|
|
}
|
2021-08-23 13:15:55 +00:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
message PermanentLockedAccount {
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
|
|
|
|
BaseVestingAccount base_vesting_account = 1 [(gogoproto.embed) = true];
|
|
|
|
}
|