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

Update copies #143

Merged
merged 2 commits into from
Nov 8, 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: 2 additions & 2 deletions shared/services/config/geth-params.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import (

// Constants
const (
gethTagProd string = "ethereum/client-go:v1.13.2"
gethTagTest string = "ethereum/client-go:v1.13.2"
gethTagProd string = "ethereum/client-go:v1.13.4"
gethTagTest string = "ethereum/client-go:v1.13.4"
gethEventLogInterval int = 1000
gethStopSignal string = "SIGTERM"
)
Expand Down
8 changes: 6 additions & 2 deletions stader-cli/node/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
)

func registerNode(c *cli.Context, operatorName string) error {

staderClient, err := stader.NewClientFromCtx(c)
if err != nil {
return err
Expand Down Expand Up @@ -83,7 +82,12 @@ func registerNode(c *cli.Context, operatorName string) error {
}

// Log & return
fmt.Printf("Congratulation, your node is now registered on the Stader \nnetwork. Your current Operator and Reward address is the same. We \nstrongly recommend changing your Reward address. To do so, run the \nfollowing command: ~/bin/stader-cli node set-reward-address -ora <new reward address>.\n")
fmt.Println("Congratulation, your node is now registered on the Stader network. Your current Operator and Reward address is the same. We strongly recommend changing your Reward address. To do so, run the following command: ~/bin/stader-cli node set-reward-address -ora <new reward address>.")

fmt.Printf("%sNOTE: Make sure to replace <new reward address> with the New Reward Address you want to use.\n%s",
colorYellow,
colorReset)

return nil

}
8 changes: 4 additions & 4 deletions stader-cli/node/update-operator-reward-address.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ To confirm the Reward Address change please follow these steps:
Step 1: Visit the PermissionlessNodeRegistry Smart Contract: https://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://staderlabs.notion.site/staderlabs/Stader-ETHx-Reward-address-change-flow-Mainnet-Permissionless-8ef1137e9c2647c88db3911da1642ca2
Please refer to the Reward Address change guide here - https://www.staderlabs.com/docs-v1/Ethereum/Node-operator/permissionless-node-operator/Update-reward-address/

Note: Stader will continue to send rewards to your existing Reward Address until you confirm the change using your new Reward Address.
`
Expand All @@ -128,7 +128,7 @@ 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 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://staderlabs.notion.site/staderlabs/Stader-ETHx-Reward-address-change-flow-Testnet-Permissionless-db692621a305426bab2e3ad232acbc14
Please refer to the Reward Address change guide here - https://www.staderlabs.com/docs-v1/Ethereum/Node-operator/permissionless-node-operator/Update-reward-address/

Note: Stader will continue to send rewards to your existing Reward Address until you confirm the change using your new Reward Address.`
msg = fmt.Sprintf(msg, contractAddr.String())
Expand All @@ -149,7 +149,7 @@ 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.
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://staderlabs.notion.site/staderlabs/Stader-ETHx-Reward-address-change-flow-Mainnet-Permissionless-8ef1137e9c2647c88db3911da1642ca2
Please refer to the Reward Address change guide here - https://www.staderlabs.com/docs-v1/Ethereum/Node-operator/permissionless-node-operator/Update-reward-address/

Note: Stader will continue to send rewards to your existing Reward Address until you confirm the change using your New Reward Address.
`
Expand All @@ -163,7 +163,7 @@ 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.
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://staderlabs.notion.site/staderlabs/Stader-ETHx-Reward-address-change-flow-Testnet-Permissionless-db692621a305426bab2e3ad232acbc14
Please refer to the Reward Address change guide here - https://www.staderlabs.com/docs-v1/Ethereum/Node-operator/permissionless-node-operator/Update-reward-address/

Note: Stader will continue to send rewards to your existing Reward Address until you confirm the change using your New Reward Address.
`
Expand Down