SPL Memo IDL

splv3.0.1Core / Standard
Program Address
MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr
On-chain

SPL Memo program attaches arbitrary text data to Solana transactions. Used for transaction labeling, compliance notes, and on-chain messaging in payments and DeFi operations.

0
Instructions
0
Accounts
0
Events
0
Types

Integration Examples

Use the SPL Memo 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 SPL Memo IDL
import idl from "./spl memo.json";

const PROGRAM_ID = new PublicKey("MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr");

// 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.sPL_Memo
  .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

spl memo.json
{
  "version": "3.0.1",
  "name": "spl_memo",
  "instructions": [],
  "metadata": {
    "instruction_selector_type": "single-instruction"
  }
}
...

Frequently Asked Questions

What is the SPL Memo IDL?

The SPL Memo IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the SPL Memo smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the SPL Memo program. This IDL contains 0 instructions, 0 account types, 0 events, and 0 type definitions.

How do I use the SPL Memo 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 SPL Memo program address on Solana?

The SPL Memo program is deployed at address MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr on Solana mainnet. You can verify this on any Solana block explorer.

What version of the SPL Memo IDL is this?

This is version 3.0.1 of the SPL Memo 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.