Skip to content

Commit

Permalink
fix mantle unwrap limits
Browse files Browse the repository at this point in the history
  • Loading branch information
prevostc committed Feb 15, 2024
1 parent 05d222a commit ae599a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -491,8 +491,8 @@ export const RPC_CONFIG: Record<Chain, RpcConfig> = {
},
unwrap: {
...defaultUnwrapConfig,
minAmountOfWNativeWei: bigintMultiplyFloat(ONE_ETHER, 2.0),
maxAmountOfNativeWei: bigintMultiplyFloat(ONE_ETHER, 5.0),
minAmountOfWNativeWei: bigintMultiplyFloat(ONE_ETHER, 0.05),
maxAmountOfNativeWei: bigintMultiplyFloat(ONE_ETHER, 0.1),
},
},
metis: {
Expand Down

0 comments on commit ae599a5

Please sign in to comment.