Release solana-streamer-sdk 1.5.10

This commit is contained in:
0xfnzero
2026-06-07 02:00:14 +08:00
parent 28ffd0f566
commit 89bf36148f
8 changed files with 115 additions and 13 deletions
@@ -425,6 +425,7 @@ pub fn merge(instruction_event: &mut DexEvent, cpi_log_event: DexEvent) {
e.user_base_token_account = cpie.user_base_token_account;
e.user_quote_token_account = cpie.user_quote_token_account;
e.coin_creator = cpie.coin_creator;
e.is_mayhem_mode = cpie.is_mayhem_mode;
}
_ => {}
},
@@ -161,6 +161,7 @@ pub struct PumpSwapCreatePoolEvent {
pub user_base_token_account: Pubkey,
pub user_quote_token_account: Pubkey,
pub coin_creator: Pubkey,
pub is_mayhem_mode: bool,
#[borsh(skip)]
pub user_pool_token_account: Pubkey,
#[borsh(skip)]
@@ -169,7 +170,7 @@ pub struct PumpSwapCreatePoolEvent {
pub pool_quote_token_account: Pubkey,
}
pub const PUMP_SWAP_CREATE_POOL_EVENT_LOG_SIZE: usize = 325;
pub const PUMP_SWAP_CREATE_POOL_EVENT_LOG_SIZE: usize = 326;
/// 存款事件
#[derive(Clone, Debug, Default, PartialEq, Eq, Serialize, Deserialize, BorshDeserialize)]