-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
48 lines (48 loc) · 1.49 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
{
"name": "CryptOrchids Watering Can",
"description": "A Hardhat script for watering your CryptOrchids",
"keywords": [
"ehtereum",
"nft",
"cryptorchids"
],
"website": "https://cryptorchids.io",
"repository": "https://github.com/sbauch/cryptorchids-watering-can",
"logo": "https://cryptorchids.io/blue-vanda.df75d507.png",
"env": {
"CRYPTORCHIDS_CONTRACT_ADDRESS": {
"description": "The address of the CryptOrchids ERC721 contract",
"value": "0x196c4C7291D47BCDBbf37ab7ec9AE7ECB21Aef52"
},
"ETH_NODE_URI": {
"description": "An Infura API URL, i.e. https://mainnet.infura.io/v3/{{yourAPIKey}}"
},
"DISCORD_BOT_TOKEN": {
"description": "The auth token for a Discord bot",
"required": false
},
"DISCORD_USER_ID": {
"description": "Your Discord user ID (snowflake), i.e. 694927656805859499",
"required": false
},
"DISCORD_SERVER_ID": {
"description": "Your Discord server ID, i.e. 823342438768050187",
"required": false
},
"WALLET_PRIVATE_KEY": {
"description": "Your Ethereum wallet private key for the wallet that holds CryptOrchids - consider using a separate wallet for this purpose!"
},
"HARDHAT_NETWORK" :{
"description": "Ethereum network, probably mainnet unless you are a CryptOrchids team member",
"value": "mainnet"
}
},
"image": "heroku/nodejs",
"addons": ["scheduler"],
"formation": [],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}