CSM Sentinel is a telegram bot that sends you notifications for your CSM Node Operator events.
This bot was developed and is maintained by @skhomuti, a member of the Lido Protocol community, to simplify the process of subscribing to the important events for CSM. You can either run the bot yourself or use the community-supported public instance, depending on your privacy preferences.
These bots are owned by @skhomuti: Ethereum and Holesky
Please note that no guarantee is given for the availability of the bot. Also consider privacy concerns when using a public instance.
First, you need to create a bot on Telegram. You can do this by talking to the BotFather.
Then, you need to create a .env
by copying one of the env.example.ethereum
or env.example.holesky
files and filling in the required fields:
TOKEN
: The token you received from the BotFatherWEB3_SOCKET_PROVIDER
: The websocket provider for your node. Preferably, use your own local node e.g. you already have for CSM validators. But it is also possible to use a public node of any web3 providers.
All other fields are pre-filled with the contracts from the corresponding network.
Run the CSM Sentinel using Docker compose:
docker compose up -d
Or using Docker:
docker build -t csm-sentinel .
docker volume create csm-sentinel-persistent
docker run -d --env-file=.env --name csm-sentinel -v csm-sentinel-persistent:/app/.storage csm-sentinel