You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prompter.EXPECT().InputInt64("Number of validators", int64(1)).Return(int64(1), nil),
131
131
prompter.EXPECT().InputInt64("Existing validators. This number will be used as the initial index for the generated keystores.", int64(0)).Return(int64(0), nil),
prompter.EXPECT().InputInt64("Number of validators", int64(1)).Return(int64(1), nil),
751
751
prompter.EXPECT().InputInt64("Existing validators. This number will be used as the initial index for the generated keystores.", int64(0)).Return(int64(0), nil),
prompter.EXPECT().InputList("Insert relay URLs if you don't want to use the default values listed below", configs.NetworksConfigs()[NetworkMainnet].RelayURLs, gomock.AssignableToTypeOf(func([]string) error { returnnil })).Return(configs.NetworksConfigs()[NetworkMainnet].RelayURLs, nil),
prompter.EXPECT().InputInt64("Validator grace period. This is the number of epochs the validator will wait for security reasons before starting", int64(1)).Return(int64(2), nil),
898
+
prompter.EXPECT().Input("Graffiti to be used by the validator (press enter to skip it)", "", false, gomock.AssignableToTypeOf(ui.GraffitiValidator)).Return("test graffiti", nil),
prompter.EXPECT().InputInt64("Number of validators", int64(1)).Return(int64(1), nil),
913
+
prompter.EXPECT().InputInt64("Existing validators. This number will be used as the initial index for the generated keystores.", int64(0)).Return(int64(0), nil),
cmd.PersistentFlags().BoolVar(&flags.lidoNode, "lido", false, "Enable Lido CSM compatible keys. Similar to using --eth-withdrawal-address with the Lido Withdrawal Vault address.")
cmd.Flags().StringVarP(&flags.path, "path", "p", configs.DefaultAbsSedgeDataPath, "Absolute path to keystore folder. e.g. /home/user/keystore")
220
220
cmd.Flags().StringVar(&flags.ethWithdrawalAddress, "eth-withdrawal-address", "", "If this field is set and valid, the given Eth address will be used to create the withdrawal credentials. Otherwise, it will generate withdrawal credentials with the mnemonic-derived withdrawal public key in EIP-2334 format.")
221
221
cmd.Flags().StringVar(&flags.mnemonicPath, "mnemonic-path", "", "Path to file with a existing mnemonic to use.")
- Node Operator ID: Unique identifier for the node operator.
229
230
- Reward Address: Address that is the ultimate recipient of the rewards
230
231
- Manager Address: Address used to perform routine management operations regarding the CSM Node Operator.`,
231
232
232
233
keysInfo: `
233
-
## Description
234
+
## Description
234
235
- Stuck Keys Count: Number of keys stuck in the system. A validator is considered to be "stuck" if it has not been exited timely following an exit signal from the protocol.
235
236
- Refunded Keys Count: Number of keys that were refunded.
236
237
- Exited Keys Count: Number of keys that have exited.
237
238
- Deposited Keys Count: Number of keys currently deposited.
238
239
- Depositable Keys Count: Number of keys eligible for deposits.`,
239
240
240
241
queueInfo: `
241
-
## Description
242
+
## Description
242
243
- Keys in the deposit queue: Number of the depositable keys that are in the deposit queue.`,
243
244
244
245
bondInfo: `
245
-
## Description
246
+
## Description
246
247
- Bond : a security collateral that Node Operators must submit before uploading validator keys into CSM. It covers possible losses caused by inappropriate actions on the Node Operator's side.
247
248
- Current Bond: The current amount of bonded ETH.
248
249
- Required Bond: The required amount of ETH to maintain.
249
250
- Excess Bond: The amount of excess bond over the required amount.
250
251
- Missed Bond: The amount of bond that is missing.`,
251
252
252
253
rewardsInfo: `
253
-
## Description
254
+
## Description
254
255
- Non-claimed Rewards: The amount of rewards available for claiming.`,
0 commit comments