Skip to content
Open
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
4 changes: 4 additions & 0 deletions docs/examples/ts/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ services:
ETHEREUM_HOSTS: http://fork:8545
L1_CHAIN_ID: 31337
FORCE_COLOR: ${FORCE_COLOR:-1}
# Pin the inbox lag to 1 for the sandbox. The network default is now 2, but the docs examples
# bridge fee juice and consume the L1->L2 message within a single checkpoint; with lag 2 the
# message isn't available yet, failing with "No L1 to L2 message found".
AZTEC_INBOX_LAG: 1
ARCHIVER_POLLING_INTERVAL_MS: 500
P2P_BLOCK_CHECK_INTERVAL_MS: 500
SEQ_POLLING_INTERVAL_MS: 500
Expand Down
2 changes: 1 addition & 1 deletion spartan/environments/network-defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ l1-contracts: &l1-contracts-defaults
# Proof & Block Configuration
#---------------------------------------------------------------------------
# Checkpoints to lag in inbox (prevents sequencer DOS attacks).
AZTEC_INBOX_LAG: 1
AZTEC_INBOX_LAG: 2
# Epochs after end that proofs are still accepted.
AZTEC_PROOF_SUBMISSION_EPOCHS: 1
# Target mana consumption per block.
Expand Down
1 change: 1 addition & 0 deletions spartan/environments/next-scenario.env
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ DESTROY_ETH_DEVNET=true
CREATE_ETH_DEVNET=true
AZTEC_EPOCH_DURATION=32
AZTEC_SLOT_DURATION=36
AZTEC_INBOX_LAG=2
ETHEREUM_CHAIN_ID=1337
LABS_INFRA_MNEMONIC="test test test test test test test test test test test junk"
FUNDING_PRIVATE_KEY="0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
Expand Down
Loading
Loading