Skip to content

Commit

Permalink
remove publius
Browse files Browse the repository at this point in the history
  • Loading branch information
BrendanSanderson committed Feb 7, 2024
1 parent 43f2eb8 commit 74759bc
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion mocks/pumps/MockPump.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion mocks/tokens/MockToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion mocks/tokens/MockTokenFeeOnTransfer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion mocks/tokens/MockTokenNoName.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pragma solidity ^0.8.20;
import "mocks/tokens/MockToken.sol";

/**
* @author Publius
* @author Brendan
* @title Mock Token No Name
*
*/
Expand Down
2 changes: 1 addition & 1 deletion mocks/tokens/ReentrantMockToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/Aquifer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Well.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/functions/ConstantProduct.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion src/functions/ConstantProduct2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
1 change: 0 additions & 1 deletion src/interfaces/IAquifer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/LibBytes.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/LibBytes16.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/LibLastReserveBytes.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion src/pumps/MultiFlowPump.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion test/integration/interfaces/IPipeline.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 74759bc

Please sign in to comment.