Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
excaliborr committed May 29, 2024
1 parent 442911b commit cee1d50
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/interfaces/IL1OpUSDCFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -51,44 +51,52 @@ interface IL1OpUSDCFactory {
/**
* @return _l2Messenger The address of the L2 messenger
*/
// solhint-disable-next-line func-name-mixedcase
function L2_MESSENGER() external view returns (address _l2Messenger);

/**
* @return _upgradeManager The address of the UpgradeManager contract
*/
// solhint-disable-next-line func-name-mixedcase
function UPGRADE_MANAGER() external view returns (IUpgradeManager _upgradeManager);

/**
* @return _l1Adapter The address of the L1OpUSDCBridgeAdapter contract
*/
// solhint-disable-next-line func-name-mixedcase
function L1_ADAPTER() external view returns (address _l1Adapter);

/**
* @return _l2AdapterImplementation The address of the L2OpUSDCBridgeAdapter implementation contract
*/
// solhint-disable-next-line func-name-mixedcase
function L2_ADAPTER_IMPLEMENTATION() external view returns (address _l2AdapterImplementation);

/**
* @return _l2AdapterProxy The address of the L2OpUSDCBridgeAdapter proxy contract
*/
// solhint-disable-next-line func-name-mixedcase
function L2_ADAPTER_PROXY() external view returns (address _l2AdapterProxy);

/**
* @return _l2UsdcProxy The address of the USDC proxy contract on L2
*/
// solhint-disable-next-line func-name-mixedcase
function L2_USDC_PROXY() external view returns (address _l2UsdcProxy);

/**
* @return _l2UsdcImplementation The address of the USDC implementation contract on L2
* @dev This is the first USDC implementation address deployed by the L2 factory. However, if then it gets updated,
* the implementation address will be another one.
*/
// solhint-disable-next-line func-name-mixedcase
function L2_USDC_IMPLEMENTATION() external view returns (address _l2UsdcImplementation);

/**
* @return _aliasedSelf The aliased address of the L1 factory contract on L2
* @dev This is the `msg.sender` that will deploy the L2 factory
*/
// solhint-disable-next-line func-name-mixedcase
function ALIASED_SELF() external view returns (address _aliasedSelf);

/**
Expand Down

0 comments on commit cee1d50

Please sign in to comment.