forked from raydium-io/raydium-cp-swap
-
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.
* Fix: add client lib * Fix: fix for client mint decode error * Style: update notes
- Loading branch information
1 parent
7473797
commit bc1cae8
Showing
17 changed files
with
6,042 additions
and
446 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[workspace] | ||
members = [ | ||
"programs/*" | ||
"programs/*", | ||
"client", | ||
] | ||
|
||
[profile.release] | ||
|
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,31 @@ | ||
[package] | ||
name = "client" | ||
version = "0.1.0" | ||
rust-version = "1.75.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
anchor-client = "0.29.0" | ||
anchor-lang = "0.29.0" | ||
raydium-cp-swap = {path = "../programs/cp-swap", features = ["no-entrypoint", "client"]} | ||
solana-sdk = ">=1.14, <1.17" | ||
solana-client = ">=1.14, <1.17" | ||
solana-account-decoder = ">=1.14, <1.17" | ||
solana-transaction-status = ">=1.14, <1.17" | ||
spl-token = { version = "4.0.0", features=["no-entrypoint"] } | ||
spl-token-client = "0.7.0" | ||
spl-memo = "4.0.0" | ||
spl-associated-token-account = { version = "2.2.0", features = ["no-entrypoint"]} | ||
spl-token-2022 = { version = "0.9.0", features = ["no-entrypoint"]} | ||
clap = { version = "4.1.8", features = ["derive"] } | ||
anyhow = "1.0.32" | ||
rand = "0.7.3" | ||
hex = "0.4.3" | ||
configparser = "3.0.0" | ||
serde_json = { version = "1.0.78" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
arrayref = "0.3.7" | ||
bs58 = { version = "0.5.0"} | ||
bincode = { version = "1.3.3" } | ||
regex = "1" | ||
colorful = "0.2.2" |
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,312 @@ | ||
use anchor_client::{Client, Cluster}; | ||
use anyhow::Result; | ||
use solana_sdk::{instruction::Instruction, pubkey::Pubkey, system_program, sysvar}; | ||
|
||
use raydium_cp_swap::accounts as raydium_cp_accounts; | ||
use raydium_cp_swap::instruction as raydium_cp_instructions; | ||
use raydium_cp_swap::{ | ||
states::{AMM_CONFIG_SEED, OBSERVATION_SEED, POOL_LP_MINT_SEED, POOL_SEED, POOL_VAULT_SEED}, | ||
AUTH_SEED, | ||
}; | ||
use std::rc::Rc; | ||
|
||
use super::super::{read_keypair_file, ClientConfig}; | ||
|
||
pub fn initialize_pool_instr( | ||
config: &ClientConfig, | ||
token_0_mint: Pubkey, | ||
token_1_mint: Pubkey, | ||
token_0_program: Pubkey, | ||
token_1_program: Pubkey, | ||
user_token_0_account: Pubkey, | ||
user_token_1_account: Pubkey, | ||
create_pool_fee: Pubkey, | ||
init_amount_0: u64, | ||
init_amount_1: u64, | ||
open_time: u64, | ||
) -> Result<Vec<Instruction>> { | ||
let payer = read_keypair_file(&config.payer_path)?; | ||
let url = Cluster::Custom(config.http_url.clone(), config.ws_url.clone()); | ||
// Client. | ||
let client = Client::new(url, Rc::new(payer)); | ||
let program = client.program(config.raydium_cp_program)?; | ||
|
||
let amm_config_index = 0u16; | ||
let (amm_config_key, __bump) = Pubkey::find_program_address( | ||
&[AMM_CONFIG_SEED.as_bytes(), &amm_config_index.to_be_bytes()], | ||
&program.id(), | ||
); | ||
|
||
let (pool_account_key, __bump) = Pubkey::find_program_address( | ||
&[ | ||
POOL_SEED.as_bytes(), | ||
amm_config_key.to_bytes().as_ref(), | ||
token_0_mint.to_bytes().as_ref(), | ||
token_1_mint.to_bytes().as_ref(), | ||
], | ||
&program.id(), | ||
); | ||
let (authority, __bump) = Pubkey::find_program_address(&[AUTH_SEED.as_bytes()], &program.id()); | ||
let (token_0_vault, __bump) = Pubkey::find_program_address( | ||
&[ | ||
POOL_VAULT_SEED.as_bytes(), | ||
pool_account_key.to_bytes().as_ref(), | ||
token_0_mint.to_bytes().as_ref(), | ||
], | ||
&program.id(), | ||
); | ||
let (token_1_vault, __bump) = Pubkey::find_program_address( | ||
&[ | ||
POOL_VAULT_SEED.as_bytes(), | ||
pool_account_key.to_bytes().as_ref(), | ||
token_1_mint.to_bytes().as_ref(), | ||
], | ||
&program.id(), | ||
); | ||
let (lp_mint_key, __bump) = Pubkey::find_program_address( | ||
&[ | ||
POOL_LP_MINT_SEED.as_bytes(), | ||
pool_account_key.to_bytes().as_ref(), | ||
], | ||
&program.id(), | ||
); | ||
let (observation_key, __bump) = Pubkey::find_program_address( | ||
&[ | ||
OBSERVATION_SEED.as_bytes(), | ||
pool_account_key.to_bytes().as_ref(), | ||
], | ||
&program.id(), | ||
); | ||
|
||
let instructions = program | ||
.request() | ||
.accounts(raydium_cp_accounts::Initialize { | ||
creator: program.payer(), | ||
amm_config: amm_config_key, | ||
authority, | ||
pool_state: pool_account_key, | ||
token_0_mint, | ||
token_1_mint, | ||
lp_mint: lp_mint_key, | ||
creator_token_0: user_token_0_account, | ||
creator_token_1: user_token_1_account, | ||
creator_lp_token: spl_associated_token_account::get_associated_token_address( | ||
&program.payer(), | ||
&lp_mint_key, | ||
), | ||
token_0_vault, | ||
token_1_vault, | ||
create_pool_fee, | ||
observation_state: observation_key, | ||
token_program: spl_token::id(), | ||
token_0_program, | ||
token_1_program, | ||
associated_token_program: spl_associated_token_account::id(), | ||
system_program: system_program::id(), | ||
rent: sysvar::rent::id(), | ||
}) | ||
.args(raydium_cp_instructions::Initialize { | ||
init_amount_0, | ||
init_amount_1, | ||
open_time, | ||
}) | ||
.instructions()?; | ||
Ok(instructions) | ||
} | ||
|
||
pub fn deposit_instr( | ||
config: &ClientConfig, | ||
pool_id: Pubkey, | ||
token_0_mint: Pubkey, | ||
token_1_mint: Pubkey, | ||
token_lp_mint: Pubkey, | ||
token_0_vault: Pubkey, | ||
token_1_vault: Pubkey, | ||
user_token_0_account: Pubkey, | ||
user_token_1_account: Pubkey, | ||
user_token_lp_account: Pubkey, | ||
lp_token_amount: u64, | ||
maximum_token_0_amount: u64, | ||
maximum_token_1_amount: u64, | ||
) -> Result<Vec<Instruction>> { | ||
let payer = read_keypair_file(&config.payer_path)?; | ||
let url = Cluster::Custom(config.http_url.clone(), config.ws_url.clone()); | ||
// Client. | ||
let client = Client::new(url, Rc::new(payer)); | ||
let program = client.program(config.raydium_cp_program)?; | ||
|
||
let (authority, __bump) = Pubkey::find_program_address(&[AUTH_SEED.as_bytes()], &program.id()); | ||
|
||
let instructions = program | ||
.request() | ||
.accounts(raydium_cp_accounts::Deposit { | ||
owner: program.payer(), | ||
authority, | ||
pool_state: pool_id, | ||
owner_lp_token: user_token_lp_account, | ||
token_0_account: user_token_0_account, | ||
token_1_account: user_token_1_account, | ||
token_0_vault, | ||
token_1_vault, | ||
token_program: spl_token::id(), | ||
token_program_2022: spl_token_2022::id(), | ||
vault_0_mint: token_0_mint, | ||
vault_1_mint: token_1_mint, | ||
lp_mint: token_lp_mint, | ||
}) | ||
.args(raydium_cp_instructions::Deposit { | ||
lp_token_amount, | ||
maximum_token_0_amount, | ||
maximum_token_1_amount, | ||
}) | ||
.instructions()?; | ||
Ok(instructions) | ||
} | ||
|
||
pub fn withdraw_instr( | ||
config: &ClientConfig, | ||
pool_id: Pubkey, | ||
token_0_mint: Pubkey, | ||
token_1_mint: Pubkey, | ||
token_lp_mint: Pubkey, | ||
token_0_vault: Pubkey, | ||
token_1_vault: Pubkey, | ||
user_token_0_account: Pubkey, | ||
user_token_1_account: Pubkey, | ||
user_token_lp_account: Pubkey, | ||
lp_token_amount: u64, | ||
minimum_token_0_amount: u64, | ||
minimum_token_1_amount: u64, | ||
) -> Result<Vec<Instruction>> { | ||
let payer = read_keypair_file(&config.payer_path)?; | ||
let url = Cluster::Custom(config.http_url.clone(), config.ws_url.clone()); | ||
// Client. | ||
let client = Client::new(url, Rc::new(payer)); | ||
let program = client.program(config.raydium_cp_program)?; | ||
|
||
let (authority, __bump) = Pubkey::find_program_address(&[AUTH_SEED.as_bytes()], &program.id()); | ||
|
||
let instructions = program | ||
.request() | ||
.accounts(raydium_cp_accounts::Withdraw { | ||
owner: program.payer(), | ||
authority, | ||
pool_state: pool_id, | ||
owner_lp_token: user_token_lp_account, | ||
token_0_account: user_token_0_account, | ||
token_1_account: user_token_1_account, | ||
token_0_vault, | ||
token_1_vault, | ||
token_program: spl_token::id(), | ||
token_program_2022: spl_token_2022::id(), | ||
vault_0_mint: token_0_mint, | ||
vault_1_mint: token_1_mint, | ||
lp_mint: token_lp_mint, | ||
memo_program: spl_memo::id(), | ||
}) | ||
.args(raydium_cp_instructions::Withdraw { | ||
lp_token_amount, | ||
minimum_token_0_amount, | ||
minimum_token_1_amount, | ||
}) | ||
.instructions()?; | ||
Ok(instructions) | ||
} | ||
|
||
pub fn swap_base_input_instr( | ||
config: &ClientConfig, | ||
pool_id: Pubkey, | ||
amm_config: Pubkey, | ||
observation_account: Pubkey, | ||
input_token_account: Pubkey, | ||
output_token_account: Pubkey, | ||
input_vault: Pubkey, | ||
output_vault: Pubkey, | ||
input_token_mint: Pubkey, | ||
output_token_mint: Pubkey, | ||
input_token_program: Pubkey, | ||
output_token_program: Pubkey, | ||
amount_in: u64, | ||
minimum_amount_out: u64, | ||
) -> Result<Vec<Instruction>> { | ||
let payer = read_keypair_file(&config.payer_path)?; | ||
let url = Cluster::Custom(config.http_url.clone(), config.ws_url.clone()); | ||
// Client. | ||
let client = Client::new(url, Rc::new(payer)); | ||
let program = client.program(config.raydium_cp_program)?; | ||
|
||
let (authority, __bump) = Pubkey::find_program_address(&[AUTH_SEED.as_bytes()], &program.id()); | ||
|
||
let instructions = program | ||
.request() | ||
.accounts(raydium_cp_accounts::Swap { | ||
payer: program.payer(), | ||
authority, | ||
amm_config, | ||
pool_state: pool_id, | ||
input_token_account, | ||
output_token_account, | ||
input_vault, | ||
output_vault, | ||
input_token_program, | ||
output_token_program, | ||
input_token_mint, | ||
output_token_mint, | ||
observation_state: observation_account, | ||
}) | ||
.args(raydium_cp_instructions::SwapBaseInput { | ||
amount_in, | ||
minimum_amount_out, | ||
}) | ||
.instructions()?; | ||
Ok(instructions) | ||
} | ||
|
||
pub fn swap_base_output_instr( | ||
config: &ClientConfig, | ||
pool_id: Pubkey, | ||
amm_config: Pubkey, | ||
observation_account: Pubkey, | ||
input_token_account: Pubkey, | ||
output_token_account: Pubkey, | ||
input_vault: Pubkey, | ||
output_vault: Pubkey, | ||
input_token_mint: Pubkey, | ||
output_token_mint: Pubkey, | ||
input_token_program: Pubkey, | ||
output_token_program: Pubkey, | ||
max_amount_in: u64, | ||
amount_out: u64, | ||
) -> Result<Vec<Instruction>> { | ||
let payer = read_keypair_file(&config.payer_path)?; | ||
let url = Cluster::Custom(config.http_url.clone(), config.ws_url.clone()); | ||
// Client. | ||
let client = Client::new(url, Rc::new(payer)); | ||
let program = client.program(config.raydium_cp_program)?; | ||
|
||
let (authority, __bump) = Pubkey::find_program_address(&[AUTH_SEED.as_bytes()], &program.id()); | ||
|
||
let instructions = program | ||
.request() | ||
.accounts(raydium_cp_accounts::Swap { | ||
payer: program.payer(), | ||
authority, | ||
amm_config, | ||
pool_state: pool_id, | ||
input_token_account, | ||
output_token_account, | ||
input_vault, | ||
output_vault, | ||
input_token_program, | ||
output_token_program, | ||
input_token_mint, | ||
output_token_mint, | ||
observation_state: observation_account, | ||
}) | ||
.args(raydium_cp_instructions::SwapBaseOutput { | ||
max_amount_in, | ||
amount_out, | ||
}) | ||
.instructions()?; | ||
Ok(instructions) | ||
} |
Oops, something went wrong.