AlphaQ IDL
ALPHAQmeA7bjrVuccPsYPiCvsi428SNwte66Srvs4pHAAlphaQ is a Solana swap protocol that routes token trades through optimized market-state vaults. Provides a single Swap instruction with directional trading (aToB), minimum output protection, and vendor-key fee routing.
Instructions
Integration Examples
Use the AlphaQ 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 AlphaQ IDL
import idl from "./alphaq.json";
const PROGRAM_ID = new PublicKey("ALPHAQmeA7bjrVuccPsYPiCvsi428SNwte66Srvs4pHA");
// 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.alphaQ
.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.1",
"name": "AlphaQ",
"instructions": [
{
"name": "Swap",
"accounts": [
{
"name": "user",
"isMut": true,
"isSigner": true
},
{
"name": "market",
"isMut": false,
"isSigner": false
},
{
"name": "market_state",
"isMut": true,
"isSigner": false
},
{
"name": "user_token_account_a",
"isMut": true,
"isSigner": false
},
{
"name": "user_token_account_b",
"isMut": true,
...Frequently Asked Questions
What is the AlphaQ IDL?
The AlphaQ IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the AlphaQ smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the AlphaQ program. This IDL contains 1 instructions, 0 account types, 0 events, and 0 type definitions.
How do I use the AlphaQ 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 AlphaQ program address on Solana?
The AlphaQ program is deployed at address ALPHAQmeA7bjrVuccPsYPiCvsi428SNwte66Srvs4pHA on Solana mainnet. You can verify this on any Solana block explorer.
What version of the AlphaQ IDL is this?
This is version 0.0.1 of the AlphaQ 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.