forked from 0xEssential/opensea-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
38 lines (38 loc) · 1.1 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
{
"name": "OpenSea Discord Bot",
"description": "A TS script to hit the OpenSea API for collection sales and send messages to Discord",
"keywords": [
"ethereum",
"nft",
"discord"
],
"repository": "https://github.com/lazyDevPro/opensea-discord-bot",
"env": {
"CONTRACT_ADDRESS": {
"description": "The address of your token contract"
},
"COLLECTION_SLUG": {
"description": "The OpenSea slug for your collection"
},
"DISCORD_BOT_TOKEN": {
"description": "The auth token for a Discord bot",
"required": true
},
"DISCORD_CHANNEL_ID": {
"description": "Your Discord channel ID (snowflake), i.e. 694927656805859499, where your Bot has access and will post",
"required": false
},
"SECONDS": {
"description": "How many seconds should we look back for sales on OpenSea. i.e. 3600 for one hour. Running more frequently may get you banned from the OpenSea API",
"required": false
}
},
"image": "heroku/nodejs",
"addons": ["scheduler"],
"formation": [],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}