Skip to content

Commit

Permalink
fix: comment fee address because cant use multisig
Browse files Browse the repository at this point in the history
  • Loading branch information
NeOMakinG committed Nov 15, 2024
1 parent dc473d2 commit c8b7996
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/swapper/src/swappers/JupiterSwapper/utils/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const isSupportedChainId = (chainId: ChainId): chainId is JupiterSupporte
return jupiterSupportedChainIds.includes(chainId as JupiterSupportedChainId)
}

const SHAPESHIFT_SOLANA_FEE_ACCOUNT = 'C7RTJbss7R1r7j8NUNYbasUXfbPJR99PMhqznvCiU43N'
// const SHAPESHIFT_SOLANA_FEE_ACCOUNT = 'C7RTJbss7R1r7j8NUNYbasUXfbPJR99PMhqznvCiU43N'

type GetJupiterQuoteArgs = {
apiUrl: string
Expand Down Expand Up @@ -56,7 +56,8 @@ export const getJupiterSwapInstructions = ({
> =>
jupiterService.post<SwapInstructionsResponse>(`${apiUrl}/swap-instructions`, {
userPublicKey: fromAddress,
feeAccount: SHAPESHIFT_SOLANA_FEE_ACCOUNT,
// feeAccount: SHAPESHIFT_SOLANA_FEE_ACCOUNT,
// feeAccount: '',
quoteResponse: rawQuote,
dynamicComputeUnitLimit: true,
prioritizationFeeLamports: 'auto',
Expand Down

0 comments on commit c8b7996

Please sign in to comment.