https://github.com/philipinho/trxplorer-bot
https://github.com/philipinho/trxplorer-bot
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/philipinho/trxplorer-bot
- Owner: Philipinho
- Created: 2019-05-02T08:17:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-10T00:58:04.000Z (about 6 years ago)
- Last Synced: 2025-04-03T22:48:29.376Z (about 2 months ago)
- Language: Java
- Size: 65.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TRXPlorer-Bot
Telegram bot for looking up transactions on the Tron blockchain via [TRXPlorer.io](https://trxplorer.io) API.# Build requirements
* Gradle
* JDK 8# Build project
Before building, place your bot username and token in the `/src/main/java/TronBot.java` file.
```
git clone https://github.com/philipinho/trxplorer-bot.git
$ cd trxplorer-bot
$ gradle build
```# Running the bot
```$ java -jar build/libs/trxplorer-bot-1.0-SNAPSHOT.jar```To run bot continuously after closing the session use `nohup`
```$ nohup java -jar build/libs/trxplorer-bot-1.0-SNAPSHOT.jar &```