This commit is contained in:
Joren 2024-06-18 17:31:53 +02:00
parent 06b66dd76f
commit dca627e422
Signed by: Joren
GPG Key ID: 280E33DFBC0F1B55

View File

@ -0,0 +1,27 @@
# Discord Regex Monitor
### Example Config
```toml
[DISCORD]
BOT_TOKEN = ""
[[SERVERS]]
SERVER_ID = "1050204101826334999"
OUTPUT_CHANNEL_ID = "1250585834726621999"
PREFIX_ENABLED = true
[SERVERS.COIN_REGEXES]
Bitcoin = "[13][a-km-zA-HJ-NP-Z1-9]{25,34}"
Ethereum = "0x[a-fA-F0-9]{40}"
[SERVERS.CHANNEL_BLACKLIST]
CHANNELS = ["1250537334550827078"]
[[SERVERS]]
SERVER_ID = "1250885747062345999"
OUTPUT_CHANNEL_ID = "1250585834726621999"
PREFIX_ENABLED = true
[SERVERS.COIN_REGEXES]
Ethereum = "0x[a-fA-F0-9]{40}"
Solana = "[1-9A-HJ-NP-Za-km-z]{32,44}"
[SERVERS.CHANNEL_BLACKLIST]
CHANNELS = []
```