Skip to content

Commit

Permalink
add recommended
Browse files Browse the repository at this point in the history
  • Loading branch information
tkporter committed Dec 13, 2024
1 parent 356c107 commit 570c52b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,8 @@ const sealevelPriorityFeeOracleConfigGetter = (
if (chain === 'solanamainnet') {
return {
type: AgentSealevelPriorityFeeOracleType.Helius,
feeLevel: AgentSealevelHeliusFeeLevel.Medium,
// URL is populated by the external secrets in the helm chart
feeLevel: AgentSealevelHeliusFeeLevel.Recommended,
// URL is auto populated by the external secrets in the helm chart
url: '',
};
}
Expand Down Expand Up @@ -520,7 +520,6 @@ const hyperlane: RootAgentConfig = {
gasPaymentEnforcement: gasPaymentEnforcement,
metricAppContextsGetter,
resources: relayerResources,
// blacklist: [...warpRouteMatchingList('WIF/eclipsemainnet-solanamainnet')],
},
validators: {
docker: {
Expand Down
1 change: 1 addition & 0 deletions typescript/sdk/src/metadata/agentConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export enum AgentSealevelPriorityFeeOracleType {
}

export enum AgentSealevelHeliusFeeLevel {
Recommended = 'recommended',
Min = 'min',
Low = 'low',
Medium = 'medium',
Expand Down

0 comments on commit 570c52b

Please sign in to comment.