Obric v2 IDL

obricv0.1.0DEX / Oracle-Based
Program Address
obriQD1zbpyLz95G5n7nJe6a4DPjpFwa5XYPoNm113y
On-chain

Obric v2 is an oracle-based DEX on Solana using price feed-driven AMM mechanics for concentrated liquidity trading. Features trading pair creation with configurable concentration, fee structures, and SSLP token minting.

12
Instructions
1
Accounts
0
Events
0
Types

Instructions

createPaircreatePairV2updateConcentrationupdateVersionupdateFeeParamsupdateOracleswithdrawFeesdepositwithdrawswapXToYswapYToXswap

Account Types

SSTradingPair

Integration Examples

Use the Obric v2 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 Obric v2 IDL
import idl from "./obric v2.json";

const PROGRAM_ID = new PublicKey("obriQD1zbpyLz95G5n7nJe6a4DPjpFwa5XYPoNm113y");

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

obric v2.json
{
  "version": "0.1.0",
  "name": "obric_solana",
  "instructions": [
    {
      "name": "createPair",
      "accounts": [
        {
          "name": "tradingPair",
          "isMut": true,
          "isSigner": false
        },
        {
          "name": "mintX",
          "isMut": false,
          "isSigner": false
        },
        {
          "name": "mintY",
          "isMut": false,
          "isSigner": false
        },
        {
          "name": "mintSslpX",
          "isMut": true,
          "isSigner": false
        },
        {
          "name": "mintSslpY",
          "isMut": true,
...

Frequently Asked Questions

What is the Obric v2 IDL?

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

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

The Obric v2 program is deployed at address obriQD1zbpyLz95G5n7nJe6a4DPjpFwa5XYPoNm113y on Solana mainnet. You can verify this on any Solana block explorer.

What version of the Obric v2 IDL is this?

This is version 0.1.0 of the Obric v2 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.