-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from OffchainLabs/erc20-based-bridge
Add support for Orbit token bridge
- Loading branch information
Showing
52 changed files
with
8,242 additions
and
1,223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
## Goerli - Deploy L1TokenBridgeCreator | ||
ARB_GOERLI_RPC="" | ||
ARB_GOERLI_DEPLOYER_KEY="" | ||
ORBIT_RPC="" | ||
## Rollup on top of which token bridge will be created | ||
ROLLUP_ADDRESS="" | ||
ROLLUP_OWNER="" | ||
L1_TOKEN_BRIDGE_CREATOR="" | ||
# needed for verification | ||
L1_RETRYABLE_SENDER="" | ||
|
||
## RPC endpoints | ||
BASECHAIN_RPC="" | ||
ORBIT_RPC="" | ||
|
||
## Deployer key used for deploying creator and creating token bridge | ||
BASECHAIN_DEPLOYER_KEY="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
.gitignore | ||
.env | ||
node_modules | ||
.vscode/ | ||
|
||
#Hardhat files | ||
cache | ||
build | ||
artifacts | ||
deployment.json | ||
|
||
#Foundry files | ||
out/ | ||
forge-cache/ | ||
|
||
#Storage layout test files | ||
test/storage/*-old.dot | ||
|
||
# local deployment files | ||
network.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[submodule "lib/forge-std"] | ||
path = lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std | ||
[submodule "lib/nitro-contracts"] | ||
path = lib/nitro-contracts | ||
url = [email protected]:OffchainLabs/nitro-contracts.git | ||
branch = feature-orbit-bridge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.