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

clients/nethermind: Cancun support #762

Merged
merged 2 commits into from
Apr 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
4 changes: 3 additions & 1 deletion clients/nethermind/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
ARG user=nethermindeth
ARG repo=hive
ARG branch=latest
FROM nethermindeth/hive:$branch
FROM $user/$repo:$branch

RUN apt-get update && apt-get install -y wget
RUN wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 -O /usr/local/bin/jq && \
Expand Down
3 changes: 3 additions & 0 deletions clients/nethermind/mapper.jq
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ def clique_engine:
"eip3860TransitionTimestamp": env.HIVE_SHANGHAI_TIMESTAMP|to_hex,
"eip4895TransitionTimestamp": env.HIVE_SHANGHAI_TIMESTAMP|to_hex,

# Cancun
"eip4844TransitionTimestamp": env.HIVE_CANCUN_TIMESTAMP|to_hex,

# Other chain parameters
"networkID": env.HIVE_NETWORK_ID|to_hex,
"chainID": env.HIVE_CHAIN_ID|to_hex,
Expand Down