From 74759bc3d94e954d9aeae078c2baf8982aca7d74 Mon Sep 17 00:00:00 2001 From: brendan Date: Wed, 7 Feb 2024 11:43:15 -0300 Subject: [PATCH] remove publius --- mocks/pumps/MockPump.sol | 2 +- mocks/tokens/MockToken.sol | 2 +- mocks/tokens/MockTokenFeeOnTransfer.sol | 2 +- mocks/tokens/MockTokenNoName.sol | 2 +- mocks/tokens/ReentrantMockToken.sol | 2 +- src/Aquifer.sol | 2 +- src/Well.sol | 2 +- src/functions/ConstantProduct.sol | 2 +- src/functions/ConstantProduct2.sol | 2 +- src/interfaces/IAquifer.sol | 1 - src/libraries/LibBytes.sol | 2 +- src/libraries/LibBytes16.sol | 2 +- src/libraries/LibLastReserveBytes.sol | 2 +- src/pumps/MultiFlowPump.sol | 2 +- test/integration/interfaces/IPipeline.sol | 2 +- 15 files changed, 14 insertions(+), 15 deletions(-) diff --git a/mocks/pumps/MockPump.sol b/mocks/pumps/MockPump.sol index 2cf992c2..68e829c4 100644 --- a/mocks/pumps/MockPump.sol +++ b/mocks/pumps/MockPump.sol @@ -7,7 +7,7 @@ pragma solidity ^0.8.20; import "src/interfaces/pumps/IPump.sol"; /** - * @author Publius + * @author Brendan * @title Mock Pump */ contract MockPump is IPump { diff --git a/mocks/tokens/MockToken.sol b/mocks/tokens/MockToken.sol index 6310233c..1bac499d 100644 --- a/mocks/tokens/MockToken.sol +++ b/mocks/tokens/MockToken.sol @@ -8,7 +8,7 @@ import "oz/token/ERC20/extensions/ERC20Burnable.sol"; import "oz/token/ERC20/extensions/draft-ERC20Permit.sol"; /** - * @author Publius + * @author Brendan * @title Mock Token */ contract MockToken is ERC20Burnable, ERC20Permit { diff --git a/mocks/tokens/MockTokenFeeOnTransfer.sol b/mocks/tokens/MockTokenFeeOnTransfer.sol index 2cbafa77..cfc268fe 100644 --- a/mocks/tokens/MockTokenFeeOnTransfer.sol +++ b/mocks/tokens/MockTokenFeeOnTransfer.sol @@ -8,7 +8,7 @@ import "oz/token/ERC20/extensions/ERC20Burnable.sol"; import "oz/token/ERC20/extensions/draft-ERC20Permit.sol"; /** - * @author Publius + * @author Brendan * @title Mock Token with a Fee on transfer */ contract MockTokenFeeOnTransfer is ERC20Burnable, ERC20Permit { diff --git a/mocks/tokens/MockTokenNoName.sol b/mocks/tokens/MockTokenNoName.sol index 7ef8247c..d7cba80d 100644 --- a/mocks/tokens/MockTokenNoName.sol +++ b/mocks/tokens/MockTokenNoName.sol @@ -7,7 +7,7 @@ pragma solidity ^0.8.20; import "mocks/tokens/MockToken.sol"; /** - * @author Publius + * @author Brendan * @title Mock Token No Name * */ diff --git a/mocks/tokens/ReentrantMockToken.sol b/mocks/tokens/ReentrantMockToken.sol index 69923370..87281c32 100644 --- a/mocks/tokens/ReentrantMockToken.sol +++ b/mocks/tokens/ReentrantMockToken.sol @@ -7,7 +7,7 @@ pragma solidity ^0.8.20; import "mocks/tokens/MockToken.sol"; /** - * @author Publius + * @author Brendan * @title Reentrant Mock Token */ contract ReentrantMockToken is MockToken { diff --git a/src/Aquifer.sol b/src/Aquifer.sol index 1bc8a370..89c701a8 100644 --- a/src/Aquifer.sol +++ b/src/Aquifer.sol @@ -10,7 +10,7 @@ import {LibClone} from "src/libraries/LibClone.sol"; /** * @title Aquifer - * @author Publius, Silo Chad, Brean + * @author Brendan, Silo Chad, Brean * @notice Aquifer is a permissionless Well registry and factory. * @dev Aquifer deploys Wells by cloning a pre-deployed Well implementation. */ diff --git a/src/Well.sol b/src/Well.sol index bdd46855..d5b32853 100644 --- a/src/Well.sol +++ b/src/Well.sol @@ -14,7 +14,7 @@ import {ClonePlus} from "src/utils/ClonePlus.sol"; /** * @title Well - * @author Publius, Silo Chad, Brean + * @author Brendan, Silo Chad, Brean * @dev A Well is a constant function AMM allowing the provisioning of liquidity * into a single pooled on-chain liquidity position. * diff --git a/src/functions/ConstantProduct.sol b/src/functions/ConstantProduct.sol index abb136d5..79758b66 100644 --- a/src/functions/ConstantProduct.sol +++ b/src/functions/ConstantProduct.sol @@ -8,7 +8,7 @@ import {LibMath} from "src/libraries/LibMath.sol"; /** * @title ConstantProduct - * @author Publius + * @author Brendan * @notice Constant product pricing function for Wells with N tokens. * @dev Constant Product Wells use the formula: * `π(b_i) = (s / n)^n` diff --git a/src/functions/ConstantProduct2.sol b/src/functions/ConstantProduct2.sol index 9e771089..db3096e1 100644 --- a/src/functions/ConstantProduct2.sol +++ b/src/functions/ConstantProduct2.sol @@ -8,7 +8,7 @@ import {LibMath} from "src/libraries/LibMath.sol"; /** * @title ConstantProduct2 - * @author Publius + * @author Brendan * @notice Gas efficient Constant Product pricing function for Wells with 2 tokens. * @dev Constant Product Wells with 2 tokens use the formula: * `b_0 * b_1 = s^2` diff --git a/src/interfaces/IAquifer.sol b/src/interfaces/IAquifer.sol index 8e7d2dba..a9ab0090 100644 --- a/src/interfaces/IAquifer.sol +++ b/src/interfaces/IAquifer.sol @@ -7,7 +7,6 @@ import {IWell, Call} from "src/interfaces/IWell.sol"; /** * @title IAquifer - * @author Publius * @notice Interface for the Aquifer, a permissionless Well deployer and registry. */ interface IAquifer { diff --git a/src/libraries/LibBytes.sol b/src/libraries/LibBytes.sol index 4cc216f7..3b189f36 100644 --- a/src/libraries/LibBytes.sol +++ b/src/libraries/LibBytes.sol @@ -4,7 +4,7 @@ pragma solidity ^0.8.20; /** * @title LibBytes - * @author Publius + * @author Brendan * @notice Contains byte operations used during storage reads & writes. * * {LibBytes} tightly packs an array of `uint256` values into `n / 2` storage diff --git a/src/libraries/LibBytes16.sol b/src/libraries/LibBytes16.sol index 3a62dd68..0372238d 100644 --- a/src/libraries/LibBytes16.sol +++ b/src/libraries/LibBytes16.sol @@ -4,7 +4,7 @@ pragma solidity ^0.8.20; /** * @title LibBytes16 - * @author Publius + * @author Brendan * @notice Contains byte operations used during storage reads & writes for Pumps. * * {LibBytes16} tightly packs an array of `bytes16` values into `n / 2` storage diff --git a/src/libraries/LibLastReserveBytes.sol b/src/libraries/LibLastReserveBytes.sol index c89e7d8e..f236dbf8 100644 --- a/src/libraries/LibLastReserveBytes.sol +++ b/src/libraries/LibLastReserveBytes.sol @@ -4,7 +4,7 @@ pragma solidity ^0.8.20; /** * @title LibLastReserveBytes - * @author Publius + * @author Brendan * @notice Contains byte operations used during storage reads & writes for Pumps. * * @dev {LibLastReserveBytes} tightly packs a `uint8 n`, `uint40 timestamp` and `bytes16[] reserves` diff --git a/src/pumps/MultiFlowPump.sol b/src/pumps/MultiFlowPump.sol index 57062df0..9c36906d 100644 --- a/src/pumps/MultiFlowPump.sol +++ b/src/pumps/MultiFlowPump.sol @@ -13,7 +13,7 @@ import {LibLastReserveBytes} from "src/libraries/LibLastReserveBytes.sol"; /** * @title MultiFlowPump - * @author Publius + * @author Brendan * @notice Stores a geometric EMA and cumulative geometric SMA for each reserve. * @dev A Pump designed for use in Beanstalk with 2 tokens. * diff --git a/test/integration/interfaces/IPipeline.sol b/test/integration/interfaces/IPipeline.sol index f0f9d656..41d67ac6 100644 --- a/test/integration/interfaces/IPipeline.sol +++ b/test/integration/interfaces/IPipeline.sol @@ -5,7 +5,7 @@ import {IERC20} from "test/integration/IntegrationTestHelper.sol"; /** * @title IPipeline - * @author Publius + * @author Brendan * @notice Pipeline Interface – Pipeline creates a sandbox to execute any series of function calls on any series of protocols through \term{Pipe} functions. * Any assets left in Pipeline between transactions can be transferred out by any account. * Users Pipe a series of PipeCalls that each execute a function call to another protocol through Pipeline.