forked from MattyIce/postpromoter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-example.json
66 lines (66 loc) · 2.68 KB
/
config-example.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"rpc_nodes": [
"https://api.steemit.com",
"https://rpc.buildteam.io",
"https://steemd.minnowsupportproject.org",
"https://steemd.privex.io",
"https://gtg.steem.house:8090"
],
"disabled_mode": false,
"detailed_logging": false,
"owner_account": "yabapmatt",
"account": "your_bot_account_name",
"memo_key": "your_private_memo_key",
"posting_key": "your_private_posting_key",
"active_key": "your_private_active_key",
"auto_claim_rewards" : true,
"post_rewards_withdrawal_account": "withdraw_liquid_post_rewards_to_account",
"min_bid": 0.1,
"max_bid": 999,
"batch_vote_weight": 100,
"max_post_age": 144,
"allow_comments": true,
"currencies_accepted": ["SBD", "STEEM"],
"refunds_enabled": true,
"no_refund": ["bittrex", "poloniex", "openledger", "blocktrades", "minnowbooster"],
"flag_signal_accounts": ["spaminator", "cheetah", "steemcleaners", "mack-bot", "blacklist-a"],
"comment_location": "comment.md",
"blacklist_location": "blacklist",
"refund_blacklist": false,
"blacklist_donation_account": "steemcleaners",
"auto_withdrawal": {
"active": true,
"accounts": [
{
"name": "$delegators",
"stake": 8000
},
{
"name": "account2",
"stake": 2000
}
],
"frequency": "daily",
"execute_time": 20,
"memo": "# Daily Earnings - {balance} | Thank you!"
},
"api": {
"enabled": true,
"port": 3000
},
"transfer_memos": {
"bot_disabled": "Refund for invalid bid: {amount} - The bot is currently disabled.",
"below_min_bid": "Refund for invalid bid: {amount} - Min bid amount is {min_bid}.",
"above_max_bid": "Refund for invalid bid: {amount} - Max bid amount is {max_bid}.",
"invalid_currency": "Refund for invalid bid: {amount} - Bids in {currency} are not accepted.",
"no_comments": "Refund for invalid bid: {amount} - Bids not allowed on comments.",
"already_voted": "Refund for invalid bid: {amount} - Bot already voted on this post.",
"max_age": "Refund for invalid bid: {amount} - Posts cannot be older than {max_age}.",
"invalid_post_url": "Refund for invalid bid: {amount} - Invalid post URL in memo.",
"blacklist_refund": "Refund for invalid bid: {amount} - The author of this post is on the blacklist.",
"blacklist_no_refund": "Bid is invalid - The author of this post is on the blacklist.",
"blacklist_donation": "Bid from blacklisted/flagged user sent as a donation. Thank you!",
"flag_refund": "Refund for invalid bid: {amount} - This post has been flagged by one or more spam / abuse indicator accounts.",
"flag_no_refund": "Bid is invalid - This post has been flagged by one or more spam / abuse indicator accounts."
}
}