Phoenix v1 IDL

phoenixv0.2.4DEX / Order Book
Program Address
PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY
On-chain

Phoenix v1 is a fully on-chain limit order book DEX on Solana by Ellipsis Labs. Offers atomic settlement, no cranking requirement, sub-second order execution, and transparent price discovery for spot markets.

28
Instructions
0
Accounts
0
Events
31
Types

Instructions

SwapSwapWithFreeFundsPlaceLimitOrderPlaceLimitOrderWithFreeFundsReduceOrderReduceOrderWithFreeFundsCancelAllOrdersCancelAllOrdersWithFreeFundsCancelUpToCancelUpToWithFreeFundsCancelMultipleOrdersByIdCancelMultipleOrdersByIdWithFreeFunds+16 more

Integration Examples

Use the Phoenix v1 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 Phoenix v1 IDL
import idl from "./phoenix v1.json";

const PROGRAM_ID = new PublicKey("PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY");

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

phoenix v1.json
{
  "version": "0.2.4",
  "name": "phoenix_v1",
  "instructions": [
    {
      "name": "Swap",
      "accounts": [
        {
          "name": "phoenixProgram",
          "isMut": false,
          "isSigner": false,
          "desc": "Phoenix program"
        },
        {
          "name": "logAuthority",
          "isMut": false,
          "isSigner": false,
          "desc": "Phoenix log authority"
        },
        {
          "name": "market",
          "isMut": true,
          "isSigner": false,
          "desc": "This account holds the market state"
        },
        {
          "name": "trader",
          "isMut": false,
          "isSigner": true
        },
...

Frequently Asked Questions

What is the Phoenix v1 IDL?

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

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

The Phoenix v1 program is deployed at address PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY on Solana mainnet. You can verify this on any Solana block explorer.

What version of the Phoenix v1 IDL is this?

This is version 0.2.4 of the Phoenix v1 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.