diff --git a/foundry/src/Dispatcher.sol b/foundry/src/Dispatcher.sol index dcbd1b4..6e5c582 100644 --- a/foundry/src/Dispatcher.sol +++ b/foundry/src/Dispatcher.sol @@ -10,7 +10,6 @@ error Dispatcher__InvalidDataLength(); /** * @title Dispatcher - Dispatch execution to external contracts - * @author PropellerHeads Devs * @dev Provides the ability to delegate execution of swaps to external * contracts. This allows dynamically adding new supported protocols * without needing to upgrade any contracts. External contracts will diff --git a/foundry/src/OneTransferFromOnly.sol b/foundry/src/OneTransferFromOnly.sol index 1a92344..83731c2 100644 --- a/foundry/src/OneTransferFromOnly.sol +++ b/foundry/src/OneTransferFromOnly.sol @@ -10,7 +10,6 @@ error OneTransferFromOnly__MultipleTransferFrom(); /** * @title OneTransferFromOnly - Restrict to one transferFrom on approved params per swap - * @author PropellerHeads Devs * @dev Restricts to one `transferFrom` (using `permit2` or regular `transferFrom`) * per swap, while ensuring that the `transferFrom` is only performed on the input * token and the input amount, from the msg.sender's wallet that calls the main swap