0x8b1dcb84…7562sent to0xfde0d157…455a·#19,564,722·view on Etherscan
Thanks for your response,
i have verified contract code : https://etherscan.io/address/0xd8d5b0775a992d1ba9f1b9f43c976a2c1f50bfde#code
These was bug in validating slippage for swapExactETHForTokens method:
BUG in checking slippage---
amount0 = getAmountIn(amount1, reserve0, reserve1);
require(amount0min <= amount0, 'MintSwap: SLIPPAGE_REACHED');
It should be this---
amount0 = getAmountOut(amount1, reserve1_, reserve0_);
require(amount1min <= amount1, 'MintSwap: SLIPPAGE_REACHED');
It would be great if you could now return funds to 0x8b1dcb843c5d9465726baec345200b541b777562