https://github.com/notrustverify/ntv-bot
Telegram Bot for listing informations about mixnodes and gateway
https://github.com/notrustverify/ntv-bot
bot telegram telegram-bot
Last synced: over 1 year ago
JSON representation
Telegram Bot for listing informations about mixnodes and gateway
- Host: GitHub
- URL: https://github.com/notrustverify/ntv-bot
- Owner: notrustverify
- License: gpl-3.0
- Created: 2022-08-21T15:56:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-09T22:01:31.000Z (over 2 years ago)
- Last Synced: 2023-12-09T23:18:58.387Z (over 2 years ago)
- Topics: bot, telegram, telegram-bot
- Language: Python
- Homepage:
- Size: 131 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NTV Bot
## Pre-requisites
- docker
- docker-compose
- Telegram bot
Follow this [doc](https://core.telegram.org/bots#6-botfather) about how to create a bot
## Example

## Getting started
```bash
git clone https://github.com/notrustverify/ntv-bot.git
cd ntv-bot
cp .env.example .env
```
In `.env` file, modify the value `TELEGRAM_TOKEN` by the token generated from [Botfather](https://t.me/botfather)
Start the bot `docker-compose up -d --build`
### Add your nodes
In `data/nodes.json`, add the identity key and name like the example below
```json
{
"mixnodes": [
{
"idkey": "4yRfauFzZnejJhG2FACTVQ7UnYEcFUYw3HzXrmuwLMaR",
"name": "No Trust Verify 2"
},
{
"idkey": "APxUbCmGp4K9qDzvwVADJFNu8S3JV1AJBw7q6bS5KN9E",
"name": "No Trust Verify 1"
}
]
}
```