119 lines
3.4 KiB
Rust
119 lines
3.4 KiB
Rust
use crate::{
|
|
accounts::{
|
|
AuthoritySigner,
|
|
CustodySigner,
|
|
MigrationPool,
|
|
ShareMint,
|
|
ShareMintDerivationData,
|
|
ToCustodyTokenAccount,
|
|
ToCustodyTokenAccountDerivationData,
|
|
},
|
|
types::{
|
|
SplAccount,
|
|
SplMint,
|
|
},
|
|
MigrationError::WrongMint,
|
|
};
|
|
use borsh::{
|
|
BorshDeserialize,
|
|
BorshSerialize,
|
|
};
|
|
|
|
use crate::accounts::MigrationPoolDerivationData;
|
|
use solitaire::*;
|
|
|
|
#[derive(FromAccounts)]
|
|
pub struct AddLiquidity<'b> {
|
|
pub pool: Mut<MigrationPool<'b, { AccountState::Initialized }>>,
|
|
pub from_mint: Data<'b, SplMint, { AccountState::Initialized }>,
|
|
pub to_mint: Data<'b, SplMint, { AccountState::Initialized }>,
|
|
pub to_token_custody: Mut<ToCustodyTokenAccount<'b, { AccountState::Initialized }>>,
|
|
pub share_mint: Mut<ShareMint<'b, { AccountState::Initialized }>>,
|
|
|
|
pub to_lp_acc: Mut<Data<'b, SplAccount, { AccountState::Initialized }>>,
|
|
pub lp_share_acc: Mut<Data<'b, SplAccount, { AccountState::Initialized }>>,
|
|
pub custody_signer: CustodySigner<'b>,
|
|
pub authority_signer: AuthoritySigner<'b>,
|
|
}
|
|
|
|
#[derive(BorshDeserialize, BorshSerialize, Default)]
|
|
pub struct AddLiquidityData {
|
|
pub amount: u64,
|
|
}
|
|
|
|
pub fn add_liquidity(
|
|
ctx: &ExecutionContext,
|
|
accs: &mut AddLiquidity,
|
|
data: AddLiquidityData,
|
|
) -> Result<()> {
|
|
if *accs.from_mint.info().key != accs.pool.from {
|
|
return Err(WrongMint.into());
|
|
}
|
|
if *accs.to_mint.info().key != accs.pool.to {
|
|
return Err(WrongMint.into());
|
|
}
|
|
if accs.lp_share_acc.mint != *accs.share_mint.info().key {
|
|
return Err(WrongMint.into());
|
|
}
|
|
accs.to_token_custody.verify_derivation(
|
|
ctx.program_id,
|
|
&ToCustodyTokenAccountDerivationData {
|
|
pool: *accs.pool.info().key,
|
|
},
|
|
)?;
|
|
accs.share_mint.verify_derivation(
|
|
ctx.program_id,
|
|
&ShareMintDerivationData {
|
|
pool: *accs.pool.info().key,
|
|
},
|
|
)?;
|
|
accs.pool.verify_derivation(
|
|
ctx.program_id,
|
|
&MigrationPoolDerivationData {
|
|
from: accs.pool.from,
|
|
to: accs.pool.to,
|
|
},
|
|
)?;
|
|
|
|
let to_tokens_in = if accs.from_mint.decimals > accs.to_mint.decimals {
|
|
data.amount
|
|
} else {
|
|
data.amount - (data.amount % 10u64.pow((accs.to_mint.decimals - accs.from_mint.decimals) as u32))
|
|
};
|
|
|
|
// Transfer out-tokens in
|
|
let transfer_ix = spl_token::instruction::transfer(
|
|
&spl_token::id(),
|
|
accs.to_lp_acc.info().key,
|
|
accs.to_token_custody.info().key,
|
|
accs.authority_signer.key,
|
|
&[],
|
|
to_tokens_in,
|
|
)?;
|
|
invoke_seeded(&transfer_ix, ctx, &accs.authority_signer, None)?;
|
|
|
|
// The share amount should be equal to the amount of from tokens an lp would be getting
|
|
let share_amount = if accs.from_mint.decimals > accs.to_mint.decimals {
|
|
data.amount
|
|
.checked_mul(10u64.pow((accs.from_mint.decimals - accs.to_mint.decimals) as u32))
|
|
.unwrap()
|
|
} else {
|
|
data.amount
|
|
.checked_div(10u64.pow((accs.to_mint.decimals - accs.from_mint.decimals) as u32))
|
|
.unwrap()
|
|
};
|
|
|
|
// Mint LP shares
|
|
let mint_ix = spl_token::instruction::mint_to(
|
|
&spl_token::id(),
|
|
accs.share_mint.info().key,
|
|
accs.lp_share_acc.info().key,
|
|
accs.custody_signer.key,
|
|
&[],
|
|
share_amount,
|
|
)?;
|
|
invoke_seeded(&mint_ix, ctx, &accs.custody_signer, None)?;
|
|
|
|
Ok(())
|
|
}
|