Commit 677e85a6 authored by elenadimitrova's avatar elenadimitrova Committed by Kelvin Fichter

Assorted instances of OVM prefix removed

parent 8a98e21f
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
// @unsupported: ovm
pragma solidity >0.5.0 <0.8.0; pragma solidity >0.5.0 <0.8.0;
pragma experimental ABIEncoderV2; pragma experimental ABIEncoderV2;
......
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
// @unsupported: ovm
pragma solidity >0.5.0 <0.8.0; pragma solidity >0.5.0 <0.8.0;
pragma experimental ABIEncoderV2; pragma experimental ABIEncoderV2;
......
...@@ -92,7 +92,7 @@ interface IL2ERC20Bridge { ...@@ -92,7 +92,7 @@ interface IL2ERC20Bridge {
/** /**
* @dev Complete a deposit from L1 to L2, and credits funds to the recipient's balance of this * @dev Complete a deposit from L1 to L2, and credits funds to the recipient's balance of this
* L2 token. This call will fail if it did not originate from a corresponding deposit in * L2 token. This call will fail if it did not originate from a corresponding deposit in
* OVM_l1TokenGateway. * L1StandardTokenBridge.
* @param _l1Token Address for the l1 token this is called with * @param _l1Token Address for the l1 token this is called with
* @param _l2Token Address for the l2 token this is called with * @param _l2Token Address for the l2 token this is called with
* @param _from Account to pull the deposit from on L2. * @param _from Account to pull the deposit from on L2.
......
...@@ -23,8 +23,7 @@ import { ReentrancyGuard } from "@openzeppelin/contracts/utils/ReentrancyGuard.s ...@@ -23,8 +23,7 @@ import { ReentrancyGuard } from "@openzeppelin/contracts/utils/ReentrancyGuard.s
* @dev The L2 Cross Domain Messenger contract sends messages from L2 to L1, and is the entry point * @dev The L2 Cross Domain Messenger contract sends messages from L2 to L1, and is the entry point
* for L2 messages sent via the L1 Cross Domain Messenger. * for L2 messages sent via the L1 Cross Domain Messenger.
* *
* Runtime target: OVM */
*/
contract L2CrossDomainMessenger is contract L2CrossDomainMessenger is
IL2CrossDomainMessenger, IL2CrossDomainMessenger,
ReentrancyGuard ReentrancyGuard
......
...@@ -23,8 +23,6 @@ import { IL2StandardERC20 } from "../../libraries/standards/IL2StandardERC20.sol ...@@ -23,8 +23,6 @@ import { IL2StandardERC20 } from "../../libraries/standards/IL2StandardERC20.sol
* bridge. * bridge.
* This contract also acts as a burner of the tokens intended for withdrawal, informing the L1 * This contract also acts as a burner of the tokens intended for withdrawal, informing the L1
* bridge to release L1 funds. * bridge to release L1 funds.
*
* Runtime target: OVM
*/ */
contract L2StandardBridge is IL2ERC20Bridge, CrossDomainEnabled { contract L2StandardBridge is IL2ERC20Bridge, CrossDomainEnabled {
......
...@@ -10,8 +10,6 @@ import { Lib_PredeployAddresses } from "../../libraries/constants/Lib_PredeployA ...@@ -10,8 +10,6 @@ import { Lib_PredeployAddresses } from "../../libraries/constants/Lib_PredeployA
* @title L2StandardTokenFactory * @title L2StandardTokenFactory
* @dev Factory contract for creating standard L2 token representations of L1 ERC20s * @dev Factory contract for creating standard L2 token representations of L1 ERC20s
* compatible with and working on the standard bridge. * compatible with and working on the standard bridge.
*
* Runtime target: OVM
*/ */
contract L2StandardTokenFactory { contract L2StandardTokenFactory {
......
...@@ -7,8 +7,6 @@ pragma solidity >0.5.0 <0.8.0; ...@@ -7,8 +7,6 @@ pragma solidity >0.5.0 <0.8.0;
* initial phases of our mainnet roll out. It is owned by the Optimism team, and defines accounts * initial phases of our mainnet roll out. It is owned by the Optimism team, and defines accounts
* which are allowed to deploy contracts on Layer2. The Execution Manager will only allow an * which are allowed to deploy contracts on Layer2. The Execution Manager will only allow an
* ovmCREATE or ovmCREATE2 operation to proceed if the deployer's address whitelisted. * ovmCREATE or ovmCREATE2 operation to proceed if the deployer's address whitelisted.
*
* Runtime target: OVM
*/ */
contract OVM_DeployerWhitelist { contract OVM_DeployerWhitelist {
......
...@@ -11,8 +11,6 @@ import { L2StandardERC20 } from "../../libraries/standards/L2StandardERC20.sol"; ...@@ -11,8 +11,6 @@ import { L2StandardERC20 } from "../../libraries/standards/L2StandardERC20.sol";
* @title OVM_ETH * @title OVM_ETH
* @dev The ETH predeploy provides an ERC20 interface for ETH deposited to Layer 2. Note that * @dev The ETH predeploy provides an ERC20 interface for ETH deposited to Layer 2. Note that
* unlike on Layer 1, Layer 2 accounts do not have a balance field. * unlike on Layer 1, Layer 2 accounts do not have a balance field.
*
* Runtime target: OVM
*/ */
contract OVM_ETH is L2StandardERC20 { contract OVM_ETH is L2StandardERC20 {
......
...@@ -10,8 +10,6 @@ import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; ...@@ -10,8 +10,6 @@ import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
* currently is. This measure is used by the Sequencer to determine what fee to charge for * currently is. This measure is used by the Sequencer to determine what fee to charge for
* transactions. When the system is more congested, the l2 gas price will increase and fees * transactions. When the system is more congested, the l2 gas price will increase and fees
* will also increase as a result. * will also increase as a result.
*
* Runtime target: OVM
*/ */
contract OVM_GasPriceOracle is Ownable { contract OVM_GasPriceOracle is Ownable {
......
...@@ -10,8 +10,6 @@ import { iOVM_L2ToL1MessagePasser } from "./iOVM_L2ToL1MessagePasser.sol"; ...@@ -10,8 +10,6 @@ import { iOVM_L2ToL1MessagePasser } from "./iOVM_L2ToL1MessagePasser.sol";
* of a message on L2. The L1 Cross Domain Messenger performs this proof in its * of a message on L2. The L1 Cross Domain Messenger performs this proof in its
* _verifyStorageProof function, which verifies the existence of the transaction hash in this * _verifyStorageProof function, which verifies the existence of the transaction hash in this
* contract's `sentMessages` mapping. * contract's `sentMessages` mapping.
*
* Runtime target: OVM
*/ */
contract OVM_L2ToL1MessagePasser is iOVM_L2ToL1MessagePasser { contract OVM_L2ToL1MessagePasser is iOVM_L2ToL1MessagePasser {
......
...@@ -11,8 +11,6 @@ import { L2StandardBridge } from "../messaging/L2StandardBridge.sol"; ...@@ -11,8 +11,6 @@ import { L2StandardBridge } from "../messaging/L2StandardBridge.sol";
* @title OVM_SequencerFeeVault * @title OVM_SequencerFeeVault
* @dev Simple holding contract for fees paid to the Sequencer. Likely to be replaced in the future * @dev Simple holding contract for fees paid to the Sequencer. Likely to be replaced in the future
* but "good enough for now". * but "good enough for now".
*
* Runtime target: OVM
*/ */
contract OVM_SequencerFeeVault { contract OVM_SequencerFeeVault {
......
...@@ -58,7 +58,7 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -58,7 +58,7 @@ const deployFn: DeployFunction = async (hre) => {
} }
} }
deployFn.dependencies = ['Proxy__OVM_L1ETHGateway'] deployFn.dependencies = ['Proxy__L1StandardBridge']
deployFn.tags = ['fund-accounts'] deployFn.tags = ['fund-accounts']
export default deployFn export default deployFn
...@@ -74,7 +74,7 @@ const networks = { ...@@ -74,7 +74,7 @@ const networks = {
if (contracts[i] === 'L1CrossDomainMessenger') { if (contracts[i] === 'L1CrossDomainMessenger') {
proxiedContracts.push(contracts.splice(i, 1)[0]) proxiedContracts.push(contracts.splice(i, 1)[0])
} }
if (contracts[i] === 'OVM_L1ETHGateway') { if (contracts[i] === 'Proxy__L1StandardBridge') {
proxiedContracts.push(contracts.splice(i, 1)[0]) proxiedContracts.push(contracts.splice(i, 1)[0])
} }
} }
......
...@@ -16,7 +16,7 @@ describe('OVM_SequencerFeeVault', () => { ...@@ -16,7 +16,7 @@ describe('OVM_SequencerFeeVault', () => {
let Mock__L2StandardBridge: MockContract let Mock__L2StandardBridge: MockContract
before(async () => { before(async () => {
Mock__L2StandardBridge = await smockit('OVM_L2StandardBridge', { Mock__L2StandardBridge = await smockit('L2StandardBridge', {
address: predeploys.L2StandardBridge, address: predeploys.L2StandardBridge,
}) })
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment