-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathapp.json
33 lines (31 loc) · 980 Bytes
/
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
{
"name": "CoinGecko-Discord-Bot",
"description": "Discord bot which displays CoinGecko crypto prices.",
"repository": "https://github.com/cleot/CoinGecko-Discord-Bot",
"keywords": ["CoinGecko", "Discord", "Bot", "Crypto0", "Price", "Ticker"],
"env": {
"CONTRACT": {
"description": "Contract of the token/asset: e.g. 0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0xdac17f958d2ee523a2206206994597c13d831ec7"
},
"NAME": {
"description": "Name of the token/asset which will be shown before the price.",
"value": "USDT"
},
"CHAIN": {
"description": "Chain of the token. probably ethereum",
"value": "ethereum"
},
"DISCORD_TOKEN":{
"description": "API token of the Discord bot."
},
"CURRENCY":{
"description": "Currency",
"value": "usd"
},
"REFRESH_TIMER":{
"description": "How often should the price be refreshed in seconds.",
"value": "60"
}
}
}