-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
56 lines (56 loc) · 1.15 KB
/
Copy pathconfig.example.json
File metadata and controls
56 lines (56 loc) · 1.15 KB
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
49
50
51
52
53
54
55
56
{
"project": "CounterScarp.io",
"tool": "ScarpShield",
"version": "0.1.0",
"contracts": [],
"rpc_endpoints": {
"ethereum": "https://eth.llamarpc.com",
"polygon": "https://polygon-rpc.com",
"bsc": "https://bsc-dataseed.binance.org",
"arbitrum": "https://arb1.arbitrum.io/rpc",
"base": "https://mainnet.base.org"
},
"poll_interval_seconds": 15,
"alerts": {
"console": {
"enabled": true,
"settings": {}
},
"email": {
"enabled": false,
"settings": {
"smtp_host": "",
"smtp_port": 587,
"smtp_user": "",
"smtp_password": "",
"from_address": "",
"to_addresses": []
}
},
"discord": {
"enabled": false,
"settings": {
"webhook_url": ""
}
},
"slack": {
"enabled": false,
"settings": {
"webhook_url": ""
}
},
"telegram": {
"enabled": false,
"settings": {
"bot_token": "",
"chat_id": ""
}
}
},
"filters": {
"min_transfer_value_eth": 0.0,
"watch_admin_events": true,
"watch_large_transfers": true,
"watch_approvals": true
}
}