What's "ATA" mean in Solana/Anchor?
Noticed this code comment in an Anchor test: What’s the ATA stand for there and why does it matter for DAO controlled authorities? >Solution : ATA is an associated token address. Associated token addresses can be derived from another public key using findProgramAddress. function getAssociatedTokenAddress( mint: PublicKey, owner: PublicKey, allowOwnerOffCurve = false, programId = TOKEN_PROGRAM_ID,… Read More What's "ATA" mean in Solana/Anchor?