This is an Eclair plugin that sends notifications in the form of NIP-04 encrypted direct messages to the node operator(s) via a Nostr relay.
First you need to build its dependencies
git clone https://github.com/ACINQ/eclair.git
cd eclair/
git checkout v0.9.0
mvn install -DskipTests=true
Then build the plugin
git clone https://github.com/rorp/eclair-nostr-bot.git
cd eclair-nostr-bot/
mvn install
The last mvn
command will put the plugin's JAR file into target
directory.
Simply add the JAR file name to the Eclair node command line:
<PATH_TO_YOUR_ECLAIR_INSTALLATION>/eclair-node.sh target/eclair-nostr-bot_2.13-0.9.0.jar
In eclair.conf add:
Config Parameter | Description | Default Value |
---|---|---|
eclair.nostr.alarmbot.relay | A URL of a Nostr relay. Consider using a private relay or a public one that supports NIP-42. | |
eclair.nostr.alarmbot.seckey | An optional bot's private key in NIP-19 format. If absent the bot will generate a private key and store it in nostralarmbot.key file. |
|
eclair.nostr.alarmbot.receivers | A list of receivers' public keys in NIP-19 format. | |
eclair.nostr.alarmbot.eventExpiration | An optional event expiration duration. | never expire |
eclair.nostr.alarmbot.useProxy | Use SOCKS5 proxy if the Eclair node is configured to use it. | true |