UNPKG

@renec-foundation/redex-sdk

Version:

Typescript SDK to interact with Orca's Whirlpool program.

34 lines (33 loc) 1.22 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.setDefaultFeeRateIx = void 0; const public_1 = require("../utils/public"); /** * Updates a fee tier account with a new default fee rate. The new rate will not retroactively update * initialized pools. * * #### Special Errors * - `FeeRateMaxExceeded` - If the provided default_fee_rate exceeds MAX_FEE_RATE. * * @category Instructions * @param context - Context object containing services required to generate the instruction * @param params - SetDefaultFeeRateParams object * @returns - Instruction to perform the action. */ function setDefaultFeeRateIx(program, params) { const { whirlpoolsConfig, feeAuthority, tickSpacing, defaultFeeRate } = params; const feeTierPda = public_1.PDAUtil.getFeeTier(program.programId, whirlpoolsConfig, tickSpacing); const ix = program.instruction.setDefaultFeeRate(defaultFeeRate, { accounts: { whirlpoolsConfig, feeTier: feeTierPda.publicKey, feeAuthority, }, }); return { instructions: [ix], cleanupInstructions: [], signers: [], }; } exports.setDefaultFeeRateIx = setDefaultFeeRateIx;