forked from mujadmani/Easy-Telegram-Airdrop-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
105 lines (105 loc) · 3.86 KB
/
app.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "Telegram-Airdrop-Bot",
"logo": "https://miro.medium.com/max/1400/1*6A_cOfu7NqZZl16RJxEwSw.png",
"description": "Very simple telegram airdrop bot with Heroku",
"keywords": ["airdrop", "cryptocurrency", "telegram", "bot"],
"repository": "https://github.com/mujadmani/Telegram-Airdrop-Bot/",
"stack": "container",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
],
"env": {
"COIN_SYMBOL": {
"description": "Coin symbol. Example: BNB, ETH",
"required": true,
"value": "BETH"
},
"COIN_NAME": {
"description": "Coin name. Example: Bitcoin, Ethereum",
"required": true,
"value": "Baby Ethereum"
},
"AIRDROP_AMOUNT": {
"description": "How many tokens are you going to give? Example: 10000. Do not include ',' must be float number",
"required": true,
"value": "10000"
},
"AIRDROP_DATE": {
"description": "Date of reward distrubition. Example: 20 July 2021",
"required": true,
"value": "20 July 2021"
},
"AIRDROP_NETWORK": {
"description": "In which network/chain are you going to give? Example: Binance Smart Chain",
"required": false,
"value": "Binance Smart Chain"
},
"BOT_TOKEN": {
"description": "The token you get from @BotFather. Example: 1313552295:AAFxDGKhlco-FoWw-uyxInotlKvalidNEz-Q",
"required": true
},
"COIN_PRICE": {
"description": "Current price of coin Example: $0.01",
"required": true,
"value": "$0.01"
},
"REFERRAL_REWARD": {
"description": "Extra reward participants will get for each referral. Example: 1000. Do not include ',' must be float number",
"required": true,
"value": "1000"
},
"WEBSITE_URL": {
"description": "Website URL",
"required": false,
"value": "https://bitcoinbutitsjustababy.com"
},
"EXPLORER_URL": {
"description": "Blockchain explorer URL",
"required": false,
"value": "https://bscscan.com/address/0x0000000000000000000000000000000000000000"
},
"ADMIN_USERNAME": {
"description": "Bot owner's telegram username. Example: johndoe",
"required": true
},
"MAX_USERS": {
"description": "Maximum number of participants. Example: 1000. Do not include ',' must be float number",
"required": true,
"value": "1000"
},
"MAX_REFS": {
"description": "Maximum number of referrals per participant. Example: 5",
"required": true,
"value": "5"
},
"CAPTCHA_ENABLED": {
"description": "Enable or disable captcha at start. Example: YES or NO",
"required": true,
"value": "YES"
},
"TWITTER_LINKS": {
"description": "Twitter page links seperated by comma. Single Example: https://twitter.com/bitcoin. Multiple Example: https://twitter.com/bitcoin,https://twitter.com/ethereum",
"required": true,
"value": "https://twitter.com/bitcoin,https://twitter.com/ethereum"
},
"TELEGRAM_LINKS": {
"description": "Twitter page links seperated by comma. Single Example: https://t.me/single. Multiple Example: https://t.me/multi,https://t.me/ple",
"required": true,
"value": "https://t.me/multi,https://t.me/ple"
},
"DISCORD_LINKS": {
"description": "Discord server links seperated by comma. Single Example: https://discord.gg/example. Multiple Example: https://discord.gg/example,https://discord.gg/ple",
"required": true,
"value": "https://discord.gg/example"
},
"DB_URI": {
"description": "Get one from https://cloud.mongodb.com/. Replace <username> and <password>. Example: mongodb+srv://<username>:<password>@cluster0.abcde.mongodb.net/myFirstDatabase?retryWrites=true&w=majority",
"required": true
}
}
}