Skip to content

Commit

Permalink
Update copies
Browse files Browse the repository at this point in the history
  • Loading branch information
batphonghan committed Apr 1, 2024
1 parent f07c1cf commit c64f581
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions shared/services/config/besu-params.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import (

// Constants
const (
besuTagTest string = "hyperledger/besu:24.4.0"
besuTagProd string = "hyperledger/besu:24.4.0"
besuTagTest string = "hyperledger/besu:24.3.0"
besuTagProd string = "hyperledger/besu:24.3.0"
besuEventLogInterval int = 1000
besuMaxPeers uint16 = 25
besuStopSignal string = "SIGTERM"
Expand Down
4 changes: 2 additions & 2 deletions shared/services/config/lodestar-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import (
)

const (
lodestarTagTest string = "chainsafe/lodestar:v1.16.0"
lodestarTagProd string = "chainsafe/lodestar:v1.16.0"
lodestarTagTest string = "chainsafe/lodestar:v1.17.0"
lodestarTagProd string = "chainsafe/lodestar:v1.17.0"
defaultLodestarMaxPeers uint16 = 50
)

Expand Down
2 changes: 1 addition & 1 deletion shared/services/config/stadernode-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ func NewStadernodeConfig(cfg *StaderConfig) *StaderNodeConfig {
Network: config.Parameter{
ID: NetworkID,
Name: "Network",
Description: "The Ethereum network you want to use - select Goerli Testnet to practice with Goerli ETH, or Mainnet to stake on the real network using real ETH.",
Description: "The Ethereum network you want to use - select Holesky Testnet to practice with Holesky ETH, or Mainnet to stake on the real network using real ETH.",
Type: config.ParameterType_Choice,
Default: map[config.Network]interface{}{config.Network_All: config.Network_Mainnet},
AffectsContainers: []config.ContainerID{config.ContainerID_Api, config.ContainerID_Node, config.ContainerID_Guardian, config.ContainerID_Eth1, config.ContainerID_Eth2, config.ContainerID_Validator},
Expand Down
2 changes: 2 additions & 0 deletions shared/services/ec-manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,8 @@ func getNetworkNameFromId(networkId uint) string {
return "Ethereum Mainnet"
case 5:
return "Goerli Testnet"
case 17000:
return "Holesky Testnet"
default:
return "Unknown Network"
}
Expand Down
4 changes: 2 additions & 2 deletions stader-cli/node/update-operator-reward-address.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Note: Stader will continue to send rewards to your existing Reward Address until
You have successfully raised a request to change your Reward Address.
To confirm the Reward Address change please follow these steps:
Step 1: Visit the PermissionlessNodeRegistry Smart Contract: https://goerli.etherscan.io/address/%s#writeProxyContract#F3
Step 1: Visit the PermissionlessNodeRegistry Smart Contract: https://holesky.etherscan.io/address/%s#writeProxyContract#F3
Step 2: Confirm the Reward Address change by connecting your New Reward Address wallet with the Smart Contract and execute the "ConfirmRewardAddressChange" function.
Please refer to the Reward Address change guide here - https://www.staderlabs.com/docs-v1/Ethereum/Node-operator/permissionless-node-operator/Update-reward-address/
Expand Down Expand Up @@ -157,7 +157,7 @@ Note: Stader will continue to send rewards to your existing Reward Address until
fmt.Printf("%s %s %s\n\n", colorLightBlue, msg, colorReset)
case cfTypes.Network_Holesky:
msg := `
For node security, only your existing Reward Address can propose a change. To propose and confirm a Reward Address change, please use the PermissionlessNodeRegistry Smart Contract: https://goerli.etherscan.io/address/%s#writeProxyContract#F10
For node security, only your existing Reward Address can propose a change. To propose and confirm a Reward Address change, please use the PermissionlessNodeRegistry Smart Contract: https://holesky.etherscan.io/address/%s#writeProxyContract#F10
Follow these steps for your Reward Address change:
Step 1: Propose the Reward Address change by connecting your Existing Reward Address wallet with the Smart Contract and execute the "ProposeRewardAddress" function.
Expand Down

0 comments on commit c64f581

Please sign in to comment.