Skip to content

Commit da60d68

Browse files
authored
Geth v1.14.12 and Prysm v5.1.2 (#30)
1 parent a423c36 commit da60d68

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

.github/workflows/testnet-deployment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
with:
1919
submodules: 'recursive'
2020

21-
- name: Set up Go 1.21.9
21+
- name: Set up Go 1.23.0
2222
uses: actions/setup-go@v4
2323
with:
24-
go-version: '1.21.9'
24+
go-version: '1.23.0'
2525

2626
- name: Install JQ
2727
run: sudo apt-get install jq

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This setup can is can serve as a reference for building your own production depl
2020
This project utilizes Git submodules to reference the client code, notably Go-Ethereum and Prysm.
2121
However, the scripts can be configured to reference binaries you build locally, making development quicker.
2222

23-
**You will need Go 1.21, JQ and Bazel installed**.
23+
**You will need Go 1.23, JQ and Bazel installed**.
2424

2525
```bash
2626
git clone --recursive https://github.com/rzmahmood/ethereum-pos-testnet.git

build-dependencies.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ fi
1919

2020
go version
2121

22-
# Check fo version is greater than 1.21
23-
MIN_GO_VERSION="1.21" # adjust this to your requirements
22+
# Check for version is greater than 1.23
23+
MIN_GO_VERSION="1.23"
2424
GO_VERSION=$(go version | awk '{print $3}' | tr -d "go")
2525
if [[ $(echo "$MIN_GO_VERSION $GO_VERSION" | tr " " "\n" | sort -V | head -n 1) != "$MIN_GO_VERSION" ]]; then
2626
echo "Error: Go version $GO_VERSION is installed, but version $MIN_GO_VERSION or higher is required."

config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ MAX_WITHDRAWALS_PER_PAYLOAD: 16
2222
DENEB_FORK_VERSION: 0x20000093
2323
DENEB_FORK_EPOCH: 0
2424

25+
# Electra
26+
ELECTRA_FORK_VERSION: 0x20000094
27+
2528
# Time parameters
2629
SECONDS_PER_SLOT: 2
2730
SLOTS_PER_EPOCH: 32

dependencies/go-ethereum

Submodule go-ethereum updated 623 files

dependencies/prysm

Submodule prysm updated 1286 files

0 commit comments

Comments
 (0)