mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-08-24 22:29:22 +00:00
Merge branch 'main' into schouhy/add-block-context
This commit is contained in:
@@ -13,5 +13,7 @@ token_core.workspace = true
|
||||
token_program.workspace = true
|
||||
amm_core.workspace = true
|
||||
amm_program.workspace = true
|
||||
ata_core.workspace = true
|
||||
ata_program.workspace = true
|
||||
risc0-zkvm.workspace = true
|
||||
serde = { workspace = true, default-features = false }
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
use ata_core::Instruction;
|
||||
use nssa_core::program::{ProgramInput, ProgramOutput, read_nssa_inputs};
|
||||
|
||||
fn main() {
|
||||
let (
|
||||
ProgramInput {
|
||||
pre_states,
|
||||
instruction,
|
||||
},
|
||||
instruction_words,
|
||||
) = read_nssa_inputs::<Instruction>();
|
||||
|
||||
let pre_states_clone = pre_states.clone();
|
||||
|
||||
let (post_states, chained_calls) = match instruction {
|
||||
Instruction::Create { ata_program_id } => {
|
||||
let [owner, token_definition, ata_account] = pre_states
|
||||
.try_into()
|
||||
.expect("Create instruction requires exactly three accounts");
|
||||
ata_program::create::create_associated_token_account(
|
||||
owner,
|
||||
token_definition,
|
||||
ata_account,
|
||||
ata_program_id,
|
||||
)
|
||||
}
|
||||
Instruction::Transfer {
|
||||
ata_program_id,
|
||||
amount,
|
||||
} => {
|
||||
let [owner, sender_ata, recipient] = pre_states
|
||||
.try_into()
|
||||
.expect("Transfer instruction requires exactly three accounts");
|
||||
ata_program::transfer::transfer_from_associated_token_account(
|
||||
owner,
|
||||
sender_ata,
|
||||
recipient,
|
||||
ata_program_id,
|
||||
amount,
|
||||
)
|
||||
}
|
||||
Instruction::Burn {
|
||||
ata_program_id,
|
||||
amount,
|
||||
} => {
|
||||
let [owner, holder_ata, token_definition] = pre_states
|
||||
.try_into()
|
||||
.expect("Burn instruction requires exactly three accounts");
|
||||
ata_program::burn::burn_from_associated_token_account(
|
||||
owner,
|
||||
holder_ata,
|
||||
token_definition,
|
||||
ata_program_id,
|
||||
amount,
|
||||
)
|
||||
}
|
||||
};
|
||||
|
||||
ProgramOutput::new(instruction_words, pre_states_clone, post_states)
|
||||
.with_chained_calls(chained_calls)
|
||||
.write();
|
||||
}
|
||||
Reference in New Issue
Block a user