https://github.com/opentensor/taotip
Tao Tip Bot for Discord
https://github.com/opentensor/taotip
bittensor bot discord discord-bot tao tipping
Last synced: 3 months ago
JSON representation
Tao Tip Bot for Discord
- Host: GitHub
- URL: https://github.com/opentensor/taotip
- Owner: opentensor
- License: mit
- Created: 2021-12-16T03:15:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-21T13:34:11.000Z (over 2 years ago)
- Last Synced: 2025-01-14T14:13:59.238Z (5 months ago)
- Topics: bittensor, bot, discord, discord-bot, tao, tipping
- Language: Python
- Homepage: https://discord.com/api/oauth2/authorize?client_id=323594922584440832&permissions=274877975616&scope=bot
- Size: 458 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Invite
[Invite the bot to your server!](https://discord.com/api/oauth2/authorize?client_id=323594922584440832&permissions=274877975616&scope=bot)# Run Yourself
## Requirements
- docker
- a mongodb server
- a discord developer account
- a [subtensor](https://github.com/opentensor/subtensor/) node## Setup
Clone the repo
`git clone https://github.com/camfairchild/taotip/`
Enter the directory
`cd taotip/`
Now fill in the config.py with your info.
Build the services
`./build.sh && ./build_export-service.sh`
Docker compose up
`docker-compose up -d`## Generating a secret for DB encryption
Before using the tip bot, you must generate a secret for encrypting the wallet mnemonics on the database.
You can generate a key using the below:
`python3 -c "from cryptography.fernet import Fernet; print(Fernet.generate_key())"`