mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-03-27 04:33:13 +00:00
Introduce the ATA program, which derives deterministic per-token holding accounts from (owner, token_definition) via SHA256, eliminating the need to manually create and track holding account IDs. Program (programs/associated_token_account/): - Create, Transfer, and Burn instructions with PDA-based authorization - Deterministic address derivation: SHA256(owner || definition) → seed → AccountId - Idempotent Create (no-op if ATA already exists) Wallet CLI (`wallet ata`): - `address` — derive ATA address locally (no network call) - `create` — initialize an ATA on-chain - `send` — transfer tokens from owner's ATA to a recipient - `burn` — burn tokens from owner's ATA - `list` — query ATAs across multiple token definitions Usage: wallet deploy-program artifacts/program_methods/associated_token_account.bin wallet ata address --owner <ID> --token-definition <DEF_ID> wallet ata create --owner Public/<ID> --token-definition <DEF_ID> wallet ata send --from Public/<ID> --token-definition <DEF_ID> --to <RECIPIENT> --amount 100 wallet ata burn --holder Public/<ID> --token-definition <DEF_ID> --amount 50 wallet ata list --owner <ID> --token-definition <DEF1> <DEF2> Includes tutorial: docs/LEZ testnet v0.1 tutorials/associated-token-accounts.md
40 lines
1.3 KiB
Rust
40 lines
1.3 KiB
Rust
use nssa_core::{
|
|
account::AccountWithMetadata,
|
|
program::{AccountPostState, ChainedCall, ProgramId},
|
|
};
|
|
use token_core::TokenHolding;
|
|
|
|
pub fn transfer_from_associated_token_account(
|
|
owner: AccountWithMetadata,
|
|
sender_ata: AccountWithMetadata,
|
|
recipient: AccountWithMetadata,
|
|
ata_program_id: ProgramId,
|
|
amount: u128,
|
|
) -> (Vec<AccountPostState>, Vec<ChainedCall>) {
|
|
let token_program_id = sender_ata.account.program_owner;
|
|
assert!(owner.is_authorized, "Owner authorization is missing");
|
|
let definition_id = TokenHolding::try_from(&sender_ata.account.data)
|
|
.expect("Sender ATA must hold a valid token")
|
|
.definition_id();
|
|
let seed =
|
|
ata_core::verify_ata_and_get_seed(&sender_ata, &owner, definition_id, ata_program_id);
|
|
|
|
let post_states = vec![
|
|
AccountPostState::new(owner.account.clone()),
|
|
AccountPostState::new(sender_ata.account.clone()),
|
|
AccountPostState::new(recipient.account.clone()),
|
|
];
|
|
let mut sender_ata_auth = sender_ata.clone();
|
|
sender_ata_auth.is_authorized = true;
|
|
|
|
let chained_call = ChainedCall::new(
|
|
token_program_id,
|
|
vec![sender_ata_auth, recipient.clone()],
|
|
&token_core::Instruction::Transfer {
|
|
amount_to_transfer: amount,
|
|
},
|
|
)
|
|
.with_pda_seeds(vec![seed]);
|
|
(post_states, vec![chained_call])
|
|
}
|