https://github.com/yungwine/ton-connect-bot
A simple bot written on Python to interact with TON wallets using Ton Connect protocol
https://github.com/yungwine/ton-connect-bot
Last synced: about 2 months ago
JSON representation
A simple bot written on Python to interact with TON wallets using Ton Connect protocol
- Host: GitHub
- URL: https://github.com/yungwine/ton-connect-bot
- Owner: yungwine
- Created: 2023-10-17T15:53:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-08T03:18:59.000Z (over 1 year ago)
- Last Synced: 2023-11-08T08:28:11.913Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ton-connect-bot
A simple bot written on Python to interact with TON wallets using Ton Connect protocolThe running public instance can be found at https://t.me/test_tonconnect_bot
## How to launch
### Redis
If you want to use permanent TON Connect storage you should [set up Redis](https://redis.io/docs/getting-started/) or any other database.### Install dependencies:
```bash
pip install -r requirements.txt
```### Set up `.env`:
```dotenv
TOKEN='1111:ABCD' # your bot token here
MANIFEST_URL='https://raw.githubusercontent.com/XaBbl4/pytonconnect/main/pytonconnect-manifest.json'
```### Run bot
```python
python3 src/main.py
```