forked from cerc-io/stack-orchestrator
1881554ae0
* Initial version
* Update readme
* Build op-geth container
* Add optimism go code containers
* Add optimism contracts container
* Update optimism contracts container build
* Add fixturenet-optimism-contracts service to deploy L1 contracts
* Add fixturenet-optimism op-node and op-geth
* Avoid reading addresses from a file when sending balances
* Fixes for running op-geth container
* Fix image name and command in optimism-contracts service
* Add a healthcheck to lighthouse bootnode to avoid failing eth txs
* Avoid using hardhat ethers to send balances from an account
* Update script to send balance to L1 bridge proxy contract
* Implement op-node container
* Wait for a finalized L1 block to exist
* Fix for running op-batcher
* Add a todo for restart support
* Integrate optimism-contracts service and update instructions
* Update clean-up to remove docker volumes
* Update volume access permissions
* Add a todo to replace foundry usage with web3 js
* Add known issues
* Fix README
* Fix indentation
* Update known issues
---------
Co-authored-by: David Boreham <david@bozemanpas.com>
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-authored-by: nabarun <nabarun@deepstacksoft.com>
Former-commit-id: fc522140ba
22 lines
546 B
Bash
Executable File
22 lines
546 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Get BACTHER_KEY from keys.json
|
|
BATCHER_KEY=$(jq -r '.Batcher.privateKey' /l2-accounts/keys.json | tr -d '"')
|
|
|
|
op-batcher \
|
|
--l2-eth-rpc=http://op-geth:8545 \
|
|
--rollup-rpc=http://op-node:8547 \
|
|
--poll-interval=1s \
|
|
--sub-safety-margin=6 \
|
|
--num-confirmations=1 \
|
|
--safe-abort-nonce-too-low-count=3 \
|
|
--resubmission-timeout=30s \
|
|
--rpc.addr=0.0.0.0 \
|
|
--rpc.port=8548 \
|
|
--rpc.enable-admin \
|
|
--max-channel-duration=1 \
|
|
--target-l1-tx-size-bytes=2048 \
|
|
--l1-eth-rpc=$L1_RPC \
|
|
--private-key=$BATCHER_KEY
|