Skip to content

feat: add e2e devnet deployment scripts #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
May 28, 2025
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
af12443
feat: add deterministic scripts
yiweichi Apr 15, 2025
b94355e
remove volume files
yiweichi Apr 15, 2025
c1bfcf5
remove .DS_Store
yiweichi Apr 15, 2025
cfa25e7
update .gitignore
yiweichi Apr 15, 2025
06a8c77
fix: deploy issues
yiweichi Apr 16, 2025
7811cf2
clean config-contracts
yiweichi Apr 16, 2025
9450217
add .gitignore
yiweichi Apr 16, 2025
6d2f45b
add .gitignore
yiweichi Apr 16, 2025
63210c0
add .gitignore
yiweichi Apr 16, 2025
ad666aa
update .gitignore
yiweichi Apr 16, 2025
10226ae
fix: genesis path
yiweichi Apr 16, 2025
4268404
remove unused files
yiweichi Apr 16, 2025
4d47fb3
ignore scripts
yiweichi Apr 16, 2025
023f28e
add gas oracle
yiweichi Apr 16, 2025
a1f9df3
update config.toml
yiweichi Apr 16, 2025
c9bdd18
update config.toml
yiweichi Apr 16, 2025
df97231
add config-contracts.toml
yiweichi Apr 16, 2025
08adccd
update verifier
yiweichi Apr 16, 2025
b6fcc41
feat: remove bridge history config
yiweichi Apr 21, 2025
97c7f4f
rename genesis.json
yiweichi Apr 21, 2025
6ee59bc
rm balance checker
yiweichi Apr 21, 2025
355de0c
fix: generate genesis
yiweichi Apr 21, 2025
1268104
feat: init system config
yiweichi Apr 21, 2025
320d2c4
feat: reset config file paths
yiweichi Apr 21, 2025
f44e345
feat: reset config file paths
yiweichi Apr 21, 2025
929dbeb
feat: reset config file paths
yiweichi Apr 21, 2025
c0449dd
fix: path
yiweichi Apr 21, 2025
2922f69
add contract-config template
yiweichi Apr 22, 2025
0970ab9
fix: system config init check
yiweichi Apr 22, 2025
70d1cd2
fix: system config signer address
yiweichi Apr 22, 2025
06e2719
fix: SystemConfig initialize
yiweichi Apr 29, 2025
b24425f
Merge branch 'main' into e2e-devnet-deployment-script
yiweichi May 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: system config signer address
  • Loading branch information
yiweichi committed Apr 22, 2025
commit 70d1cd23562a9c3ea4c2a541306beeebe745001c
2 changes: 1 addition & 1 deletion scripts/deterministic/DeployScroll.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ contract DeployScroll is DeterministicDeployment {

function initializeSystemConfig() private {
address owner = L1_PROXY_ADMIN_ADDR;
address signer = address(0xe0553E076c1a838153f32BDb57cf09125D06cb98);
address signer = L2GETH_SIGNER_ADDRESS;
SystemConfig.MessageQueueParameters memory messageQueueParameters = SystemConfig.MessageQueueParameters({
maxGasLimit: uint32(MAX_L1_MESSAGE_GAS_LIMIT),
baseFeeOverhead: 0,
Expand Down
Loading