-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample_config.json
37 lines (37 loc) · 1.28 KB
/
sample_config.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
{
"telegram": {
"bot_id": "get from https://t.me/BotFather",
"recipient_id": "get from https://t.me/getidsbot"
},
"stores": [
{
"store_url": "https://opensea.io/collection/%s?search[sortAscending]=true&search[sortBy]=PRICE&search[toggles][0]=BUY_NOW",
"stats_url": "https://api.opensea.io/api/v1/collection/%s/stats",
"collection_slugs": [
"psychedelics-anonymous-genesis"
],
"max": 0.8,
"_max": "Price >= max will be recorded but not messaged on telegram",
"json_map": [
"stats",
"floor_price"
],
"_json_map": "path to traverse json. root.stats.floor_price",
"multiplier": 1,
"_multiplier": "resulting price will be multiplied by this. Useful if price is in wei"
},
{
"store_url": "https://www.magiceden.io/marketplace/%s",
"stats_url": "https://api-mainnet.magiceden.dev/v2/collections/%s/stats",
"collection_slugs": [
"gemmy"
],
"max": 4.2,
"json_map": [
"floorPrice"
],
"multiplier": 1.0E-9
}
],
"history_json_path": "history.json"
}