Skip to content
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
8 changes: 8 additions & 0 deletions .github/workflows/deploy-stader-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,11 @@ jobs:
- name: Build & Release Stader Node CLI
run: |
./build-release.sh -a -v ${{ steps.meta.outputs.tag }}

- name: Generate CLI checksums
run: |
VERSION=${{ steps.meta.outputs.tag }}
cd build/$VERSION
sha256sum stader-cli-* > checksums.txt
echo "Generated checksums:"
cat checksums.txt
1 change: 1 addition & 0 deletions install/scripts/start-bn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ if [ "$CC_CLIENT" = "prysm" ]; then
--jwt-secret=/secrets/jwtsecret \
--api-timeout 20s \
--enable-experimental-backfill \
--blob-storage-layout=by-epoch \
$BN_ADDITIONAL_FLAGS"

if [ ! -z "$MEV_BOOST_URL" ]; then
Expand Down
8 changes: 4 additions & 4 deletions shared/services/config/prysm-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ import (
)

const (
prysmBnTest string = "gcr.io/offchainlabs/prysm/beacon-chain:v7.0.0"
prysmBnProd string = "gcr.io/offchainlabs/prysm/beacon-chain:v7.0.0"
prysmVcTest string = "gcr.io/offchainlabs/prysm/validator:v7.0.0"
prysmVcProd string = "gcr.io/offchainlabs/prysm/validator:v7.0.0"
prysmBnTest string = "gcr.io/offchainlabs/prysm/beacon-chain:v7.1.0"
prysmBnProd string = "gcr.io/offchainlabs/prysm/beacon-chain:v7.1.0"
prysmVcTest string = "gcr.io/offchainlabs/prysm/validator:v7.1.0"
prysmVcProd string = "gcr.io/offchainlabs/prysm/validator:v7.1.0"

defaultPrysmRpcPort uint16 = 5053
defaultPrysmOpenRpcPort bool = false
Expand Down
2 changes: 1 addition & 1 deletion shared/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package shared

const BinaryBucket string = "/stader-node-build/permissionless"
const DockerAccount string = "staderlabs"
const StaderVersion string = "1.7.1"
const StaderVersion string = "1.7.2"

const Logo string = `
_____ _ _ _ _ 𝅺
Expand Down
10 changes: 10 additions & 0 deletions stader-cli/service/migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ func migrate(c *cli.Context) (runBeforeUpgrades, rundAfterUpgrades []ConfigUpgra
return nil, nil, err
}

v172, err := parseVersion("1.7.2")
if err != nil {
return nil, nil, err
}

// Create the collection of upgraders
upgraders := []ConfigUpgrader{
{
Expand Down Expand Up @@ -150,6 +155,11 @@ func migrate(c *cli.Context) (runBeforeUpgrades, rundAfterUpgrades []ConfigUpgra
upgradeFunc: func(_ *cli.Context) error { return nil },
needInstall: true,
},
{
version: v172,
upgradeFunc: func(_ *cli.Context) error { return nil },
needInstall: true,
},
}

staderClient, err := stader.NewClientFromCtx(c)
Expand Down