We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84c9804 commit d45b3a2Copy full SHA for d45b3a2
cadence/contracts/connectors/evm/UniswapV3SwapConnectors.cdc
@@ -89,7 +89,7 @@ access(all) contract UniswapV3SwapConnectors {
89
maxPriceImpactBps == nil || (maxPriceImpactBps! > 0 && maxPriceImpactBps! <= 5000):
90
"maxPriceImpactBps must be between 1 and 5000 (0.01% to 50%)"
91
maxSlippageBps == nil || (maxSlippageBps! > 0 && maxSlippageBps! <= 1000):
92
- "maxPriceImpactBps must be between 1 and 5000 (0.01% to 10%)"
+ "maxPriceImpactBps must be between 1 and 1000 (0.01% to 10%)"
93
}
94
self.factoryAddress = factoryAddress
95
self.routerAddress = routerAddress
0 commit comments