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
c1ebc959
Unverified
Commit
c1ebc959
authored
Nov 02, 2022
by
mergify[bot]
Committed by
GitHub
Nov 02, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3835 from ethereum-optimism/sc/ctb-fix-devnet-tests
fix(ctb): broken devnet tests
parents
8333f0f2
e146f83c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
+9
-6
008-L1StandardBridgeImpl.ts
...ages/contracts-bedrock/deploy/008-L1StandardBridgeImpl.ts
+3
-2
011-OptimismMintableERC20FactoryImpl.ts
...ts-bedrock/deploy/011-OptimismMintableERC20FactoryImpl.ts
+3
-2
012-L1ERC721BridgeImpl.ts
packages/contracts-bedrock/deploy/012-L1ERC721BridgeImpl.ts
+3
-2
No files found.
packages/contracts-bedrock/deploy/008-L1StandardBridgeImpl.ts
View file @
c1ebc959
import
{
ethers
}
from
'
ethers
'
import
{
DeployFunction
}
from
'
hardhat-deploy/dist/types
'
import
{
DeployFunction
}
from
'
hardhat-deploy/dist/types
'
import
{
predeploys
}
from
'
../src
'
import
{
predeploys
}
from
'
../src
'
...
@@ -8,7 +9,7 @@ import {
...
@@ -8,7 +9,7 @@ import {
}
from
'
../src/deploy-utils
'
}
from
'
../src/deploy-utils
'
const
deployFn
:
DeployFunction
=
async
(
hre
)
=>
{
const
deployFn
:
DeployFunction
=
async
(
hre
)
=>
{
let
L1CrossDomainMessengerProxy
let
L1CrossDomainMessengerProxy
:
ethers
.
Contract
try
{
try
{
L1CrossDomainMessengerProxy
=
await
getContractFromArtifact
(
L1CrossDomainMessengerProxy
=
await
getContractFromArtifact
(
hre
,
hre
,
...
@@ -17,7 +18,7 @@ const deployFn: DeployFunction = async (hre) => {
...
@@ -17,7 +18,7 @@ const deployFn: DeployFunction = async (hre) => {
}
catch
{
}
catch
{
L1CrossDomainMessengerProxy
=
await
getContractFromArtifact
(
L1CrossDomainMessengerProxy
=
await
getContractFromArtifact
(
hre
,
hre
,
'
L1CrossDomainMessenger
'
'
L1CrossDomainMessenger
Proxy
'
)
)
}
}
...
...
packages/contracts-bedrock/deploy/011-OptimismMintableERC20FactoryImpl.ts
View file @
c1ebc959
import
{
ethers
}
from
'
ethers
'
import
{
DeployFunction
}
from
'
hardhat-deploy/dist/types
'
import
{
DeployFunction
}
from
'
hardhat-deploy/dist/types
'
import
{
import
{
...
@@ -7,7 +8,7 @@ import {
...
@@ -7,7 +8,7 @@ import {
}
from
'
../src/deploy-utils
'
}
from
'
../src/deploy-utils
'
const
deployFn
:
DeployFunction
=
async
(
hre
)
=>
{
const
deployFn
:
DeployFunction
=
async
(
hre
)
=>
{
let
L1StandardBridgeProxy
let
L1StandardBridgeProxy
:
ethers
.
Contract
try
{
try
{
L1StandardBridgeProxy
=
await
getContractFromArtifact
(
L1StandardBridgeProxy
=
await
getContractFromArtifact
(
hre
,
hre
,
...
@@ -16,7 +17,7 @@ const deployFn: DeployFunction = async (hre) => {
...
@@ -16,7 +17,7 @@ const deployFn: DeployFunction = async (hre) => {
}
catch
(
e
)
{
}
catch
(
e
)
{
L1StandardBridgeProxy
=
await
getContractFromArtifact
(
L1StandardBridgeProxy
=
await
getContractFromArtifact
(
hre
,
hre
,
'
L1StandardBridge
'
'
L1StandardBridge
Proxy
'
)
)
}
}
...
...
packages/contracts-bedrock/deploy/012-L1ERC721BridgeImpl.ts
View file @
c1ebc959
import
{
ethers
}
from
'
ethers
'
import
{
DeployFunction
}
from
'
hardhat-deploy/dist/types
'
import
{
DeployFunction
}
from
'
hardhat-deploy/dist/types
'
import
{
predeploys
}
from
'
../src
'
import
{
predeploys
}
from
'
../src
'
...
@@ -8,7 +9,7 @@ import {
...
@@ -8,7 +9,7 @@ import {
}
from
'
../src/deploy-utils
'
}
from
'
../src/deploy-utils
'
const
deployFn
:
DeployFunction
=
async
(
hre
)
=>
{
const
deployFn
:
DeployFunction
=
async
(
hre
)
=>
{
let
L1CrossDomainMessengerProxy
let
L1CrossDomainMessengerProxy
:
ethers
.
Contract
try
{
try
{
L1CrossDomainMessengerProxy
=
await
getContractFromArtifact
(
L1CrossDomainMessengerProxy
=
await
getContractFromArtifact
(
hre
,
hre
,
...
@@ -17,7 +18,7 @@ const deployFn: DeployFunction = async (hre) => {
...
@@ -17,7 +18,7 @@ const deployFn: DeployFunction = async (hre) => {
}
catch
{
}
catch
{
L1CrossDomainMessengerProxy
=
await
getContractFromArtifact
(
L1CrossDomainMessengerProxy
=
await
getContractFromArtifact
(
hre
,
hre
,
'
L1CrossDomainMessenger
'
'
L1CrossDomainMessenger
Proxy
'
)
)
}
}
...
...
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