update executor to support token2022

This commit is contained in:
Maximilian Schneider 2024-11-06 20:21:35 +01:00
parent f5acba8db2
commit 805218e86d
3 changed files with 24 additions and 4 deletions

1
Cargo.lock generated
View File

@ -691,6 +691,7 @@ dependencies = [
"solana-sdk",
"solana-security-txt",
"spl-token 3.5.0",
"spl-token-2022 1.0.0",
"test-case",
"tokio",
]

View File

@ -10,6 +10,7 @@ test-bpf = ["no-entrypoint"]
[dependencies]
solana-program = "1.17"
spl-token = { version = "3.5.0", features = ["no-entrypoint"] }
spl-token-2022 = { version = "1.0.0", features = ["no-entrypoint"] }
bytemuck = "1.16.1"
solana-security-txt = "1.1.1"
default-env = "0.1.1"

View File

@ -75,11 +75,29 @@ pub fn process_instruction(
}
fn get_balance(account: &AccountInfo) -> Result<u64, ProgramError> {
let token = spl_token::state::Account::unpack(&account.try_borrow_data()?)?;
Ok(token.amount)
match account.owner {
&spl_token::ID => {
let token = spl_token::state::Account::unpack(&account.try_borrow_data()?)?;
Ok(token.amount)
}
&spl_token_2022::ID => {
let token = spl_token_2022::state::Account::unpack(&account.try_borrow_data()?)?;
Ok(token.amount)
}
_ => Err(ProgramError::IllegalOwner),
}
}
fn get_mint(account: &AccountInfo) -> Result<Pubkey, ProgramError> {
let token = spl_token::state::Account::unpack(&account.try_borrow_data()?)?;
Ok(token.mint)
match account.owner {
&spl_token::ID => {
let token = spl_token::state::Account::unpack(&account.try_borrow_data()?)?;
Ok(token.mint)
}
&spl_token_2022::ID => {
let token: spl_token_2022::state::Account = spl_token_2022::state::Account::unpack(&account.try_borrow_data()?)?;
Ok(token.mint)
}
_ => Err(ProgramError::IllegalOwner),
}
}