curve-crypto-contract icon indicating copy to clipboard operation
curve-crypto-contract copied to clipboard

Guess what

Results 4 curve-crypto-contract issues
Sort by recently updated
recently updated
newest added

Hello! I deployed tricrypto pool to optimism-goerli from https://github.com/curvefi/curve-crypto-contract/tree/f0c26905a328d34655fe0f75db8910530f4d64b5 But I still can't add liquidity. I see problem in next line https://github.com/curvefi/curve-crypto-contract/blob/f0c26905a328d34655fe0f75db8910530f4d64b5/contracts/CurveCryptoSwap.vy#L746 **My tx** : https://goerli-optimism.etherscan.io/tx/0x8f66fe61dce67568b504ac898e4cfa746f621f213200e683d38a92048977cbca **VM trace** : https://goerli-optimism.etherscan.io/vmtrace?txhash=0x8f66fe61dce67568b504ac898e4cfa746f621f213200e683d38a92048977cbca&type=gethtrace2

## Wrong input params of `test_newton_y()` The parameters here need to be modified, from `A * 3**3 * 10000` to `A` https://github.com/curvefi/curve-crypto-contract/blob/master/tests/tricrypto/test_math.py#L114 ```python A_MUL = 10000 * 3**3 MIN_A =...