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
delegatedManagerChainId=delegatedManagerFlagSet.String("manager-chain-id", "", "Wormhole Chain ID for the manager chain (e.g., 65 for Dogecoin)")
250
+
delegatedManagerSetIndex=delegatedManagerFlagSet.String("manager-set-index", "", "Index of the new manager set (must be current + 1)")
251
+
delegatedManagerSet=delegatedManagerFlagSet.String("manager-set", "", "Hex-encoded manager set bytes (without leading 0x). Alternative to --threshold/--num-keys/--public-keys")
252
+
delegatedManagerThreshold=delegatedManagerFlagSet.String("threshold", "", "Number of required signatures (M) for secp256k1 multisig")
253
+
delegatedManagerNumKeys=delegatedManagerFlagSet.String("num-keys", "", "Total number of public keys (N) for secp256k1 multisig")
254
+
delegatedManagerPublicKeys=delegatedManagerFlagSet.String("public-keys", "", "Comma-separated list of compressed secp256k1 public keys (33 bytes each, hex-encoded)")
// featureFlags are additional static flags that should be published in P2P heartbeats.
310
311
featureFlags []string
311
312
notaryEnabled*bool
313
+
314
+
managerServiceEnabled*bool
315
+
dogecoinManagerSignerUri*string
312
316
)
313
317
314
318
funcinit() {
@@ -555,6 +559,9 @@ func init() {
555
559
transferVerifierEnabledChainIDs=NodeCmd.Flags().UintSlice("transferVerifierEnabledChainIDs", make([]uint, 0), "Transfer Verifier will be enabled for these chain IDs (comma-separated)")
556
560
557
561
notaryEnabled=NodeCmd.Flags().Bool("notaryEnabled", false, "Run the notary")
562
+
563
+
managerServiceEnabled=NodeCmd.Flags().Bool("managerServiceEnabled", false, "Run the manager service")
0 commit comments