From 186d11e2b42570152f1f58fe90e6b3ef74cd159e Mon Sep 17 00:00:00 2001 From: Lucas Cullen Date: Thu, 4 Aug 2022 09:42:20 +1000 Subject: [PATCH] fix: spelling --- contracts/pool-templates/a/SwapTemplateA.vy | 4 ++-- contracts/pool-templates/base/SwapTemplateBase.vy | 2 +- contracts/pool-templates/eth/SwapTemplateEth.vy | 2 +- contracts/pool-templates/meta/SwapTemplateMeta.vy | 4 ++-- contracts/pool-templates/y/SwapTemplateY.vy | 4 ++-- contracts/pools/aave/StableSwapAave.vy | 4 ++-- contracts/pools/aeth/StableSwapAETH.vy | 2 +- contracts/pools/bbtc/StableSwapBBTC.vy | 4 ++-- contracts/pools/dusd/StableSwapDUSD.vy | 4 ++-- contracts/pools/eurs/StableSwapEURS.vy | 2 +- contracts/pools/gusd/StableSwapGUSD.vy | 4 ++-- contracts/pools/husd/StableSwapHUSD.vy | 4 ++-- contracts/pools/ib/StableSwapIB.vy | 4 ++-- contracts/pools/link/StableSwapLINK.vy | 2 +- contracts/pools/linkusd/StableSwapLinkUSD.vy | 4 ++-- contracts/pools/musd/StableSwapMUSD.vy | 4 ++-- contracts/pools/obtc/StableSwapOBTC.vy | 4 ++-- contracts/pools/pbtc/StableSwapPBTC.vy | 4 ++-- contracts/pools/reth/StableSwapRETH.vy | 2 +- contracts/pools/rsv/StableSwapRSV.vy | 4 ++-- contracts/pools/saave/StableSwapSAAVE.vy | 4 ++-- contracts/pools/seth/StableSwapSETH.vy | 2 +- contracts/pools/steth/StableSwapSTETH.vy | 2 +- contracts/pools/tbtc/StableSwapTBTC.vy | 4 ++-- contracts/pools/usdk/StableSwapUSDK.vy | 4 ++-- contracts/pools/usdn/StableSwapUSDN.vy | 4 ++-- contracts/pools/usdp/StableSwapUSDP.vy | 4 ++-- contracts/pools/ust/StableSwapUST.vy | 4 ++-- 28 files changed, 48 insertions(+), 48 deletions(-) diff --git a/contracts/pool-templates/a/SwapTemplateA.vy b/contracts/pool-templates/a/SwapTemplateA.vy index f89cf475..52e4c344 100644 --- a/contracts/pool-templates/a/SwapTemplateA.vy +++ b/contracts/pool-templates/a/SwapTemplateA.vy @@ -608,7 +608,7 @@ def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -653,7 +653,7 @@ def exchange_underlying(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pool-templates/base/SwapTemplateBase.vy b/contracts/pool-templates/base/SwapTemplateBase.vy index d1d4f1e2..b8187147 100644 --- a/contracts/pool-templates/base/SwapTemplateBase.vy +++ b/contracts/pool-templates/base/SwapTemplateBase.vy @@ -449,7 +449,7 @@ def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pool-templates/eth/SwapTemplateEth.vy b/contracts/pool-templates/eth/SwapTemplateEth.vy index 12351fec..e1d0c9f1 100644 --- a/contracts/pool-templates/eth/SwapTemplateEth.vy +++ b/contracts/pool-templates/eth/SwapTemplateEth.vy @@ -429,7 +429,7 @@ def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pool-templates/meta/SwapTemplateMeta.vy b/contracts/pool-templates/meta/SwapTemplateMeta.vy index 2c8fa50f..f34dad23 100644 --- a/contracts/pool-templates/meta/SwapTemplateMeta.vy +++ b/contracts/pool-templates/meta/SwapTemplateMeta.vy @@ -575,7 +575,7 @@ def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -642,7 +642,7 @@ def exchange_underlying(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pool-templates/y/SwapTemplateY.vy b/contracts/pool-templates/y/SwapTemplateY.vy index 119673eb..53efdd77 100644 --- a/contracts/pool-templates/y/SwapTemplateY.vy +++ b/contracts/pool-templates/y/SwapTemplateY.vy @@ -558,7 +558,7 @@ def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -605,7 +605,7 @@ def exchange_underlying(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/aave/StableSwapAave.vy b/contracts/pools/aave/StableSwapAave.vy index 21af5217..acbf6e06 100644 --- a/contracts/pools/aave/StableSwapAave.vy +++ b/contracts/pools/aave/StableSwapAave.vy @@ -593,7 +593,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -616,7 +616,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/aeth/StableSwapAETH.vy b/contracts/pools/aeth/StableSwapAETH.vy index d99870b1..74b700e1 100644 --- a/contracts/pools/aeth/StableSwapAETH.vy +++ b/contracts/pools/aeth/StableSwapAETH.vy @@ -442,7 +442,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/bbtc/StableSwapBBTC.vy b/contracts/pools/bbtc/StableSwapBBTC.vy index 68cb359f..3e0bb7ec 100644 --- a/contracts/pools/bbtc/StableSwapBBTC.vy +++ b/contracts/pools/bbtc/StableSwapBBTC.vy @@ -553,7 +553,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -598,7 +598,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/dusd/StableSwapDUSD.vy b/contracts/pools/dusd/StableSwapDUSD.vy index 61960363..698a11ec 100644 --- a/contracts/pools/dusd/StableSwapDUSD.vy +++ b/contracts/pools/dusd/StableSwapDUSD.vy @@ -560,7 +560,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -605,7 +605,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/eurs/StableSwapEURS.vy b/contracts/pools/eurs/StableSwapEURS.vy index b8b49ee9..6dd8ac4b 100644 --- a/contracts/pools/eurs/StableSwapEURS.vy +++ b/contracts/pools/eurs/StableSwapEURS.vy @@ -436,7 +436,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/gusd/StableSwapGUSD.vy b/contracts/pools/gusd/StableSwapGUSD.vy index 5c845820..3fdbc5b1 100644 --- a/contracts/pools/gusd/StableSwapGUSD.vy +++ b/contracts/pools/gusd/StableSwapGUSD.vy @@ -559,7 +559,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -604,7 +604,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/husd/StableSwapHUSD.vy b/contracts/pools/husd/StableSwapHUSD.vy index c6f84544..b2696d98 100644 --- a/contracts/pools/husd/StableSwapHUSD.vy +++ b/contracts/pools/husd/StableSwapHUSD.vy @@ -560,7 +560,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -605,7 +605,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/ib/StableSwapIB.vy b/contracts/pools/ib/StableSwapIB.vy index 82cbd2fa..f5ab946a 100644 --- a/contracts/pools/ib/StableSwapIB.vy +++ b/contracts/pools/ib/StableSwapIB.vy @@ -561,7 +561,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -584,7 +584,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/link/StableSwapLINK.vy b/contracts/pools/link/StableSwapLINK.vy index fc71a513..1cb6f597 100644 --- a/contracts/pools/link/StableSwapLINK.vy +++ b/contracts/pools/link/StableSwapLINK.vy @@ -442,7 +442,7 @@ def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/linkusd/StableSwapLinkUSD.vy b/contracts/pools/linkusd/StableSwapLinkUSD.vy index ccf78353..ab4a1868 100644 --- a/contracts/pools/linkusd/StableSwapLinkUSD.vy +++ b/contracts/pools/linkusd/StableSwapLinkUSD.vy @@ -559,7 +559,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -604,7 +604,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/musd/StableSwapMUSD.vy b/contracts/pools/musd/StableSwapMUSD.vy index 3c205c1f..8582297c 100644 --- a/contracts/pools/musd/StableSwapMUSD.vy +++ b/contracts/pools/musd/StableSwapMUSD.vy @@ -560,7 +560,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -605,7 +605,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/obtc/StableSwapOBTC.vy b/contracts/pools/obtc/StableSwapOBTC.vy index 09df2329..182fc5ca 100644 --- a/contracts/pools/obtc/StableSwapOBTC.vy +++ b/contracts/pools/obtc/StableSwapOBTC.vy @@ -553,7 +553,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -598,7 +598,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/pbtc/StableSwapPBTC.vy b/contracts/pools/pbtc/StableSwapPBTC.vy index d72826d3..d0cdb73c 100644 --- a/contracts/pools/pbtc/StableSwapPBTC.vy +++ b/contracts/pools/pbtc/StableSwapPBTC.vy @@ -553,7 +553,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -598,7 +598,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/reth/StableSwapRETH.vy b/contracts/pools/reth/StableSwapRETH.vy index 3d8911f1..d38ce4cb 100644 --- a/contracts/pools/reth/StableSwapRETH.vy +++ b/contracts/pools/reth/StableSwapRETH.vy @@ -442,7 +442,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/rsv/StableSwapRSV.vy b/contracts/pools/rsv/StableSwapRSV.vy index 3d3bd012..94820b4f 100644 --- a/contracts/pools/rsv/StableSwapRSV.vy +++ b/contracts/pools/rsv/StableSwapRSV.vy @@ -560,7 +560,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -605,7 +605,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/saave/StableSwapSAAVE.vy b/contracts/pools/saave/StableSwapSAAVE.vy index 87207385..ac799e96 100644 --- a/contracts/pools/saave/StableSwapSAAVE.vy +++ b/contracts/pools/saave/StableSwapSAAVE.vy @@ -552,7 +552,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -575,7 +575,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/seth/StableSwapSETH.vy b/contracts/pools/seth/StableSwapSETH.vy index 4ec8fedd..8fa24dc6 100644 --- a/contracts/pools/seth/StableSwapSETH.vy +++ b/contracts/pools/seth/StableSwapSETH.vy @@ -399,7 +399,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/steth/StableSwapSTETH.vy b/contracts/pools/steth/StableSwapSTETH.vy index b4c7ba48..21b524ac 100644 --- a/contracts/pools/steth/StableSwapSTETH.vy +++ b/contracts/pools/steth/StableSwapSTETH.vy @@ -433,7 +433,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/tbtc/StableSwapTBTC.vy b/contracts/pools/tbtc/StableSwapTBTC.vy index e3aa1149..94e92614 100644 --- a/contracts/pools/tbtc/StableSwapTBTC.vy +++ b/contracts/pools/tbtc/StableSwapTBTC.vy @@ -555,7 +555,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -600,7 +600,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/usdk/StableSwapUSDK.vy b/contracts/pools/usdk/StableSwapUSDK.vy index d7c236e5..8732c0df 100644 --- a/contracts/pools/usdk/StableSwapUSDK.vy +++ b/contracts/pools/usdk/StableSwapUSDK.vy @@ -560,7 +560,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -605,7 +605,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/usdn/StableSwapUSDN.vy b/contracts/pools/usdn/StableSwapUSDN.vy index 80b84636..bf326524 100644 --- a/contracts/pools/usdn/StableSwapUSDN.vy +++ b/contracts/pools/usdn/StableSwapUSDN.vy @@ -560,7 +560,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -605,7 +605,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/usdp/StableSwapUSDP.vy b/contracts/pools/usdp/StableSwapUSDP.vy index cf5bf1e8..32c6865c 100644 --- a/contracts/pools/usdp/StableSwapUSDP.vy +++ b/contracts/pools/usdp/StableSwapUSDP.vy @@ -569,7 +569,7 @@ def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -636,7 +636,7 @@ def exchange_underlying(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received diff --git a/contracts/pools/ust/StableSwapUST.vy b/contracts/pools/ust/StableSwapUST.vy index 832750ad..ccf24117 100644 --- a/contracts/pools/ust/StableSwapUST.vy +++ b/contracts/pools/ust/StableSwapUST.vy @@ -558,7 +558,7 @@ def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> uint256: @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send - @param j Index valie of the coin to recieve + @param j Index value of the coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received @@ -603,7 +603,7 @@ def exchange_underlying(i: int128, j: int128, dx: uint256, min_dy: uint256) -> u @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send - @param j Index valie of the underlying coin to recieve + @param j Index value of the underlying coin to recieve @param dx Amount of `i` being exchanged @param min_dy Minimum amount of `j` to receive @return Actual amount of `j` received