TensorSwap IDL

tensorv3.1.0NFT Marketplace
Program Address
TSWAPaqyCSx2KABk68Shruf4rp7CxcNi8hAsbdwmHbN
On-chain

TensorSwap v3 is the leading NFT trading protocol on Solana with pool-based AMM liquidity for NFT collections. Features configurable linear/exponential curves, maker rebates (25 BPS), taker fees (150 BPS), margin accounts, and snipe mechanisms.

46
Instructions
7
Accounts
2
Events
13
Types

Instructions

initUpdateTswapinitPoolclosePooldepositNftwithdrawNftdepositSolwithdrawSolbuyNftsellNftTokenPoolsellNftTradePooleditPoolreallocPool+34 more

Account Types

TSwapPoolMarginAccountSingleListingNftDepositReceiptNftAuthoritySolEscrow

Events

BuySellEventDelistEvent

Integration Examples

Use the TensorSwap 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 TensorSwap IDL
import idl from "./tensorswap.json";

const PROGRAM_ID = new PublicKey("TSWAPaqyCSx2KABk68Shruf4rp7CxcNi8hAsbdwmHbN");

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

tensorswap.json
{
  "version": "3.1.0",
  "name": "tensorswap",
  "constants": [
    {
      "name": "CURRENT_TSWAP_VERSION",
      "type": "u8",
      "value": "1"
    },
    {
      "name": "CURRENT_POOL_VERSION",
      "type": "u8",
      "value": "2"
    },
    {
      "name": "MAX_MM_FEES_BPS",
      "type": "u16",
      "value": "9999"
    },
    {
      "name": "HUNDRED_PCT_BPS",
      "type": "u16",
      "value": "10000"
    },
    {
      "name": "MAX_DELTA_BPS",
      "type": "u16",
      "value": "9999"
    },
    {
...

Frequently Asked Questions

What is the TensorSwap IDL?

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

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

The TensorSwap program is deployed at address TSWAPaqyCSx2KABk68Shruf4rp7CxcNi8hAsbdwmHbN on Solana mainnet. You can verify this on any Solana block explorer.

What version of the TensorSwap IDL is this?

This is version 3.1.0 of the TensorSwap 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.