forked from lucid-eleven/nft-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.44 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
{
"name": "NFT Discord Bot",
"description": "A Discord bot for getting NFT data from OpenSea",
"logo": "https://i.imgur.com/g9c44tp.png",
"keywords": [
"erc721",
"nft",
"discord",
"opensea"
],
"repository": "https://github.com/lucid-eleven/nft-discord-bot",
"env": {
"CONTRACT_ADDRESS": {
"description": "Ethereum address for the NFT Smart Contract",
"required": true
},
"DISCORD_BOT_TOKEN": {
"description": "Pretty self explanatory",
"required": true
},
"DISCORD_SALES_CHANNEL_ID": {
"description": "The discord channel id where sales events should be posted to, should look like a long number",
"required": true
},
"DISCORD_TOKEN_COMMAND": {
"description": "The command word you'd like the bot to respond to for posting token information, pick a simple word that represents the collection. Default: token",
"required": false
},
"OPEN_SEA_API_KEY": {
"description": "Contact OpenSea to request an API key at https://docs.opensea.io/reference#request-an-api-key. The bot will work without it, but heavy use may result in being blocked.",
"required": false
},
"OPEN_SEA_COLLECTION_NAME": {
"description": "The collection slug name on OpenSea, get this from the browser when you are viewing a collection.",
"required": true
}
},
"image": "heroku/nodejs",
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}