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
c74a0197
Unverified
Commit
c74a0197
authored
Oct 27, 2023
by
Kelvin Fichter
Committed by
Kelvin Fichter
Nov 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: move envrc to top level
parent
cd156ff9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
18 deletions
+57
-18
.envrc.example
.envrc.example
+56
-0
.gitignore
.gitignore
+1
-0
.envrc.example
packages/contracts-bedrock/.envrc.example
+0
-18
No files found.
.envrc.example
0 → 100644
View file @
c74a0197
##################################################
# Getting Started #
##################################################
# Addresses and private keys for the four accounts generated in the Getting
# Started quickstart guide.
export GS_ADMIN_ADDRESS=
export GS_ADMIN_PRIVATE_KEY=
export GS_BATCHER_ADDRESS=
export GS_BATCHER_PRIVATE_KEY=
export GS_PROPOSER_ADDRESS=
export GS_PROPOSER_PRIVATE_KEY=
export GS_SEQUENCER_ADDRESS=
export GS_SEQUENCER_PRIVATE_KEY=
##################################################
# op-node Configuration #
##################################################
# The kind of RPC provider, used to inform optimal transactions receipts
# fetching. Valid options: alchemy, quicknode, infura, parity, nethermind,
# debug_geth, erigon, basic, any.
export L1_RPC_KIND=
##################################################
# Contract Deployment #
##################################################
# RPC URL for the L1 network to interact with
export L1_RPC_URL=
# Salt used via CREATE2 to determine implementation addresses
# NOTE: If you want to deploy contracts from scratch you MUST reload this
# variable to ensure the salt is regenerated and the contracts are
# deployed to new addresses (otherwise deployment will fail)
export IMPL_SALT=$(openssl rand -hex 32)
# Name for the deployed network
export DEPLOYMENT_CONTEXT=getting-started
# Optional Tenderly details for simulation link during deployment
export TENDERLY_PROJECT=
export TENDERLY_USERNAME=
# Optional Etherscan API key for contract verification
export ETHERSCAN_API_KEY=
# Private key for the contract deployer account (hardhat default account)
# WARNING: Overridden if GS_ADMIN_PRIVATE_KEY is set!
export PRIVATE_KEY=0x862285c87f8715b04957e78e38f5b6102945d2af1c5962d3339d2c37a8f24302
# Use the Getting Started admin private key as deployer if set
if [ -z "$GS_ADMIN_PRIVATE_KEY" ]
then
export PRIVATE_KEY=$GS_ADMIN_PRIVATE_KEY
fi
.gitignore
View file @
c74a0197
...
...
@@ -30,6 +30,7 @@ packages/contracts-bedrock/deployments/anvil
.env
.env*
!.env.example
!.envrc.example
*.log
.devnet
...
...
packages/contracts-bedrock/.envrc.example
deleted
100644 → 0
View file @
cd156ff9
# RPC for the network to deploy to
export ETH_RPC_URL=
# Sets the deployer's key to match the first default hardhat account
export PRIVATE_KEY=ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
# Name of the deployed network
export DEPLOYMENT_CONTEXT=getting-started
# Optional Tenderly details for a simulation link during deployment
export TENDERLY_PROJECT=
export TENDERLY_USERNAME=
export ETHERSCAN_API_KEY=
# Optional create2 salt for deterministic deployment of
# contract implementations
export IMPL_SALT=$(openssl rand -hex 32)
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