Orca Whirlpools is an open-source concentrated liquidity AMM contract on the Solana and Eclipse blockchain. This SDK allows developers to interact with the Whirlpools program on both chains, enabling the creation and management of liquidity pools and positions, as well as performing swaps.
The Orca Whirlpools SDK provides a comprehensive set of tools to interact with the Whirlpools program on Solana and Eclipse.
Note: This SDK uses Solana Web3.js SDK v2. It is not compatible with the widely used v1.x.x version.
To install the SDK, use the following command:
npm install @orca-so/whirlpools @solana/web3.js@2
You can generate a file system wallet using the Solana CLI and load it in your program.
import { createKeyPairSignerFromBytes } from '@solana/web3.js';
import fs from 'fs';
const keyPairBytes = new Uint8Array(JSON.parse(fs.readFileSync('path/to/solana-keypair.json', 'utf8')));
const wallet = await createKeyPairSignerFromBytes(keyPairBytes);
Orca's Whirlpools SDK supports several networks: Solana Mainnet, Solana Devnet, Eclipse Mainnet, and Eclipse Testnet. To select a network, use the setWhirlpoolsConfig
function. This ensures compatibility with the network you’re deploying on.
Example: Setting the SDK Configuration to Solana Devnet.
import { setWhirlpoolsConfig } from '@orca-so/whirlpools';
await setWhirlpoolsConfig('solanaDevnet');
Available networks are:
ℹ️ The setWhirlpoolsConfig function accepts either one of Orca's default network keys or a custom Address. This allows you to specify a custom configuration if needed.
After configuring the SDK, you can perform a swap. Here is an example of how to perform a token swap using the Whirlpools SDK:
import { swapInstructions } from '@orca-so/whirlpools';
const poolAddress = "POOL_ADDRESS";
const mintAddress = "TOKEN_MINT";
const amount = 1_000_000n;
const slippageTolerance = 100; // 100 bps = 1%
const { instructions, quote } = await swapInstructions(
devnetRpc,
{
inputAmount: amount,
mint: mintAddress
},
poolAddress,
slippageTolerance,
wallet
);
import { swapInstructions, setWhirlpoolsConfig } from '@orca-so/whirlpools';
import { generateKeyPairSigner, createSolanaRpc, devnet } from '@solana/web3.js';
const devnetRpc = createSolanaRpc(devnet('https://api.devnet.solana.com'));
await setWhirlpoolsConfig('solanaDevnet');
const wallet = loadWallet();
await devnetRpc.requestAirdrop(wallet.address, lamports(1000000000n)).send();
/* Example Devnet Addresses:
* -------------------------
* SOL/devUSDC Whirlpool: 3KBZiL2g8C7tiJ32hTv5v3KM7aK9htpqTw4cTXz1HvPt
* SOL Token Address: So11111111111111111111111111111111111111112
* devUSDC Token Address: 3KBZiL2g8C7tiJ32hTv5v3KM7aK9htpqTw4cTXz1HvPt
*/
const poolAddress = "3KBZiL2g8C7tiJ32hTv5v3KM7aK9htpqTw4cTXz1HvPt";
const mintAddress = "So11111111111111111111111111111111111111112";
const amount = 1_000_000n; // 0.001 WSOL (SOL has 9 decimals)
const slippageTolerance = 100; // 100bps = 1%
const { instructions, quote } = await swapInstructions(
devnetRpc,
{
inputAmount: amount,
mint: mintAddress
},
poolAddress,
slippageTolerance,
wallet
);