You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A vesting account has the following additional fields:
type BaseVestingAccount struct {
*BaseAccount
OriginalVesting sdk.Coins `json:"original_vesting"` // coins in account upon initialization
DelegatedFree sdk.Coins `json:"delegated_free"` // coins that are vested and delegated
DelegatedVesting sdk.Coins `json:"delegated_vesting"` // coins that vesting and delegated
EndTime int64 `json:"end_time"` // when the coins become unlocked
}
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Is your feature request related to a problem? Please describe.
I'd like to know if any of my coins are vesting (locked) and the time they vest so I can choose those vesting coins over the regular ones to delegate.
Describe the solution you'd like
original_vesting
) or regular coins (coins
) for staking (delegation, redelegation) and governance.original_vesting
coins are locked and I can't transfer them untilend_time
dateDescribe alternatives you've considered
original_vesting
)original_vesting
)BaseVestingAccount
A vesting account has the following additional fields:
ContinuousVestingAccount
Same as the
BaseVestingAccount
, but it additionally has a start_time forwhen the coins start to vest
:AC:
The text was updated successfully, but these errors were encountered: