Skip to content

Commit

Permalink
up version
Browse files Browse the repository at this point in the history
  • Loading branch information
bout3fiddy committed Jun 4, 2024
1 parent 3b0226a commit d21b270
Show file tree
Hide file tree
Showing 4 changed files with 10,004 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/main/CurveCryptoMathOptimized2.vy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ MAX_GAMMA: constant(uint256) = 199 * 10**15 # 1.99 * 10**17
MIN_A: constant(uint256) = N_COINS**N_COINS * A_MULTIPLIER / 10
MAX_A: constant(uint256) = N_COINS**N_COINS * A_MULTIPLIER * 1000

version: public(constant(String[8])) = "v2.0.0"
version: public(constant(String[8])) = "v2.1.0"


# ------------------------ AMM math functions --------------------------------
Expand Down
2 changes: 1 addition & 1 deletion contracts/main/CurveTwocryptoOptimized.vy
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ MAX_GAMMA: constant(uint256) = 199 * 10**15 # 1.99 * 10**17
name: public(immutable(String[64]))
symbol: public(immutable(String[32]))
decimals: public(constant(uint8)) = 18
version: public(constant(String[8])) = "v2.0.0"
version: public(constant(String[8])) = "v2.1.0"

balanceOf: public(HashMap[address, uint256])
allowance: public(HashMap[address, HashMap[address, uint256]])
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ matplotlib
cytoolz

# vyper and dev framework (boa interpreter):
git+https://github.com/vyperlang/titanoboa@1bf16f916b91aab299e293b4148be455c1674706
git+https://github.com/vyperlang/titanoboa@40e85c602aa2c15baaf5060547c1224178d9efae
vyper>=0.3.10
Loading

0 comments on commit d21b270

Please sign in to comment.