# Source from: https://github.com/curvefi/curve-contract/blob/master/tests/simulation.py class Curve: """ Python model of Curve pool math. """ def __init__(self, A, D, n, fee = 10 ** 7, p=None, tokens=None): """ A: Amplification coefficient D: Total deposit size n: number of currencies p: target prices """ self.A = A # actually A * n ** (n - 1) because it's an invariant self.n = n self.fee = fee if p: self.p = p else: self.p = [10 ** 18] * n if isinstance(D, list): self.x = D else: self.x = [D // n * 10 ** 18 // _p for _p in self.p] self.tokens = tokens def xp(self): return [x * p // 10 ** 18 for x, p in zip(self.x, self.p)] def D(self): """ D invariant calculation in non-overflowing integer operations iteratively A * sum(x_i) * n**n + D = A * D * n**n + D**(n+1) / (n**n * prod(x_i)) Converging solution: D[j+1] = (A * n**n * sum(x_i) - D[j]**(n+1) / (n**n prod(x_i))) / (A * n**n - 1) """ Dprev = 0 xp = self.xp() S = sum(xp) D = S Ann = self.A * self.n counter = 0 while abs(D - Dprev) > 1: D_P = D for x in xp: D_P = D_P * D // (self.n * x) Dprev = D D = (Ann * S + D_P * self.n) * D // ((Ann - 1) * D + (self.n + 1) * D_P) counter += 1 if counter > 1000: break return D def y(self, i, j, x): """ Calculate x[j] if one makes x[i] = x Done by solving quadratic equation iteratively. x_1**2 + x1 * (sum' - (A*n**n - 1) * D / (A * n**n)) = D ** (n + 1) / (n ** (2 * n) * prod' * A) x_1**2 + b*x_1 = c x_1 = (x_1**2 + c) / (2*x_1 + b) """ D = self.D() xx = self.xp() xx[i] = x # x is quantity of underlying asset brought to 1e18 precision xx = [xx[k] for k in range(self.n) if k != j] Ann = self.A * self.n c = D for y in xx: c = c * D // (y * self.n) c = c * D // (self.n * Ann) b = sum(xx) + D // Ann - D y_prev = 0 y = D counter = 0 while abs(y - y_prev) > 1: y_prev = y y = (y ** 2 + c) // (2 * y + b) counter += 1 if counter > 1000: break return y # the result is in underlying units too def y_D(self, i, _D): """ Calculate x[j] if one makes x[i] = x Done by solving quadratic equation iteratively. x_1**2 + x1 * (sum' - (A*n**n - 1) * D / (A * n**n)) = D ** (n + 1) / (n ** (2 * n) * prod' * A) x_1**2 + b*x_1 = c x_1 = (x_1**2 + c) / (2*x_1 + b) """ xx = self.xp() xx = [xx[k] for k in range(self.n) if k != i] S = sum(xx) Ann = self.A * self.n c = _D for y in xx: c = c * _D // (y * self.n) c = c * _D // (self.n * Ann) b = S + _D // Ann y_prev = 0 y = _D counter = 0 while abs(y - y_prev) > 1: y_prev = y y = (y ** 2 + c) // (2 * y + b - _D) counter += 1 if counter > 1000: break return y # the result is in underlying units too def dy(self, i, j, dx): # dx and dy are in underlying units xp = self.xp() return xp[j] - self.y(i, j, xp[i] + dx) def exchange(self, i, j, dx): xp = self.xp() x = xp[i] + dx y = self.y(i, j, x) dy = xp[j] - y fee = dy * self.fee // 10 ** 10 #assert dy > 0 if dy == 0: return 0 self.x[i] = x * 10 ** 18 // self.p[i] self.x[j] = (y + fee) * 10 ** 18 // self.p[j] return dy - fee def remove_liquidity_imbalance(self, amounts): _fee = self.fee * self.n // (4 * (self.n - 1)) old_balances = self.x new_balances = self.x[:] D0 = self.D() for i in range(self.n): new_balances[i] -= amounts[i] self.x = new_balances D1 = self.D() self.x = old_balances fees = [0] * self.n for i in range(self.n): ideal_balance = D1 * old_balances[i] // D0 difference = abs(ideal_balance - new_balances[i]) fees[i] = _fee * difference // 10 ** 10 new_balances[i] -= fees[i] self.x = new_balances D2 = self.D() self.x = old_balances token_amount = (D0 - D2) * self.tokens // D0 return token_amount def calc_withdraw_one_coin(self, token_amount, i): xp = self.xp() if self.fee: fee = self.fee - self.fee * xp[i] // sum(xp) + 5 * 10 ** 5 else: fee = 0 D0 = self.D() D1 = D0 - token_amount * D0 // self.tokens dy = xp[i] - self.y_D(i, D1) return dy - dy * fee // 10 ** 10