@valiant-trade/vortex-client
v1.0.4
Published
Typescript client to interact with Valiant's on-chain Vortex program.
Downloads
714
Readme
Valiant Vortex Client SDK
Overview
This package provides developers with low-level functionalities for interacting with the Vortex Program on Solana. It serves as a foundational tool that allows developers to manage and integrate detailed operations into their Typescript projects, particularly those related to Valiant's Vortex Program. While a high-level SDK is available for easier integration, @valiant-trade/vortex, this package offers more granular control for advanced use cases.
Note: This SDK uses Solana Web3.js SDK v2. It is not compatible with the widely used v1.x.x version.
Key Features
- Codama Client: The package includes a set of generated client code based on the Vortex Program IDL. This ensures all the necessary program information is easily accessible in a structured format and handles all decoding and encoding of instructions and account data, making it much easier to interact with the program.
- GPA (Get Program Accounts) Filters: This feature contains utilities to add filters to program accounts, allowing developers to fetch program account data more selectively and efficiently.
- PDA (Program Derived Addresses) Utilities: This feature contains utility functions that help derive Program Derived Addresses (PDAs) for accounts within the Vortex Program, simplifying address generation for developers.
Installation
You can install the package via npm:
npm install @valiant-trade/vortex-clientUsage
Here are some basic examples of how to use the package.
Fetching Vortex Accounts with Filters
The following example demonstrates how to fetch Vortex accounts based on specific filters, using the GPA utilities:
import { createSolanaRpc, address, devnet } from '@solana/web3.js';
import { fetchAllVortexWithFilter, vortexTokenMintAFilter } from "@valiant-trade/vortex-client";
const rpc = createSolanaRpc(devnet("https://api.devnet.solana.com"));
const tokenMintA = address("BRjpCHtyQLNCo8gqRUr8jtdAj5AjPYQaoqbvcZiHok1k"); //DevUSDC
const filter = vortexTokenMintAFilter(tokenMintA);
const accounts = await fetchAllVortexWithFilter(rpc, filter);
console.log(accounts);Deriving a PDA
To derive a PDA for a Vortex account, you can use the getVortexAddress PDA utility.
import { getVortexAddress } from "@valiant-trade/vortex-client";
import { address } from '@solana/web3.js';
const vortexConfigAddress = address("FcrweFY1G9HJAHG5inkGB6pKg1HZ6x9UC2WioAfWrGkR");
const tokenMintA = address("So11111111111111111111111111111111111111112"); //wSOL
const tokenMintB = address("BRjpCHtyQLNCo8gqRUr8jtdAj5AjPYQaoqbvcZiHok1k"); //DevUSDC
const tickSpacing = 64;
const vortexPda = await getVortexAddress(
vortexConfigAddress,
tokenMintA,
tokenMintB,
tickSpacing,
);
console.log(vortexPda);Example: Initialize Pool Instruction
The following example demonstrates how to create an InitializePool instruction using the Codama-IDL autogenerated code:
import { getInitializePoolV2Instruction, getTokenBadgeAddress, getVortexAddress, getFeeTierAddress } from "@valiant-trade/vortex-client";
import { address, generateKeyPairSigner } from '@solana/web3.js';
const vortexConfigAddress = address("FcrweFY1G9HJAHG5inkGB6pKg1HZ6x9UC2WioAfWrGkR");
const tokenMintA = address("So11111111111111111111111111111111111111112"); // wSOL
const tokenMintB = address("BRjpCHtyQLNCo8gqRUr8jtdAj5AjPYQaoqbvcZiHok1k"); // DevUSDC
const tokenBadgeA = await getTokenBadgeAddress(vortexConfigAddress, tokenMintA)
const tokenBadgeB = await getTokenBadgeAddress(vortexConfigAddress, tokenMintB)
const wallet = await generateKeyPairSigner(); // CAUTION: this wallet is not persistent
const tickSpacing = 8;
const vortex = await getVortexAddress(vortexConfigAddress, tokenMintA, tokenMintB, tickSpacing);
const tokenVaultA = await generateKeyPairSigner();
const tokenVaultB = await generateKeyPairSigner();
const feeTier = await getFeeTierAddress(vortexConfigAddress, tickSpacing);
const tokenProgramA = address("TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA");
const tokenProgramB = address("TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA");
const initialSqrtPrice = BigInt(7459106261056563200n);
const initializePoolInstruction = getInitializePoolV2Instruction({
vortexConfig: vortexConfigAddress,
tokenMintA,
tokenMintB,
tokenBadgeA,
tokenBadgeB,
funder: wallet,
vortex,
tokenVaultA,
tokenVaultB,
feeTier,
vortexBump: 1,
tickSpacing,
tokenProgramA,
tokenProgramB,
initialSqrtPrice
});
console.log(initializePoolInstruction);