GoonFi IDL

goonfiv0.1.0DeFi / Swap
Program Address
goonERTdGsjnkZqWuVjs73BZ3Pb9qoCUdBUL17BnS5j
On-chain

GoonFi is a minimal Solana swap protocol providing a single-instruction token swap interface with directional bidding (isBid), market-based pool routing, and sysvar instructions introspection for security.

1
Instructions
0
Accounts
0
Events
0
Types

Instructions

swap

Integration Examples

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

const PROGRAM_ID = new PublicKey("goonERTdGsjnkZqWuVjs73BZ3Pb9qoCUdBUL17BnS5j");

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

goonfi.json
{
  "version": "0.1.0",
  "name": "GoonFi",
  "instructions": [
    {
      "name": "swap",
      "accounts": [
        {
          "name": "user",
          "isMut": true,
          "isSigner": true
        },
        {
          "name": "market",
          "isMut": true,
          "isSigner": false
        },
        {
          "name": "userTokenAccountA",
          "isMut": true,
          "isSigner": false
        },
        {
          "name": "userTokenAccountB",
          "isMut": true,
          "isSigner": false
        },
        {
          "name": "poolTokenAccountA",
          "isMut": true,
...

Frequently Asked Questions

What is the GoonFi IDL?

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

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

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

What version of the GoonFi IDL is this?

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