From 2e2e950d71957b159e733371474e9f075da65240 Mon Sep 17 00:00:00 2001 From: Trevor Porter Date: Tue, 12 Mar 2024 09:59:18 +0000 Subject: [PATCH 1/2] higher sol fees --- rust/chains/hyperlane-sealevel/src/mailbox.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rust/chains/hyperlane-sealevel/src/mailbox.rs b/rust/chains/hyperlane-sealevel/src/mailbox.rs index a44e93533f..0760056999 100644 --- a/rust/chains/hyperlane-sealevel/src/mailbox.rs +++ b/rust/chains/hyperlane-sealevel/src/mailbox.rs @@ -64,10 +64,12 @@ const SPL_NOOP: &str = "noopb9bkMVfRPU8AsbpTUg8AQkHtKwMYZiFUjNRtMmV"; // TODO: consider a more sane value and/or use IGP gas payments instead. const PROCESS_COMPUTE_UNITS: u32 = 700_000; -/// 0.0000035 SOL, in lamports. +/// 0.0001 SOL, in lamports. /// A typical tx fee without a prioritization fee is 0.000005 SOL, or /// 5000 lamports. (Example: https://explorer.solana.com/tx/fNd3xVeBzFHeuzr8dXQxLGiHMzTeYpykSV25xWzNRaHtzzjvY9A3MzXh1ZsK2JncRHkwtuWrGEwGXVhFaUCYhtx) -const PROCESS_DESIRED_PRIORITIZATION_FEE_LAMPORTS_PER_TX: u64 = 3500; +/// See average priority fees here https://solanacompass.com/statistics/fees +/// to inform what to spend here. +const PROCESS_DESIRED_PRIORITIZATION_FEE_LAMPORTS_PER_TX: u64 = 100000; /// In micro-lamports. Multiply this by the compute units to figure out /// the additional cost of processing a message, in addition to the mandatory From 8cab0620d2f7a310cbb5da3968d146c84fd300a8 Mon Sep 17 00:00:00 2001 From: Trevor Porter Date: Tue, 12 Mar 2024 10:43:59 +0000 Subject: [PATCH 2/2] update image --- typescript/infra/config/environments/mainnet2/agent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/infra/config/environments/mainnet2/agent.ts b/typescript/infra/config/environments/mainnet2/agent.ts index 371ce0ba72..75f1206839 100644 --- a/typescript/infra/config/environments/mainnet2/agent.ts +++ b/typescript/infra/config/environments/mainnet2/agent.ts @@ -127,7 +127,7 @@ const hyperlane: RootAgentConfig = { connectionType: AgentConnectionType.HttpFallback, docker: { repo, - tag: 'e5defad-20240307-100803', + tag: 'df25748-20240312-100110', }, blacklist: [ ...releaseCandidateHelloworldMatchingList,