-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4820f56
commit 0b27c44
Showing
1 changed file
with
155 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
use starknet::ContractAddress; | ||
use carmine_protocol::types::option_::OptionWithPremia; | ||
use carmine_protocol::types::pool::UserPoolInfo; | ||
|
||
#[starknet::interface] | ||
trait IAuxContract<TContractState> { | ||
fn get_all_non_expired_options_with_premia( | ||
self: @TContractState, lpt_addr: ContractAddress | ||
) -> Array<OptionWithPremia>; | ||
fn get_user_pool_info( | ||
self: @TContractState, user: ContractAddress, lpt_addr: ContractAddress | ||
) -> UserPoolInfo; | ||
} | ||
|
||
#[starknet::contract] | ||
mod AuxContract { | ||
use starknet::ContractAddress; | ||
use starknet::get_block_timestamp; | ||
use starknet::contract_address_const; | ||
|
||
use carmine_protocol::types::option_::OptionWithPremia; | ||
use carmine_protocol::types::option_::Option_Trait; | ||
use carmine_protocol::types::pool::UserPoolInfo; | ||
use carmine_protocol::types::pool::{PoolInfo, Pool}; | ||
use carmine_protocol::amm_interface::IAMM; | ||
use carmine_protocol::amm_interface::{IAMMDispatcher, IAMMDispatcherTrait}; | ||
use carmine_protocol::erc20_interface::{IERC20Dispatcher, IERC20DispatcherTrait}; | ||
use cubit::f128::types::fixed::{Fixed, FixedTrait}; | ||
|
||
use carmine_protocol::amm_core::constants::{ | ||
TOKEN_USDC_ADDRESS, TOKEN_ETH_ADDRESS, TOKEN_WBTC_ADDRESS, TOKEN_STRK_ADDRESS | ||
}; | ||
|
||
#[generate_trait] | ||
impl PoolImpl of PoolTrait { | ||
fn from_lpt_address(lpt_addr: ContractAddress, amm: IAMMDispatcher) -> Pool { | ||
amm.get_pool_definition_from_lptoken_address(lpt_addr) | ||
} | ||
|
||
fn lpt_addr(self: Pool, amm: IAMMDispatcher) -> ContractAddress { | ||
amm | ||
.get_lptoken_address_for_given_option( | ||
self.quote_token_address, self.base_token_address, self.option_type | ||
) | ||
} | ||
|
||
fn lpool_balance(self: Pool, amm: IAMMDispatcher) -> u256 { | ||
amm.get_lpool_balance(self.lpt_addr(amm)) | ||
} | ||
|
||
fn unlocked_capital(self: Pool, amm: IAMMDispatcher) -> u256 { | ||
amm.get_unlocked_capital(self.lpt_addr(amm)) | ||
} | ||
|
||
fn value_of_position(self: Pool, amm: IAMMDispatcher) -> Fixed { | ||
amm.get_value_of_pool_position(self.lpt_addr(amm)) | ||
} | ||
|
||
fn to_PoolInfo(self: Pool, amm: IAMMDispatcher) -> PoolInfo { | ||
PoolInfo { | ||
pool: self, | ||
lptoken_address: self.lpt_addr(amm), | ||
staked_capital: self.lpool_balance(amm), | ||
unlocked_capital: self.unlocked_capital(amm), | ||
value_of_pool_position: self.value_of_position(amm) | ||
} | ||
} | ||
} | ||
#[generate_trait] | ||
impl PoolInfoImpl of PoolInfoTrait { | ||
fn to_UserPoolInfo( | ||
self: PoolInfo, user_address: ContractAddress, amm: IAMMDispatcher | ||
) -> UserPoolInfo { | ||
let lptoken_balance = IERC20Dispatcher { contract_address: self.lptoken_address } | ||
.balanceOf(user_address); | ||
|
||
let stake_value = amm | ||
.get_underlying_for_lptokens(self.lptoken_address, lptoken_balance); | ||
|
||
UserPoolInfo { | ||
value_of_user_stake: stake_value, | ||
size_of_users_tokens: lptoken_balance, | ||
pool_info: self | ||
} | ||
} | ||
} | ||
|
||
|
||
#[storage] | ||
struct Storage { | ||
amm_address: ContractAddress | ||
} | ||
|
||
#[constructor] | ||
fn constructor(ref self: ContractState, amm_address: ContractAddress) { | ||
self.amm_address.write(amm_address); | ||
} | ||
|
||
#[external(v0)] | ||
impl AuxContract of super::IAuxContract<ContractState> { | ||
fn get_all_non_expired_options_with_premia( | ||
self: @ContractState, lpt_addr: ContractAddress | ||
) -> Array<OptionWithPremia> { | ||
let amm_address = self.amm_address.read(); | ||
let amm = IAMMDispatcher { contract_address: amm_address }; | ||
let pool = amm.get_pool_definition_from_lptoken_address(lpt_addr); | ||
let base: felt252 = pool.base_token_address.into(); | ||
let quote: felt252 = pool.quote_token_address.into(); | ||
|
||
let mut opt_size = 1000000000000000000; // 1 ETH -> 10**18 * 1 | ||
|
||
if quote == TOKEN_STRK_ADDRESS { | ||
// for ETH/STRK options | ||
opt_size = 1000000000000000; // 0.001 ETH -> 10**18 * 0.001 | ||
} | ||
|
||
if base == TOKEN_WBTC_ADDRESS { | ||
// for BTC/USDC options | ||
opt_size = 10000000; // 0.1 BTC -> 10**8 * 0.1 | ||
} | ||
|
||
let mut i: u32 = 0; | ||
let current_block_time = get_block_timestamp(); | ||
let mut arr = ArrayTrait::<OptionWithPremia>::new(); | ||
|
||
loop { | ||
let opt = amm.get_available_options(lpt_addr, i); | ||
i += 1; | ||
|
||
if opt.sum() == 0 { | ||
// This means we've reached the end, so break | ||
break; | ||
} | ||
|
||
if !(opt.maturity > current_block_time) { | ||
continue; | ||
} | ||
|
||
let (_, total_premia_with_fees) = amm.get_total_premia(opt, opt_size, false); | ||
|
||
arr.append(OptionWithPremia { option: opt, premia: total_premia_with_fees }); | ||
}; | ||
|
||
arr | ||
} | ||
fn get_user_pool_info( | ||
self: @ContractState, user: ContractAddress, lpt_addr: ContractAddress | ||
) -> UserPoolInfo { | ||
let amm_address = self.amm_address.read(); | ||
let amm = IAMMDispatcher { contract_address: amm_address }; | ||
let pool_info = PoolTrait::from_lpt_address(lpt_addr, amm).to_PoolInfo(amm); | ||
pool_info.to_UserPoolInfo(user, amm) | ||
} | ||
} | ||
} |