-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include genesis files in sequencer docker
The idea is to include a genesis file for all officially supported networks (demo, staging, cappuccino, and eventually mainnet) so that operators can easily connect to the appropriate network just by setting the `ESPRESSO_SEQUENCER_GENESIS_FILE` environment variable to point at the appropriate bundled genesis file. Of course, operators can also connect to an unsupported chain (e.g. private testnet) by including their own genesis file via a volume.
- Loading branch information
Showing
10 changed files
with
37 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[stake_table] | ||
capacity = 200 | ||
|
||
[chain_config] | ||
chain_id = 0 | ||
base_fee = '0 wei' | ||
max_block_size = '30mb' | ||
fee_recipient = '0x0000000000000000000000000000000000000000' | ||
|
||
[header] | ||
timestamp = "1970-01-01T00:00:00Z" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[stake_table] | ||
capacity = 10 | ||
|
||
[chain_config] | ||
chain_id = 888888888 | ||
base_fee = '0 wei' | ||
max_block_size = '1mb' | ||
fee_recipient = '0x0000000000000000000000000000000000000000' | ||
|
||
[header] | ||
timestamp = "1970-01-01T00:00:00Z" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters