voter-stake-registry/programs/voter-stake-registry/src/state/deposit_entry.rs

449 lines
17 KiB
Rust
Raw Normal View History

use crate::error::*;
use crate::state::lockup::{Lockup, LockupKind};
use crate::state::voting_mint_config::VotingMintConfig;
use anchor_lang::prelude::*;
use std::cmp::min;
use std::convert::TryFrom;
/// Bookkeeping for a single deposit for a given mint and lockup schedule.
#[zero_copy]
#[derive(Default)]
pub struct DepositEntry {
// Locked state.
pub lockup: Lockup,
/// Amount in deposited, in native currency. Withdraws of vested tokens
/// directly reduce this amount.
///
/// This directly tracks the total amount added by the user. They may
/// never withdraw more than this amount.
pub amount_deposited_native: u64,
/// Amount in locked when the lockup began, in native currency.
///
/// Note that this is not adjusted for withdraws. It is possible for this
/// value to be bigger than amount_deposited_native after some vesting
/// and withdrawals.
///
/// This value is needed to compute the amount that vests each peroid,
/// which should not change due to withdraws.
pub amount_initially_locked_native: u64,
// True if the deposit entry is being used.
pub is_used: bool,
/// If the clawback authority is allowed to extract locked tokens.
pub allow_clawback: bool,
// Points to the VotingMintConfig this deposit uses.
pub voting_mint_config_idx: u8,
pub padding: [u8; 13],
}
const_assert!(std::mem::size_of::<DepositEntry>() == 32 + 2 * 8 + 3 + 13);
impl DepositEntry {
/// # Voting Power Caclulation
///
/// Returns the voting power for the deposit, giving locked tokens boosted
/// voting power that scales linearly with the lockup time.
///
/// For each cliff-locked token, the vote weight is:
///
/// ```
/// voting_power = deposit_vote_weight
/// + lockup_duration_factor * max_lockup_vote_weight
/// ```
///
/// with
/// deposit_vote_weight and max_lockup_vote_weight from the
/// VotingMintConfig
/// lockup_duration_factor = lockup_time_remaining / max_lockup_time
///
/// Linear vesting schedules can be thought of as a sequence of cliff-
/// locked tokens and have the matching voting weight.
///
/// To achieve this with the SPL governance program--which requires a "max
/// vote weight"--we attach what amounts to a scalar multiplier between 0
/// and 1 to normalize voting power. This multiplier is a function of
/// the lockup schedule. Here we will describe two, a one time
/// cliff and a linear vesting schedule unlocking daily.
///
/// ## Cliff Lockup
///
/// The cliff lockup allows one to lockup their tokens for a set period
/// of time, unlocking all at once on a given date.
///
/// The calculation for this is straightforward and is detailed above.
///
/// ### Decay
///
/// As time passes, the voting power decays until it's back to just
/// fixed_factor when the cliff has passed. This is important because at
/// each point in time the lockup should be equivalent to a new lockup
/// made for the remaining time period.
///
/// ## Linear Vesting Lockup
///
/// Daily/monthly linear vesting can be calculated with series sum, see
/// voting_power_linear_vesting() below.
///
pub fn voting_power(&self, voting_mint_config: &VotingMintConfig, curr_ts: i64) -> Result<u64> {
let deposit_vote_weight =
voting_mint_config.deposit_vote_weight(self.amount_deposited_native)?;
let max_locked_vote_weight =
voting_mint_config.max_lockup_vote_weight(self.amount_initially_locked_native)?;
deposit_vote_weight
.checked_add(self.voting_power_locked(
curr_ts,
max_locked_vote_weight,
voting_mint_config.lockup_saturation_secs,
)?)
.ok_or(Error::ErrorCode(ErrorCode::VoterWeightOverflow))
}
2021-12-07 00:26:47 -08:00
/// Vote power contribution from locked funds only.
pub fn voting_power_locked(
&self,
curr_ts: i64,
max_locked_vote_weight: u64,
lockup_saturation_secs: u64,
) -> Result<u64> {
if self.lockup.expired(curr_ts) || max_locked_vote_weight == 0 {
return Ok(0);
}
match self.lockup.kind {
LockupKind::None => Ok(0),
LockupKind::Daily => self.voting_power_linear_vesting(
curr_ts,
max_locked_vote_weight,
lockup_saturation_secs,
),
LockupKind::Monthly => self.voting_power_linear_vesting(
curr_ts,
max_locked_vote_weight,
lockup_saturation_secs,
),
LockupKind::Cliff => {
self.voting_power_cliff(curr_ts, max_locked_vote_weight, lockup_saturation_secs)
2021-12-07 00:26:47 -08:00
}
LockupKind::Constant => {
self.voting_power_cliff(curr_ts, max_locked_vote_weight, lockup_saturation_secs)
}
}
}
2021-12-07 00:26:47 -08:00
/// Vote power contribution from funds with linear vesting.
fn voting_power_cliff(
&self,
curr_ts: i64,
max_locked_vote_weight: u64,
lockup_saturation_secs: u64,
) -> Result<u64> {
let remaining = min(self.lockup.seconds_left(curr_ts), lockup_saturation_secs);
2021-12-07 00:26:47 -08:00
Ok(u64::try_from(
(max_locked_vote_weight as u128)
2021-12-07 00:26:47 -08:00
.checked_mul(remaining as u128)
.unwrap()
.checked_div(lockup_saturation_secs as u128)
2021-12-07 00:26:47 -08:00
.unwrap(),
)
.unwrap())
}
/// Vote power contribution from cliff-locked funds.
fn voting_power_linear_vesting(
&self,
curr_ts: i64,
max_locked_vote_weight: u64,
lockup_saturation_secs: u64,
2021-12-07 00:26:47 -08:00
) -> Result<u64> {
let periods_left = self.lockup.periods_left(curr_ts)?;
let periods_total = self.lockup.periods_total()?;
let period_secs = self.lockup.kind.period_secs() as u64;
if periods_left == 0 {
return Ok(0);
}
// This computes the voting power by considering the linear vesting as a
// sequence of vesting cliffs.
//
// For example, if there were 5 vesting periods, with 3 of them left
// (i.e. two have already vested and their tokens are no longer locked)
// we'd have (max_locked_vote_weight / 5) weight in each of them, and the
// voting power would be:
// (max_locked_vote_weight/5) * secs_left_for_cliff_1 / lockup_saturation_secs
// + (max_locked_vote_weight/5) * secs_left_for_cliff_2 / lockup_saturation_secs
// + (max_locked_vote_weight/5) * secs_left_for_cliff_3 / lockup_saturation_secs
//
// Or more simply:
// max_locked_vote_weight * (\sum_p secs_left_for_cliff_p) / (5 * lockup_saturation_secs)
// = max_locked_vote_weight * lockup_secs / denominator
//
// The value secs_left_for_cliff_p splits up as
// secs_left_for_cliff_p = min(
// secs_to_closest_cliff + (p-1) * period_secs,
// lockup_saturation_secs)
//
// We can split the sum into the part before saturation and the part after:
// Let q be the largest integer <= periods_left where
// secs_to_closest_cliff + (q-1) * period_secs < lockup_saturation_secs
// => q < (lockup_saturation_secs + period_secs - secs_to_closest_cliff) / period_secs
// and r be the integer where q + r = periods_left, then:
// lockup_secs := \sum_p secs_left_for_cliff_p
// = \sum_{p<=q} secs_left_for_cliff_p
// + r * lockup_saturation_secs
// = q * secs_to_closest_cliff
// + period_secs * \sum_0^q (p-1)
// + r * lockup_saturation_secs
//
// Where the sum can be expanded to:
//
// sum_full_periods := \sum_0^q (p-1)
// = q * (q - 1) / 2
//
2021-12-07 00:26:47 -08:00
// In the example above, periods_total was 5.
let denominator = periods_total.checked_mul(lockup_saturation_secs).unwrap();
let secs_to_closest_cliff = self
.lockup
.seconds_left(curr_ts)
.checked_sub(period_secs.checked_mul(periods_left - 1).unwrap())
.unwrap();
let lockup_saturation_periods =
(lockup_saturation_secs + period_secs - secs_to_closest_cliff) / period_secs;
let q = min(lockup_saturation_periods, periods_left);
let r = if q < periods_left {
periods_left - q
} else {
0
};
// Sum of the full periods left for all remaining vesting cliffs.
//
// Examples:
// - if there are 3 periods left, meaning three vesting cliffs in the future:
// one has only a fractional period left and contributes 0
// the next has one full period left
// and the next has two full periods left
// so sums to 3 = 3 * 2 / 2
// - if there's only one period left, the sum is 0
let sum_full_periods = q.checked_mul(q - 1).unwrap() / 2;
// Total number of seconds left over all periods_left remaining vesting cliffs
let lockup_secs_fractional = q.checked_mul(secs_to_closest_cliff).unwrap() as u128;
let lockup_secs_full = sum_full_periods.checked_mul(period_secs).unwrap() as u128;
let lockup_secs_saturated = r.checked_mul(lockup_saturation_secs).unwrap() as u128;
let lockup_secs = lockup_secs_fractional + lockup_secs_full + lockup_secs_saturated;
Ok(u64::try_from(
(max_locked_vote_weight as u128)
.checked_mul(lockup_secs)
.unwrap()
.checked_div(denominator as u128)
.unwrap(),
)
.unwrap())
}
/// Returns the amount of unlocked tokens for this deposit--in native units
/// of the original token amount (not scaled by the exchange rate).
pub fn vested(&self, curr_ts: i64) -> Result<u64> {
if self.lockup.expired(curr_ts) {
return Ok(self.amount_initially_locked_native);
}
match self.lockup.kind {
LockupKind::None => Ok(self.amount_initially_locked_native),
LockupKind::Daily => self.vested_linearly(curr_ts),
LockupKind::Monthly => self.vested_linearly(curr_ts),
LockupKind::Cliff => Ok(0),
LockupKind::Constant => Ok(0),
}
}
fn vested_linearly(&self, curr_ts: i64) -> Result<u64> {
let period_current = self.lockup.period_current(curr_ts)?;
let periods_total = self.lockup.periods_total()?;
if period_current == 0 {
return Ok(0);
}
if period_current >= periods_total {
return Ok(self.amount_initially_locked_native);
}
let vested = self
.amount_initially_locked_native
.checked_mul(period_current)
.unwrap()
.checked_div(periods_total)
.unwrap();
Ok(vested)
}
/// Returns native tokens still locked.
#[inline(always)]
pub fn amount_locked(&self, curr_ts: i64) -> u64 {
self.amount_initially_locked_native
.checked_sub(self.vested(curr_ts).unwrap())
.unwrap()
}
/// Returns the amount that may be withdrawn given current vesting
/// and previous withdraws.
#[inline(always)]
pub fn amount_withdrawable(&self, curr_ts: i64) -> u64 {
self.amount_deposited_native
.checked_sub(self.amount_locked(curr_ts))
.unwrap()
}
/// Adjusts the deposit and remaining lockup periods such that
/// no parts of amount_initially_locked_native have vested.
///
/// That makes it easier to deal with changes to the locked
/// amount because amount_initially_locked_native represents
/// exactly the amount that is locked.
///
/// Example:
/// If 30 tokens are locked up over 3 months, vesting each month,
/// then after month 2:
/// amount_initially_locked_native = 30
/// amount_deposited_native = 30
/// vested() = 20
/// period_current() = 2
/// periods_total() = 3
/// And after this function was called:
/// amount_initially_locked_native = 10
/// amount_deposited_native = 30
/// vested() = 0
/// period_current() = 0
/// periods_total() = 1
pub fn resolve_vesting(&mut self, curr_ts: i64) -> Result<()> {
let vested_amount = self.vested(curr_ts)?;
require!(
vested_amount <= self.amount_initially_locked_native,
InternalProgramError
);
self.amount_initially_locked_native -= vested_amount;
self.lockup.remove_past_periods(curr_ts)?;
require!(self.vested(curr_ts)? == 0, InternalProgramError);
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::LockupKind::Daily;
use std::str::FromStr;
#[test]
pub fn resolve_vesting() -> Result<()> {
let mut deposit = DepositEntry {
amount_deposited_native: 35,
amount_initially_locked_native: 30,
lockup: Lockup::new_from_periods(LockupKind::Monthly, 1000, 3).unwrap(),
is_used: true,
allow_clawback: false,
voting_mint_config_idx: 0,
padding: [0; 13],
};
let initial_deposit = deposit.clone();
let month = deposit.lockup.kind.period_secs() as i64;
// function to avoid unaligned references when used with assert!()
let amount_initially_locked =
|deposit: &DepositEntry| deposit.amount_initially_locked_native;
let mut time = 1001;
assert_eq!(deposit.vested(time).unwrap(), 0);
assert_eq!(deposit.amount_withdrawable(time), 5);
deposit.resolve_vesting(time).unwrap(); // no effect
assert_eq!(deposit.vested(time).unwrap(), 0);
assert_eq!(deposit.amount_withdrawable(time), 5);
assert_eq!(
deposit.lockup.seconds_left(time),
initial_deposit.lockup.seconds_left(time)
);
assert_eq!(deposit.lockup.period_current(time).unwrap(), 0);
assert_eq!(deposit.lockup.periods_total().unwrap(), 3);
assert_eq!(amount_initially_locked(&deposit), 30);
time = 1001 + month;
assert_eq!(deposit.vested(time).unwrap(), 10);
assert_eq!(deposit.lockup.period_current(time).unwrap(), 1);
assert_eq!(deposit.lockup.periods_total().unwrap(), 3);
deposit.resolve_vesting(time).unwrap();
assert_eq!(deposit.vested(time).unwrap(), 0);
assert_eq!(deposit.amount_withdrawable(time), 15);
assert_eq!(
deposit.lockup.seconds_left(time),
initial_deposit.lockup.seconds_left(time)
);
assert_eq!(deposit.lockup.period_current(time).unwrap(), 0);
assert_eq!(deposit.lockup.periods_total().unwrap(), 2);
assert_eq!(amount_initially_locked(&deposit), 20);
time = 1001 + 3 * month;
assert_eq!(deposit.vested(time).unwrap(), 20);
assert_eq!(deposit.lockup.period_current(time).unwrap(), 2);
assert_eq!(deposit.lockup.periods_total().unwrap(), 2);
deposit.resolve_vesting(time).unwrap();
assert_eq!(deposit.vested(time).unwrap(), 0);
assert_eq!(deposit.amount_withdrawable(time), 35);
assert_eq!(
deposit.lockup.seconds_left(time),
initial_deposit.lockup.seconds_left(time)
);
assert_eq!(deposit.lockup.period_current(time).unwrap(), 0);
assert_eq!(deposit.lockup.periods_total().unwrap(), 0);
assert_eq!(amount_initially_locked(&deposit), 0);
Ok(())
}
#[test]
pub fn adrian_test() -> Result<()> {
let mut deposit = DepositEntry {
amount_deposited_native: 10000,
amount_initially_locked_native: 10000,
lockup: Lockup {
start_ts: 1642682051,
end_ts: 1642682137,
kind: Daily,
padding: [0; 15],
},
is_used: true,
allow_clawback: false,
voting_mint_config_idx: 0,
padding: [0; 13],
};
let voting_mint_config = VotingMintConfig {
mint: Pubkey::from_str("6dqK6igiavXcUeajbmUBA8R3ZrzoRd4SbH1LLPZMe34f").unwrap(),
grant_authority: Pubkey::from_str("56CRgykvwrWcCyKY1L5UCc3NgCKz57ZE7AMJcP5tccCu")
.unwrap(),
deposit_scaled_factor: 1000000000,
lockup_scaled_factor: 1000000000,
lockup_saturation_secs: 157680000,
digit_shift: 0,
padding: [0; 31],
};
let deposit_vote_weight =
voting_mint_config.deposit_vote_weight(deposit.amount_deposited_native)?;
println!("deposit_vote_weight {:?}", deposit_vote_weight);
let max_locked_vote_weight =
voting_mint_config.max_lockup_vote_weight(deposit.amount_initially_locked_native)?;
println!("max_locked_vote_weight {:?}", max_locked_vote_weight);
let withdrawable = deposit.amount_withdrawable(16426933720);
println!("withdrawable {:?}", withdrawable);
let voting_power = deposit
.voting_power(&voting_mint_config, 16426933720 - 100000000)
.unwrap();
println!("voting_power {:?}", voting_power);
Ok(())
}
}