From de7ab8671f8dc665418a2f6d4339de409534e747 Mon Sep 17 00:00:00 2001 From: jeffyanta Date: Wed, 11 Feb 2026 13:08:00 -0500 Subject: [PATCH] Bump base priority fees --- ocp/rpc/transaction/swap_handler.go | 6 +++--- ocp/transaction/transaction.go | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ocp/rpc/transaction/swap_handler.go b/ocp/rpc/transaction/swap_handler.go index 0566e7a..0fb08fd 100644 --- a/ocp/rpc/transaction/swap_handler.go +++ b/ocp/rpc/transaction/swap_handler.go @@ -67,7 +67,7 @@ func NewCurrencyCreatorBuySwapHandler( nonce: nonce, computeUnitLimit: 150_000, - computeUnitPrice: 1_000, + computeUnitPrice: 10_000, memoValue: "buy_v0", } } @@ -236,7 +236,7 @@ func NewCurrencyCreatorSellSwapHandler( nonce: nonce, computeUnitLimit: 175_000, - computeUnitPrice: 1_000, + computeUnitPrice: 10_000, memoValue: "sell_v0", } } @@ -408,7 +408,7 @@ func NewCurrencyCreatorBuySellSwapHandler( nonce: nonce, computeUnitLimit: 400_000, - computeUnitPrice: 1_000, + computeUnitPrice: 10_000, memoValue: "buy_sell_v0", } } diff --git a/ocp/transaction/transaction.go b/ocp/transaction/transaction.go index f8d19a6..226b329 100644 --- a/ocp/transaction/transaction.go +++ b/ocp/transaction/transaction.go @@ -58,7 +58,7 @@ func MakeOpenAccountTransaction( } instructions := []solana.Instruction{ - compute_budget.SetComputeUnitPrice(1_000), + compute_budget.SetComputeUnitPrice(10_000), compute_budget.SetComputeUnitLimit(50_000), initializeInstruction, } @@ -97,7 +97,7 @@ func MakeCompressAccountTransaction( ) instructions := []solana.Instruction{ - compute_budget.SetComputeUnitPrice(1_000), + compute_budget.SetComputeUnitPrice(10_000), compute_budget.SetComputeUnitLimit(200_000), compressInstruction, } @@ -146,7 +146,7 @@ func MakeInternalWithdrawTransaction( ) instructions := []solana.Instruction{ - compute_budget.SetComputeUnitPrice(1_000), + compute_budget.SetComputeUnitPrice(10_000), compute_budget.SetComputeUnitLimit(100_000), execInstruction, } @@ -199,7 +199,7 @@ func MakeExternalWithdrawTransaction( ) instructions := []solana.Instruction{ - compute_budget.SetComputeUnitPrice(1_000), + compute_budget.SetComputeUnitPrice(10_000), compute_budget.SetComputeUnitLimit(100_000), execInstruction, } @@ -251,7 +251,7 @@ func MakeInternalTransferWithAuthorityTransaction( ) instructions := []solana.Instruction{ - compute_budget.SetComputeUnitPrice(1_000), + compute_budget.SetComputeUnitPrice(10_000), compute_budget.SetComputeUnitLimit(100_000), execInstruction, } @@ -315,7 +315,7 @@ func MakeExternalTransferWithAuthorityTransaction( } instructions := []solana.Instruction{ - compute_budget.SetComputeUnitPrice(1_000), + compute_budget.SetComputeUnitPrice(10_000), compute_budget.SetComputeUnitLimit(uint32(computeLimit)), } if isCreateOnSend {