mango-v4/programs/mango-v4/src/state/token_bank.rs

88 lines
3.1 KiB
Rust
Raw Normal View History

2022-02-22 04:31:18 -08:00
use anchor_lang::prelude::*;
use fixed::types::I80F48;
use super::{IndexedPosition, TokenIndex};
2022-02-23 01:15:33 -08:00
2022-02-22 04:31:18 -08:00
#[account(zero_copy)]
pub struct TokenBank {
2022-02-22 05:23:13 -08:00
/// the index used to scale the value of an IndexedPosition
2022-02-23 01:09:01 -08:00
/// TODO: should always be >= 0, add checks?
2022-02-22 05:23:13 -08:00
pub deposit_index: I80F48,
pub borrow_index: I80F48,
2022-02-23 01:09:01 -08:00
/// total deposits/borrows, for utilization
pub indexed_total_deposits: I80F48,
pub indexed_total_borrows: I80F48,
2022-02-22 04:31:18 -08:00
// todo: multi-leg interest
// pub optimal_util: I80F48,
// pub optimal_rate: I80F48,
// pub max_rate: I80F48,
// This is a _lot_ of bytes (64) - seems unnecessary
// (could maybe store them in one byte each, as an informal U1F7?
// that could store values between 0-2 and converting to I80F48 would be a cheap expand+shift)
pub maint_asset_weight: I80F48,
pub init_asset_weight: I80F48,
pub maint_liab_weight: I80F48,
pub init_liab_weight: I80F48,
// Index into TokenInfo on the group
pub token_index: TokenIndex,
2022-02-22 05:23:13 -08:00
}
2022-02-22 04:31:18 -08:00
2022-02-22 05:23:13 -08:00
impl TokenBank {
2022-02-25 04:10:51 -08:00
pub fn native_total_deposits(&self) -> I80F48 {
self.deposit_index * self.indexed_total_deposits
}
2022-02-23 01:09:01 -08:00
pub fn deposit(&mut self, position: &mut IndexedPosition, native_amount: u64) {
let mut native_amount = I80F48::from_num(native_amount);
let native_position = position.native(self);
if native_position.is_negative() {
if -native_position >= native_amount {
// pay back borrows only
let indexed_change = native_amount / self.borrow_index;
self.indexed_total_borrows -= indexed_change;
position.indexed_value += indexed_change;
return;
}
// pay back all borrows first
self.indexed_total_borrows += position.indexed_value; // position.value is negative
position.indexed_value = I80F48::ZERO;
native_amount += native_position;
}
// add to deposits
let indexed_change = native_amount / self.deposit_index;
self.indexed_total_deposits += indexed_change;
position.indexed_value += indexed_change;
}
pub fn withdraw(&mut self, position: &mut IndexedPosition, native_amount: u64) {
let mut native_amount = I80F48::from_num(native_amount);
let native_position = position.native(self);
if native_position.is_positive() {
if native_position >= native_amount {
// withdraw deposits only
let indexed_change = native_amount / self.deposit_index;
self.indexed_total_deposits -= indexed_change;
position.indexed_value -= indexed_change;
return;
}
// withdraw all deposits first
self.indexed_total_deposits -= position.indexed_value;
position.indexed_value = I80F48::ZERO;
native_amount -= native_position;
}
// add to borrows
let indexed_change = native_amount / self.borrow_index;
self.indexed_total_borrows += indexed_change;
position.indexed_value -= indexed_change;
2022-02-22 05:23:13 -08:00
}
2022-02-22 04:31:18 -08:00
}