chore: fmt + artifacts

This commit is contained in:
agureev
2026-08-23 09:35:41 +00:00
committed by Artem Gureev
parent 5a3edc3c10
commit cf36a7dec9
42 changed files with 37 additions and 54 deletions
+1 -1
View File
@@ -1,8 +1,8 @@
use authenticated_transfer_core::Instruction as AuthTransferInstruction;
use borsh::to_vec;
use lee_core::program::{
AccountPostState, ChainedCall, PdaSeed, ProgramId, ProgramInput, ProgramOutput, read_lee_inputs,
};
use borsh::to_vec;
type Instruction = (u128, ProgramId, u32, Option<PdaSeed>);
@@ -1,10 +1,10 @@
use borsh::to_vec;
use lee_core::{
Timestamp,
program::{
AccountPostState, ChainedCall, ProgramId, ProgramInput, ProgramOutput, read_lee_inputs,
},
};
use borsh::to_vec;
type Instruction = (ProgramId, Timestamp); // (clock_program_id, timestamp)
@@ -1,10 +1,10 @@
use borsh::to_vec;
use lee_core::{
account::AccountId,
program::{
AccountPostState, ChainedCall, ProgramId, ProgramInput, ProgramOutput, read_lee_inputs,
},
};
use borsh::to_vec;
type Instruction = (ProgramId, ProgramId, AccountId, u128);
// (faucet_program_id, vault_program_id, recipient_id, amount)
@@ -1,7 +1,7 @@
use borsh::to_vec;
use lee_core::program::{
AccountPostState, ChainedCall, PdaSeed, ProgramId, ProgramInput, ProgramOutput, read_lee_inputs,
};
use borsh::to_vec;
/// Proxy for spending from a private PDA via `auth_transfer`.
///