-
Notifications
You must be signed in to change notification settings - Fork 26
/
help.hpp
50 lines (36 loc) · 1.7 KB
/
help.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef HPP_HELP
#define HPP_HELP
#include <string>
const std::string g_strHelp = R"(
Usage: ./profanity [OPTIONS]
Help:
--help Show help information
Modes with arguments:
--matching Matching input, file or single address.
Matching configuration:
--prefix-count Minimum number of prefix matches, default 0
--suffix-count Minimum number of suffix matches, default 6
--quit-count Exit the program when the generated number is greater than, default 0
Device control:
--skip Skip device given by index
Output control:
--output The file to output the results to
--post The url to post the results to
Examples:
./profanity --matching profanity.txt
./profanity --matching profanity.txt --skip 1
./profanity --matching profanity.txt --prefix-count 1 --suffix-count 8
./profanity --matching profanity.txt --prefix-count 1 --suffix-count 10 --quit-count 1
./profanity --matching profanity.txt --output result.txt
./profanity --matching profanity.txt --post http://127.0.0.1:7002/api
./profanity --matching TUqEg3dzVEJNQSVW2HY98z5X8SBdhmao8D --prefix-count 2 --suffix-count 4 --quit-count 1
About:
Profanity is a vanity address generator for tron: https://tron.network/
The software is modified based on ethereum profanity: https://github.com/johguse/profanity
Please make sure the program you are running is download from: https://github.com/GG4mida/profanity-tron
Author: telegram -> @jackslowfak
Fbi Warning:
Before using a generated vanigity address, always verify that it matches the printed private key.
And always multi-sign the address to ensure account security.
)";
#endif /* HPP_HELP */