Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added priority fees option and fixed removePositionLiquidity function with the updated sdk channges #82

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions ts-client/src/example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
sendAndConfirmTransaction,
SYSVAR_CLOCK_PUBKEY,
ParsedAccountData,
ComputeBudgetProgram,
} from "@solana/web3.js";
import { bs58 } from "@coral-xyz/anchor/dist/cjs/utils/bytes";
import { DLMM } from "./dlmm";
Expand Down Expand Up @@ -74,6 +75,11 @@ async function createBalancePosition(dlmmPool: DLMM) {
},
});

// createPositionTx.add(ComputeBudgetProgram.setComputeUnitPrice({
// microLamports: 100000,
// }))
// Add this line if you are on producton or mainnet or your tx will fail.

try {
const createBalancePositionTxHash = await sendAndConfirmTransaction(
connection,
Expand Down Expand Up @@ -111,6 +117,11 @@ async function createImbalancePosition(dlmmPool: DLMM) {
},
});

// createPositionTx.add(ComputeBudgetProgram.setComputeUnitPrice({
// microLamports: 100000,
// }))
// Add this line if you are on producton or mainnet or your tx will fail.

try {
const createImbalancePositionTxHash = await sendAndConfirmTransaction(
connection,
Expand Down Expand Up @@ -148,6 +159,11 @@ async function createOneSidePosition(dlmmPool: DLMM) {
},
});

// createPositionTx.add(ComputeBudgetProgram.setComputeUnitPrice({
// microLamports: 100000,
// }))
// Add this line if you are on producton or mainnet or your tx will fail.

try {
const createOneSidePositionTxHash = await sendAndConfirmTransaction(
connection,
Expand Down Expand Up @@ -221,8 +237,7 @@ async function removePositionLiquidity(dlmmPool: DLMM) {
position: publicKey,
user: user.publicKey,
binIds: binIdsToRemove,
liquiditiesBpsToRemove: new Array(binIdsToRemove.length).fill(
new BN(100 * 100)
bps: new BN(100 * 100)
),
shouldClaimAndClose: true, // should claim swap fee and close position together
});
Expand All @@ -232,6 +247,8 @@ async function removePositionLiquidity(dlmmPool: DLMM) {

try {
for (let tx of removeLiquidityTxs) {
// tx.add(ComputeBudgetProgram.setComputeUnitPrice({microLamports: 100000 * 5 ,}))
// Add this line if you are on producton or mainnet or your tx will fail.
const removeBalanceLiquidityTxHash = await sendAndConfirmTransaction(
connection,
tx,
Expand Down Expand Up @@ -295,6 +312,11 @@ async function swap(dlmmPool: DLMM) {
outToken: dlmmPool.tokenY.publicKey,
});

// swapTx.add(ComputeBudgetProgram.setComputeUnitPrice({
// microLamports: 100000,
// }))
// Add this line if you are on producton or mainnet or your tx will fail.

try {
const swapTxHash = await sendAndConfirmTransaction(connection, swapTx, [
user,
Expand Down