Skip to content

Commit

Permalink
improve: multipliers
Browse files Browse the repository at this point in the history
Signed-off-by: james-a-morris <[email protected]>
  • Loading branch information
james-a-morris committed Dec 23, 2024
1 parent 197b995 commit 1ce7d09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/clients/ProfitClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,7 @@ export class ProfitClient {
[CHAIN_IDs.LISK]: "USDT", // USDC is not yet supported on Lisk, so revert to USDT. @todo: Update.
[CHAIN_IDs.REDSTONE]: "WETH", // Redstone only supports WETH.
[CHAIN_IDs.WORLD_CHAIN]: "WETH", // USDC deferred on World Chain.
[CHAIN_IDs.INK]: "WETH", // USDC deferred on Ink.
};
const prodRelayer = process.env.RELAYER_FILL_SIMULATION_ADDRESS ?? PROD_RELAYER;
const [defaultTestSymbol, relayer] =
Expand Down
2 changes: 2 additions & 0 deletions src/common/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ export const DEFAULT_GAS_FEE_SCALERS: {
} = {
[CHAIN_IDs.BASE]: { maxFeePerGasScaler: 2, maxPriorityFeePerGasScaler: 0.01 },
[CHAIN_IDs.BLAST]: { maxFeePerGasScaler: 2, maxPriorityFeePerGasScaler: 0.01 },
[CHAIN_IDs.INK]: { maxFeePerGasScaler: 2, maxPriorityFeePerGasScaler: 0.01 },
[CHAIN_IDs.LISK]: { maxFeePerGasScaler: 2, maxPriorityFeePerGasScaler: 0.01 },
[CHAIN_IDs.MAINNET]: { maxFeePerGasScaler: 3, maxPriorityFeePerGasScaler: 1.2 },
[CHAIN_IDs.MODE]: { maxFeePerGasScaler: 2, maxPriorityFeePerGasScaler: 0.01 },
Expand Down Expand Up @@ -635,6 +636,7 @@ export const OPSTACK_CONTRACT_OVERRIDES = {
export const DEFAULT_GAS_MULTIPLIER: { [chainId: number]: number } = {
[CHAIN_IDs.OPTIMISM]: 1.5,
[CHAIN_IDs.BASE]: 1.5,
[CHAIN_IDs.INK]: 1.5,
[CHAIN_IDs.LISK]: 1.5,
[CHAIN_IDs.MODE]: 1.5,
[CHAIN_IDs.REDSTONE]: 1.5,
Expand Down

0 comments on commit 1ce7d09

Please sign in to comment.