Associated Token Account IDL
ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knLSPL Associated Token Account program derives deterministic token account addresses from wallet and mint public keys. Eliminates the need for users to manually create token accounts before receiving tokens.
Instructions
Integration Examples
Use the Associated Token Account IDL in your application with these code examples for TypeScript, Rust, and Python.
import { Connection, PublicKey } from "@solana/web3.js";
import { Program, AnchorProvider, Idl } from "@coral-xyz/anchor";
// Load the Associated Token Account IDL
import idl from "./associated token account.json";
const PROGRAM_ID = new PublicKey("ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL");
// Set up the provider and program
const connection = new Connection("https://api.mainnet-beta.solana.com");
const provider = new AnchorProvider(connection, wallet, {
commitment: "confirmed",
});
const program = new Program(idl as Idl, provider);
// Fetch and decode an account
const accountData = await program.account.associated_Token_Account
.fetch(accountPublicKey);
console.log("Account data:", accountData);
// Build and send an instruction
const tx = await program.methods
.initialize(/* ...args */)
.accounts({
/* ...required accounts */
})
.rpc();
console.log("Transaction signature:", tx);IDL JSON Preview
{
"version": "1.1.2",
"name": "spl_associated_token_account",
"instructions": [
{
"name": "recoverNested",
"accounts": [
{
"name": "nestedAssociatedAccountAddress",
"isMut": true,
"isSigner": false
},
{
"name": "nestedTokenMintAddress",
"isMut": false,
"isSigner": false
},
{
"name": "destinationAssociatedAccountAddress",
"isMut": true,
"isSigner": false
},
{
"name": "ownerAssociatedAccountAddress",
"isMut": false,
"isSigner": false
},
{
"name": "ownerTokenMintAddress",
"isMut": false,
...Frequently Asked Questions
What is the Associated Token Account IDL?
The Associated Token Account IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Associated Token Account smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the Associated Token Account program. This IDL contains 1 instructions, 0 account types, 0 events, and 0 type definitions.
How do I use the Associated Token Account IDL in my project?
Download the JSON file and import it in your project. With TypeScript, use the @coral-xyz/anchor package to create a Program instance. In Rust, use anchor-client. For Python, use anchorpy. See the integration examples above for complete code snippets in all three languages.
What is the Associated Token Account program address on Solana?
The Associated Token Account program is deployed at address ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL on Solana mainnet. You can verify this on any Solana block explorer.
What version of the Associated Token Account IDL is this?
This is version 1.1.2 of the Associated Token Account IDL. IDL versions correspond to specific program deployments and may be updated as the protocol evolves. Always verify compatibility with the on-chain program version before integrating.
Related Solana IDLs
More Core / Standard interfaces and other protocols in the library.
Build on Solana with AllenHark
Interacting with Associated Token Account on-chain? Stream program accounts and transactions in real time with Yellowstone gRPC, query state over our staked Solana RPC, or land transactions with ShredStream. Automate trading against these protocols with Flare Bot Studio or the PumpFun Sniper.