Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
197c8863
Unverified
Commit
197c8863
authored
Aug 30, 2021
by
elenadimitrova
Committed by
Kelvin Fichter
Nov 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move interface definitions to implementation folders for predeploys
parent
2f6da26e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
10 deletions
+4
-10
OVM_L2CrossDomainMessenger.sol
...ereum/OVM/bridge/messaging/OVM_L2CrossDomainMessenger.sol
+2
-2
OVM_DeployerWhitelist.sol
...imistic-ethereum/OVM/predeploys/OVM_DeployerWhitelist.sol
+1
-7
OVM_L2ToL1MessagePasser.sol
...istic-ethereum/OVM/predeploys/OVM_L2ToL1MessagePasser.sol
+1
-1
iOVM_L1MessageSender.sol
...timistic-ethereum/OVM/predeploys/iOVM_L1MessageSender.sol
+0
-0
iOVM_L2ToL1MessagePasser.sol
...stic-ethereum/OVM/predeploys/iOVM_L2ToL1MessagePasser.sol
+0
-0
No files found.
packages/contracts/contracts/optimistic-ethereum/OVM/bridge/messaging/OVM_L2CrossDomainMessenger.sol
View file @
197c8863
...
...
@@ -8,8 +8,8 @@ import { Lib_CrossDomainUtils } from "../../../libraries/bridge/Lib_CrossDomainU
/* Interface Imports */
import { iOVM_L2CrossDomainMessenger } from "./iOVM_L2CrossDomainMessenger.sol";
import { iOVM_L1MessageSender } from "../../
../iOVM/
predeploys/iOVM_L1MessageSender.sol";
import { iOVM_L2ToL1MessagePasser } from "../../
../iOVM/
predeploys/iOVM_L2ToL1MessagePasser.sol";
import { iOVM_L1MessageSender } from "../../predeploys/iOVM_L1MessageSender.sol";
import { iOVM_L2ToL1MessagePasser } from "../../predeploys/iOVM_L2ToL1MessagePasser.sol";
/* External Imports */
import { ReentrancyGuard } from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
...
...
packages/contracts/contracts/optimistic-ethereum/OVM/predeploys/OVM_DeployerWhitelist.sol
View file @
197c8863
...
...
@@ -18,7 +18,7 @@ contract OVM_DeployerWhitelist {
bool public initialized;
bool public allowArbitraryDeployment;
address
override
public owner;
address public owner;
mapping (address => bool) public whitelist;
...
...
@@ -51,7 +51,6 @@ contract OVM_DeployerWhitelist {
address _owner,
bool _allowArbitraryDeployment
)
override
external
{
if (initialized == true) {
...
...
@@ -72,7 +71,6 @@ contract OVM_DeployerWhitelist {
address _deployer,
bool _isWhitelisted
)
override
external
onlyOwner
{
...
...
@@ -86,7 +84,6 @@ contract OVM_DeployerWhitelist {
function setOwner(
address _owner
)
override
public
onlyOwner
{
...
...
@@ -100,7 +97,6 @@ contract OVM_DeployerWhitelist {
function setAllowArbitraryDeployment(
bool _allowArbitraryDeployment
)
override
public
onlyOwner
{
...
...
@@ -111,7 +107,6 @@ contract OVM_DeployerWhitelist {
* Permanently enables arbitrary contract deployment and deletes the owner.
*/
function enableArbitraryContractDeployment()
override
external
onlyOwner
{
...
...
@@ -127,7 +122,6 @@ contract OVM_DeployerWhitelist {
function isDeployerAllowed(
address _deployer
)
override
external
returns (
bool
...
...
packages/contracts/contracts/optimistic-ethereum/OVM/predeploys/OVM_L2ToL1MessagePasser.sol
View file @
197c8863
...
...
@@ -2,7 +2,7 @@
pragma solidity >0.5.0 <0.8.0;
/* Interface Imports */
import { iOVM_L2ToL1MessagePasser } from ".
./../iOVM/predeploys
/iOVM_L2ToL1MessagePasser.sol";
import { iOVM_L2ToL1MessagePasser } from "./iOVM_L2ToL1MessagePasser.sol";
/**
* @title OVM_L2ToL1MessagePasser
...
...
packages/contracts/contracts/optimistic-ethereum/
i
OVM/predeploys/iOVM_L1MessageSender.sol
→
packages/contracts/contracts/optimistic-ethereum/OVM/predeploys/iOVM_L1MessageSender.sol
View file @
197c8863
File moved
packages/contracts/contracts/optimistic-ethereum/
i
OVM/predeploys/iOVM_L2ToL1MessagePasser.sol
→
packages/contracts/contracts/optimistic-ethereum/OVM/predeploys/iOVM_L2ToL1MessagePasser.sol
View file @
197c8863
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment