From ae77893b1044292925bc33a23a4e25f2411396fb Mon Sep 17 00:00:00 2001 From: Brean0 <midoryia33@proton.me> Date: Wed, 24 Jul 2024 10:15:24 +0200 Subject: [PATCH] update authors. --- src/functions/Stable2.sol | 4 ++-- src/functions/StableLUT/Stable2LUT1.sol | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/functions/Stable2.sol b/src/functions/Stable2.sol index ae26fc3..ca25edc 100644 --- a/src/functions/Stable2.sol +++ b/src/functions/Stable2.sol @@ -6,8 +6,9 @@ import {IBeanstalkWellFunction, IMultiFlowPumpWellFunction} from "src/interfaces import {ILookupTable} from "src/interfaces/ILookupTable.sol"; import {ProportionalLPToken2} from "src/functions/ProportionalLPToken2.sol"; import {IERC20} from "forge-std/interfaces/IERC20.sol"; + /** - * @author Brean + * @author brean, deadmanwalking * @title Gas efficient StableSwap pricing function for Wells with 2 tokens. * developed by curve. * @@ -21,7 +22,6 @@ import {IERC20} from "forge-std/interfaces/IERC20.sol"; * * @dev Limited to tokens with a maximum of 18 decimals. */ - contract Stable2 is ProportionalLPToken2, IBeanstalkWellFunction { struct PriceData { uint256 targetPrice; diff --git a/src/functions/StableLUT/Stable2LUT1.sol b/src/functions/StableLUT/Stable2LUT1.sol index f2ec596..9a78d7c 100644 --- a/src/functions/StableLUT/Stable2LUT1.sol +++ b/src/functions/StableLUT/Stable2LUT1.sol @@ -6,7 +6,7 @@ import {ILookupTable} from "src/interfaces/ILookupTable.sol"; /** * @title Stable2LUT1 - * @author DeadManWalking, Brean + * @author Deadmanwalking, brean * @notice Implements a lookup table of estimations used in the Stableswap Well Function * to calculate the token ratios in a Stableswap pool for a given price. */