-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
25 lines (25 loc) · 1.06 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
{
"name": "binance-p2p-order-notifier",
"description": "Get P2P order notification when orders are opened, cancelled, paid or completed etc. With this repo you will receive telegram notifications for your binance P2P order status.",
"logo": "https://i.ibb.co/WGZzx6r/Binance-Coin-BNB-icon.png",
"repository": "https://github.com/PiyushDixit96/binance-p2p-order-notification.git",
"keywords": ["p2p", "binance","bot","market","maker","alert","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
}
}
}