aboutsummaryrefslogtreecommitdiff
path: root/app.json
blob: b0f5c6c31c2e8a32c5cdcdfe931d5e9fba239f5f (plain)
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
{
    "name": "binance-spot-order-notifier",
    "description": "Binance does not currently offer notifications when orders are created, cancelled or fulfilled etc.. With this repo you will receive telegram notifications for your binance spot order status.",
    "logo": "https://i.ibb.co/WGZzx6r/Binance-Coin-BNB-icon.png",
    "repository": "https://github.com/PiyushDixit96/binance-order-notifier.git",
    "keywords": ["node", "binance","bot","market","maker","algo","crypto","spot","order","notifier","notification"],
    "env": {
      "BINANCE_API_KEY": {
        "description": "Your Binance API Key",
        "required": true
      },
      "BINANCE_SECRET_KEY": {
        "description": "Your Binance API Secret",
        "required": true
      },
      "TELEGRAM_TOKEN": {
        "description": "Telegram Key for your bot (To create one follow https://core.telegram.org/bots#6-botfather )",
        "required": true
      },
      "TELEGRAM_CHAT_ID": {
        "description": "Unique identifier for the target chat, Your Telegram Chat ID ",
        "required": true
      }
    }
 }