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

add: maxCodeSizeTransition parameter to align with NE client #7

Merged
merged 1 commit into from
Jun 27, 2023
Merged
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
1 change: 1 addition & 0 deletions EnergyWebChain.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"gasLimitBoundDivisor": "0x400",
"minGasLimit": "0x1388",
"maxCodeSize": "0x6000",
"maxCodeSizeTransition": "0x0",
"eip140Transition": "0x0",
"eip211Transition": "0x0",
"eip214Transition": "0x0",
Expand Down
28 changes: 20 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,41 @@ This repository is used for automatic updates of the live network and must not b

| Chain | Checksum | URL |
| ---------------- |:-----------------------------------------------------------------: | :------ |
| Volta | `2c2d73850c209de89b1ef55e329b59661a4047cae340d44b343fc075c602f976` | [https://raw.githubusercontent.com/energywebfoundation/ewf-chainspec/master/Volta.json](https://raw.githubusercontent.com/energywebfoundation/ewf-chainspec/master/Volta.json) |
| EnergyWebChain | `7c940552f47b50de584260e1d851e8f18b147109de9d68e2a1f1b363c24a4dc9` | [https://raw.githubusercontent.com/energywebfoundation/ewf-chainspec/master/EnergyWebChain.json](https://raw.githubusercontent.com/energywebfoundation/ewf-chainspec/master/EnergyWebChain.json) |
| Volta | `a3703455d145171a33f4ae31ba8b1630a551b0db7fdacd7e685574d5a9fc3afb` | [https://raw.githubusercontent.com/energywebfoundation/ewf-chainspec/master/Volta.json](https://raw.githubusercontent.com/energywebfoundation/ewf-chainspec/master/Volta.json) |
| EnergyWebChain | `2f4b9138c08f9048cbdd3c3296d0f21cfb7ac30704db626d06440379459bedec` | [https://raw.githubusercontent.com/energywebfoundation/ewf-chainspec/master/EnergyWebChain.json](https://raw.githubusercontent.com/energywebfoundation/ewf-chainspec/master/EnergyWebChain.json) |

## Maintainers

**Primary**: Adam Nagy (@ngyam)
**Primary**: EWF DevOps (<[email protected]>)

## Quickstart

Connect to the Energy Web Chain using the latest stable version of Parity Ethereum:
Connect to the Energy Web Chain using the latest stable version of OpenEthereum(Previously Parity Ethereum):

```
parity --chain "EnergyWebChain.json"
```shell
openethereum --chain "EnergyWebChain.json"
```

To connect to the Volta TEST network, type:

```shell
openethereum --chain "Volta.json"
```
parity --chain "Volta.json"

Connect to the Energy Web Chain using the latest stable version of Nethermind:

```shell
nethermind -c energyweb
```

## How to verify checksum
To connect to the Volta TEST network, type:

```shell
nethermind -c volta
```

## How to verify checksum

```shell
openssl dgst -sha256 path/to/your/chainspec.json
```
1 change: 1 addition & 0 deletions Volta.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"gasLimitBoundDivisor": "0x400",
"minGasLimit": "0x1388",
"maxCodeSize": "0x6000",
"maxCodeSizeTransition": "0x0",
"eip140Transition": "0x0",
"eip211Transition": "0x0",
"eip214Transition": "0x0",
Expand Down