Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Exzender committed Sep 7, 2020
0 parents commit 6a1f537
Show file tree
Hide file tree
Showing 68 changed files with 11,098 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true,
"es6": true
},
"parser": "babel-eslint",
"rules": {
"no-console": 0,
"indent": ["warn",
4,
{
"SwitchCase": 1
}
]
},
"overrides": [
{
"files": ["*.test.js","*.spec.js"],
"rules": {
"no-unused-expressions": "off"
}
}
]
}
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Project exclude paths
/node_modules/
/package-lock.json
/cryptpBot_errors.log
/cryptpBot_info.log
/exceptions.log
/twitter_keys.txt
/images/
/bkp/translation_vi.yaml
/bkp/translation_fr.yaml
/rpc_list.txt
/logs/
/dumps/
/click.ad.bots.txt
/вопросы_развития.txt
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: node_js
node_js:
- 9
- 10
- 12
50 changes: 50 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Crypto Tip Bot

![GitHub package.json version](https://img.shields.io/github/package-json/v/Exzender/Telegram.Crypto.Bot)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/Exzender/Telegram.Crypto.Bot)

AirDrop and tipping bot.

## Overview

AirDrop and Tipping bot for Crypto Coins

Was first introduced for a Callisto Network (https://callisto.network/)

Supported coins/chains

(CLO, ETH, ETC, BNB, LTC, BTC, USDT, NOW, AWC)

Bot works with on-chain transactions, so standard transactions fees are applied to every operation.
No other fees will be charged (except lotteries)

To start using bot first register in @Crypto_TheBot

Support the bot maintenace and development with donations
(you can simply tip the bot itself to make a donation)

## Commands

- **`/tip`** _to make tip_
- **`/give`** or **`/giveaway`** to start giveaway
- **`/rain`** or **`/airdrop`** for AirDrop
- **`/rtrain`** for AirDrop based on retweets
- **`/stat`** to get stats
- **`/pot`** for lottery
- **`/help`** with command name to get additional info

🅰️ admins only commands 🅰️
- **`/locale`** for switching language
- **`/defcoin`** for default coin for current group
- **`/deletereply`** to turn on/off messages auto-delete
- **`/permitlottery`** for disabling lottery
- **`/potnotify`** for disabling repeating pot notifications
- **`/blacklist`** to block rains for user(s)
- **`/adminonly`** to limit the use of the bot only to a group of admins
- **`/whitelist`** to manage rain whitelists

## Donate

- **BNB** `bnb1ddj9wx2hpvndk8tttr63wy06d2hzjs5qavdpac`
- **ETH** `0x2d0dcec9cb10c99a732ba65fd82ca92248542fd8`
- **ETC** `0xbAF9893257382972874Ff7A1635d28F1Ef55A981`
7 changes: 7 additions & 0 deletions commands.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
help - get more info
tip - tip user
give - giveaway coins to first who claim
rain - spread N coins among X users
pot - take part in weekly lottery
rtrain - call Rain for users who retweeted
stat - show some statistics
Loading

0 comments on commit 6a1f537

Please sign in to comment.