You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/index.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -618,7 +618,7 @@ A Trigger defines actions to take when monitored conditions are met. Triggers ca
618
618
"value": "https://hooks.slack.com/services/A/B/C"
619
619
},
620
620
"message": {
621
-
"title": "large_transfer_slack triggered",
621
+
"title": "${monitor.name} triggered",
622
622
"body": "Large transfer of ${events.0.args.value} USDC from ${events.0.args.from} to ${events.0.args.to} | https://etherscan.io/tx/${transaction.hash}#eventlog"
"body": "Large transfer of ${events.0.args.value} USDC from ${events.0.args.from} to ${events.0.args.to} | https://etherscan.io/tx/${transaction.hash}#eventlog"
"body": "**Large transfer** of **${events.0.args.value} USDC** from `${events.0.args.from}` to `${events.0.args.to}`\n[View on Etherscan](https://etherscan.io/tx/${transaction.hash}#eventlog)"
Copy file name to clipboardExpand all lines: examples/config/triggers/slack_notifications.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
"value": "https://hooks.slack.com/services/A/B/C"
9
9
},
10
10
"message": {
11
-
"title": "large_transfer_slack triggered",
11
+
"title": "${monitor.name} triggered",
12
12
"body": "Large transfer of ${events.0.args.value} USDC from ${events.0.args.from} to ${events.0.args.to} | https://etherscan.io/tx/${transaction.hash}#eventlog"
13
13
}
14
14
}
@@ -22,7 +22,7 @@
22
22
"value": "https://hooks.slack.com/services/A/B/C"
23
23
},
24
24
"message": {
25
-
"title": "large_transfer_slack triggered",
25
+
"title": "${monitor.name} triggered",
26
26
"body": "*USDC Transfer Details*\n*Amount:* ${events.0.args.value} USDC\n*From:* ${events.0.args.from}\n*To:* ${events.0.args.to}\n*Transaction:* <https://etherscan.io/tx/${transaction.hash}#eventlog|View on Etherscan>"
Copy file name to clipboardExpand all lines: examples/config/triggers/telegram_notifications.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
"chat_id": "9876543210",
11
11
"disable_web_preview": true,
12
12
"message": {
13
-
"title": "large_transfer_telegram triggered",
13
+
"title": "${monitor.name} triggered",
14
14
"body": "Large transfer of ${events.0.args.value} USDC from ${events.0.args.from} to ${events.0.args.to} | https://etherscan.io/tx/${transaction.hash}#eventlog"
15
15
}
16
16
}
@@ -26,7 +26,7 @@
26
26
"chat_id": "9876543210",
27
27
"disable_web_preview": true,
28
28
"message": {
29
-
"title": "large_transfer_telegram triggered",
29
+
"title": "${monitor.name} triggered",
30
30
"body": "*USDC Transfer Details*\n*Amount:* ${events.0.args.value} USDC\n*From:* ${events.0.args.from}\n*To:* ${events.0.args.to}\n*Transaction:* [View on Etherscan](https://etherscan.io/tx/${transaction.hash}#eventlog)"
Copy file name to clipboardExpand all lines: examples/config/triggers/webhook_notifications.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
"Content-Type": "application/json"
17
17
},
18
18
"message": {
19
-
"title": "large_transfer_webhook triggered",
19
+
"title": "${monitor.name} triggered",
20
20
"body": "Large transfer of ${events.0.args.value} USDC from ${events.0.args.from} to ${events.0.args.to} | https://etherscan.io/tx/${transaction.hash}#eventlog"
21
21
}
22
22
}
@@ -38,7 +38,7 @@
38
38
"Content-Type": "application/json"
39
39
},
40
40
"message": {
41
-
"title": "large_transfer_webhook triggered",
41
+
"title": "${monitor.name} triggered",
42
42
"body": "# USDC Transfer Alert\n\n**Large transfer detected**\n\n- **Amount:** ${events.0.args.value} USDC\n- **From:** `${events.0.args.from}`\n- **To:** `${events.0.args.to}`\n\n[View on Etherscan](https://etherscan.io/tx/${transaction.hash}#eventlog)"
43
43
}
44
44
}
@@ -60,7 +60,7 @@
60
60
"Content-Type": "application/json"
61
61
},
62
62
"message": {
63
-
"title": "large_swap_by_dex_webhook triggered",
63
+
"title": "${monitor.name} triggered",
64
64
"body": "${monitor.name} triggered because of a large swap of ${functions.0.args.out_min} tokens | https://stellar.expert/explorer/public/tx/${transaction.hash}"
0 commit comments