An open API service indexing awesome lists of open source software.

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

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

![](./resources/img/example.png)

## 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"
}
]
}
```