Skip to content

Commit

Permalink
Fix balance alert threshold for manta and mode
Browse files Browse the repository at this point in the history
  • Loading branch information
prevostc committed Jul 22, 2024
1 parent cd26ba8 commit 6a8a9da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,8 @@ export const RPC_CONFIG: Record<Chain, RpcConfig> = {
},
unwrap: {
...defaultUnwrapConfig,
minAmountOfWNativeWei: bigintMultiplyFloat(ONE_ETHER, 1),
maxAmountOfNativeWei: bigintMultiplyFloat(ONE_ETHER, 10),
minAmountOfWNativeWei: bigintMultiplyFloat(ONE_ETHER, 0.00005),
maxAmountOfNativeWei: bigintMultiplyFloat(ONE_ETHER, 0.001),
setTransactionGasLimit: false,
},
revenueBridgeHarvest: {
Expand Down Expand Up @@ -593,8 +593,8 @@ export const RPC_CONFIG: Record<Chain, RpcConfig> = {
},
unwrap: {
...defaultUnwrapConfig,
minAmountOfWNativeWei: bigintMultiplyFloat(ONE_ETHER, 0.001),
maxAmountOfNativeWei: bigintMultiplyFloat(ONE_ETHER, 0.01),
minAmountOfWNativeWei: bigintMultiplyFloat(ONE_ETHER, 0.00005),
maxAmountOfNativeWei: bigintMultiplyFloat(ONE_ETHER, 0.001),
setTransactionGasLimit: false,
},
revenueBridgeHarvest: {
Expand Down

0 comments on commit 6a8a9da

Please sign in to comment.