From 8b8c5e9ee0f7873aaf4cc92bb935170637b46001 Mon Sep 17 00:00:00 2001 From: CheyenneAtapour Date: Wed, 7 Aug 2024 20:16:27 -0700 Subject: [PATCH] fix: added dev comment link to original --- src/contracts/misc/deps/CcipPools.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/contracts/misc/deps/CcipPools.sol b/src/contracts/misc/deps/CcipPools.sol index d88c39c7..a0f55b61 100644 --- a/src/contracts/misc/deps/CcipPools.sol +++ b/src/contracts/misc/deps/CcipPools.sol @@ -88,6 +88,7 @@ contract OwnerIsCreator is ConfirmedOwner { } /// @notice Base abstract class with common functions for all token pools. +/// @dev Reduced contract from https://github.com/aave/ccip/blob/ccip-gho/contracts/src/v0.8/ccip/pools/GHO/UpgradeableTokenPool.sol /// A token pool serves as isolated place for holding tokens and token specific logic /// that may execute as tokens move across the bridge. abstract contract UpgradeableTokenPool is OwnerIsCreator { @@ -310,6 +311,7 @@ abstract contract UpgradeableTokenPool is OwnerIsCreator { /// @title UpgradeableLockReleaseTokenPool /// @author Aave Labs /// @notice Upgradeable version of Chainlink's CCIP LockReleaseTokenPool +/// @dev Reduced contract from https://github.com/aave/ccip/blob/ccip-gho/contracts/src/v0.8/ccip/pools/GHO/UpgradeableLockReleaseTokenPool.sol /// @dev Contract adaptations: /// - Implementation of Initializable to allow upgrades /// - Move of allowlist and router definition to initialization stage