Skip to content

Commit 59f4d7a

Browse files
committed
Remove find vanity address
1 parent c2175c6 commit 59f4d7a

File tree

3 files changed

+0
-255
lines changed

3 files changed

+0
-255
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,10 @@ The following commands are available via the Smart Node client:
6868
- `rocketpool minipool import-key, ik` - Import the externally-derived key for a minipool that was previously a solo validator, so the Smart Node's VC manages it instead of your externally-managed VC.
6969
- `rocketpool minipool promote, p` - Promote a vacant minipool after the scrub check, completing a solo validator migration.
7070
- `rocketpool minipool refund, r` - Refund ETH belonging to the node from minipools
71-
- `rocketpool minipool reduce-bond, rb` - Manually completes the ETH bond reduction process for a minipool from 16 ETH down to 8 ETH once it is eligible. Note that `begin-bond-reduction` has been removed after Saturn 1.
7271
- `rocketpool minipool distribute-balance, d` - Distribute a minipool's ETH balance between your withdrawal address and the rETH holders.
7372
- `rocketpool minipool exit, e` - Exit staking minipools from the beacon chain
7473
- `rocketpool minipool close, c` - Withdraw any remaining balance from a minipool and close it
7574
- `rocketpool minipool delegate-upgrade, u` - Upgrade a minipool's delegate contract to the latest version
76-
- `rocketpool minipool find-vanity-address, v` - Search for a custom vanity minipool address
7775
- **claims**, l - View and claim multiple rewards and node credits
7876
- `rocketpool claims claim-all, c` - Claim multiple rewards and node credits
7977
- `rocketpool claims status, s` - View multiple rewards and node credits

rocketpool-cli/minipool/commands.go

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -336,48 +336,6 @@ func RegisterCommands(app *cli.App, name string, aliases []string) {
336336
},
337337
},
338338

339-
{
340-
Name: "find-vanity-address",
341-
Aliases: []string{"v"},
342-
Usage: "Search for a custom vanity minipool address",
343-
UsageText: "rocketpool minipool find-vanity-address [options]",
344-
Flags: []cli.Flag{
345-
cli.StringFlag{
346-
Name: "prefix, p",
347-
Usage: "The prefix of the address to search for (must start with 0x)",
348-
},
349-
cli.StringFlag{
350-
Name: "salt, s",
351-
Usage: "The salt to start searching from (must start with 0x)",
352-
},
353-
cli.IntFlag{
354-
Name: "threads, t",
355-
Usage: "The number of threads to use for searching (defaults to your CPU thread count)",
356-
},
357-
cli.StringFlag{
358-
Name: "node-address, n",
359-
Usage: "The node address to search for (leave blank to use the local node)",
360-
},
361-
cli.StringFlag{
362-
Name: "amount, a",
363-
Usage: "The bond amount to be used for the minipool, in ETH (impacts vanity address generation)",
364-
},
365-
},
366-
Action: func(c *cli.Context) error {
367-
368-
// Validate args
369-
if err := cliutils.ValidateArgCount(c, 0); err != nil {
370-
return err
371-
}
372-
373-
// Validate flags
374-
375-
// Run
376-
return findVanitySalt(c.String("prefix"), c.String("salt"), c.Int("threads"), c.String("node-address"), c.String("amount"))
377-
378-
},
379-
},
380-
381339
{
382340
Name: "rescue-dissolved",
383341
Aliases: []string{"rd"},

rocketpool-cli/minipool/vanity.go

Lines changed: 0 additions & 211 deletions
This file was deleted.

0 commit comments

Comments
 (0)