chore: bump to v0.3.1

- Update solana-streamer-sdk to 0.2.1
- Fix missing PDA accounts in PumpFun sell instruction
This commit is contained in:
ysq
2025-08-11 22:03:26 +08:00
parent 7dd77838d6
commit 1c43a519b2
4 changed files with 8 additions and 6 deletions
+2
View File
@@ -228,6 +228,8 @@ pub fn sell(
AccountMeta::new_readonly(constants::pumpfun::accounts::TOKEN_PROGRAM, false),
AccountMeta::new_readonly(constants::pumpfun::accounts::EVENT_AUTHORITY, false),
AccountMeta::new_readonly(constants::pumpfun::accounts::PUMPFUN, false),
AccountMeta::new(get_global_volume_accumulator_pda().unwrap(), false),
AccountMeta::new(get_user_volume_accumulator_pda(&payer.pubkey()).unwrap(), false),
],
)
}