Skip to content
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

feat: bob testnet #155

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
48 changes: 48 additions & 0 deletions configs/808813/rollup.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"genesis": {
"l1": {
"number": 6404314,
"hash": "0x3908ceae1d5aa3135f57fa1017231bb62c2e661e966a68fe80fd7dff0a2e7564"
},
"l2": {
"number": 0,
"hash": "0xa286e5b6f82269ac1477f4136c09fb5c2ac9f005837ed2852610fc3e559b7256"
},
"l2_time": 1722352488,
"system_config": {
"batcherAddr": "0x0c2aC914b2378e5AFAeCBaB08a171c769d34947C",
"overhead": "0xbc",
"scalar": "0xa6fe0",
"gasLimit": 30000000,
"baseFeeScalar": null,
"blobBaseFeeScalar": null,
"eip1559Denominator": null,
"eip1559Elasticity": null
}
},
"block_time": 2,
"max_sequencer_drift": 600,
"seq_window_size": 3600,
"channel_timeout": 300,
"granite_channel_timeout": 50,
"l1_chain_id": 11155111,
"l2_chain_id": 808813,
"base_fee_params": {
"max_change_denominator": "0x32",
"elasticity_multiplier": "0x6"
},
"canyon_base_fee_params": {
"max_change_denominator": "0xfa",
"elasticity_multiplier": "0x6"
},
"regolith_time": 0,
"canyon_time": 0,
"delta_time": 0,
"ecotone_time": 0,
"fjord_time": 0,
"granite_time": 1725984001,
"batch_inbox_address": "0x734dDE12fD466C14a85DE838788efE6F1993c84C",
"deposit_contract_address": "0xBAAf3BAfdbd660380938b27d21c31bB7D072a799",
"l1_system_config_address": "0x3974436Fa4BB4Deb5A04ace51A704B10FF5A1f25",
"protocol_versions_address": "0x0000000000000000000000000000000000000000"
}
14 changes: 7 additions & 7 deletions contracts/opsuccinctl2ooconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"chainId": 13269,
"chainId": 808813,
"challenger": "0x0000000000000000000000000000000000000000",
"finalizationPeriod": 0,
"l2BlockTime": 2,
"owner": "0xDEd0000E32f8F40414d3ab3a830f735a3553E18e",
"proposer": "0xDEd0000E32f8F40414d3ab3a830f735a3553E18e",
"rollupConfigHash": "0x50efb1261373319cd7ba429612d9a18e585627618ec04560e7d27ba7e36d4c05",
"startingBlockNumber": 2388661,
"startingOutputRoot": "0x8ef839cbbc8228ec45ac3a17a1dc7323c0b6aff59e3f9b27a5374dcefedb4417",
"startingTimestamp": 1728264674,
"submissionInterval": 1000,
"rollupConfigHash": "0xa14f72e03e92b2ab4a762ce7b2de2857fc57276c6e6018964470cc3ab1a45df4",
"startingBlockNumber": 3087613,
"startingOutputRoot": "0x148b9d1f2a51c253bc8a034d6a7d6a8886eddeb823a69e88bb5f9e3fa0a5fbc7",
"startingTimestamp": 1728527714,
"submissionInterval": 1200,
"verifierGateway": "0x3B6041173B80E77f038f3F2C0f9744f04837185e",
"aggregationVkey": "0x00e4dc504bcd3355a4bf7382ba15d74e058aa144948edb753879055d243ebad0",
"rangeVkeyCommitment": "0x33a4ae25566346bb578b113564a7b67e359a22ea59016fdc49e0054f19228e96"
"rangeVkeyCommitment": "0x4e9a1f1d39372a7a1b2147c75a7c3c1132fdebbf1f6fc613091386e742b64658"
}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
- ${ENV_FILE:-.env}
restart: unless-stopped
ports:
- "3000:3000"
- "3003:3003"

# OP Succinct Proposer
op-succinct-proposer:
Expand Down
4 changes: 2 additions & 2 deletions proposer/succinct/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ COPY programs ./programs
# Build the server
RUN cargo build --bin server --release

# Expose port 3000
EXPOSE 3000
# Expose port 3003
EXPOSE 3003

# Run the server
CMD ["/app/target/release/server"]
2 changes: 1 addition & 1 deletion proposer/succinct/bin/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async fn main() {
.layer(DefaultBodyLimit::disable())
.layer(RequestBodyLimitLayer::new(102400 * 1024 * 1024));

let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
let listener = tokio::net::TcpListener::bind("0.0.0.0:3003").await.unwrap();

info!("Server listening on {}", listener.local_addr().unwrap());
axum::serve(listener, app).await.unwrap();
Expand Down
Loading