Aldrin CLOB DEX IDL
CURVGoZn8zycx6FXwwevgBTB2gVvdbGTEpvMJDbgs2t4Aldrin CLOB (Central Limit Order Book) is an on-chain order book DEX on Solana. Supports limit orders, order matching, settlement, and market operations with full on-chain transparency.
Instructions
Account Types
Integration Examples
Use the Aldrin CLOB DEX 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 Aldrin CLOB DEX IDL
import idl from "./aldrin clob dex.json";
const PROGRAM_ID = new PublicKey("CURVGoZn8zycx6FXwwevgBTB2gVvdbGTEpvMJDbgs2t4");
// 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.aldrin_CLOB_DEX
.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": "0.0.0",
"name": "Aldrin CLOB Dex",
"instructions": [
{
"name": "InitializeMarket",
"accounts": [
{
"name": "marketToInitialize",
"isMut": true,
"isSigner": false,
"docs": [
"the market to initialize"
]
},
{
"name": "requestQueue",
"isMut": true,
"isSigner": false,
"docs": [
"zeroed out request queue"
]
},
{
"name": "eventQueue",
"isMut": true,
"isSigner": false,
"docs": [
"zeroed out event queue"
]
...Frequently Asked Questions
What is the Aldrin CLOB DEX IDL?
The Aldrin CLOB DEX IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Aldrin CLOB DEX smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the Aldrin CLOB DEX program. This IDL contains 18 instructions, 9 account types, 0 events, and 10 type definitions.
How do I use the Aldrin CLOB DEX 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 Aldrin CLOB DEX program address on Solana?
The Aldrin CLOB DEX program is deployed at address CURVGoZn8zycx6FXwwevgBTB2gVvdbGTEpvMJDbgs2t4 on Solana mainnet. You can verify this on any Solana block explorer.
What version of the Aldrin CLOB DEX IDL is this?
This is version 0.0.0 of the Aldrin CLOB DEX 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.