Huseyinnurbaki / crypto-watchdog

Crypto Watchdog is an open-source developer friendly project, periodically queries crypto market and notifies potential pumps & recently added tokens/coins via web-hooks.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bg


BUILD Docker Image Version (latest by date) GitHub release (latest SemVer including pre-releases) Docker Image Size (latest semver) Docker Pulls

Crypto Watchdog is open-source containerized crypto market observer service.

Finds new listed coins every hour and Queries coins/tokens every 45 minutes & returns the ones increased or decreased more than %10 in an hour & notifies google chat room & Slack Channel & Telegram or your services.

Providers

Quickstart ๐Ÿš€

Quickstart without cloning the repoistory.

Image tag "latest" is not a stable tag. Always run the image with a specific semantic version tag. See Releases section to find version tags.

Docker (Alternative 1)

$ docker run -d \
    --env CMC_PRO_API_KEY=<YOUR_KEY> \
    --env GOOGLE_CHAT_API_URL=<YOUR_HOOK> \
    --env SLACK_API_URL=<YOUR_HOOK> \
    --env HOURLY_PERCENTAGE=12 \
    --env TELEGRAM_API_URL=<YOUR_HOOK> \
    hhaluk/crypto-watchdog:0.4.1

Tip: include parse_mode=markdown at the end of your dynamic Telegram Url. https://api.telegram.org/botXXXXXXX:XXXXXXXXXXXXXXXX/sendMessage?chat_id=XXXXXXXXXXXX&parse_mode=markdown

All set. โœ…

Kubernetes (Alternative 2)

  • Copy standard-deployment.yaml on your machine & place your environment variables if required. (otherwise remove unused name/value pairs)
$ kubectl apply -f standard-deployment.yaml

Environment Variables

Name Mandatory Requires Description
CMC_PRO_API_KEY False - Enables coinmarketcap queries.
BITQUERY_API_KEY False - Enables bitquery queries. Returns new listed coins.
GOOGLE_CHAT_API_URL True - Notifies Google chat room. Enables Google chat notifications.
SLACK_API_URL False - Notifies Slack channel. Enables Slack Channel notifications.
TELEGRAM_API_URL False - Notifies Telegram channel. Enables Telegram Channel notifications.
CUSTOM_CHANNEL_HOOK False - Feeds provided rest endpoint. Enables Custom notifications.
HOURLY_PERCENTAGE False - Used to filter price increase percentage in an hour, default is 10%.
DAILY_PERCENTAGE False - Used to filter price increase percentage in a day, inactive if not defined.
COIN_GECKO_PAGE_LIMIT False - Used to change number of pages to query, default is 2. min: 1 max:28.
BITQUERY_NEW_LISTED_BSC_COINS_ENABLED False BITQUERY_API_KEY Enables new listed BSC coins notifications.
BITQUERY_NEW_LISTED_ETH_COINS_ENABLED False BITQUERY_API_KEY Enables new listed Eth coins notifications.

  • Api token (CMC_PRO_API_KEY) can be obtained from https://coinmarketcap.com/api/ . (I am using Free version)
  • Api token (BITQUERY_API_KEY) can be obtained from https://graphql.bitquery.io/ide . (I am using Developer (free) version)
  • Provide at least one HOOK to get notified.
  • Features activated by passed environment varibles. You can have all features together or individually.
  • Checkout Integration Document for custom hook integration.

All set. โœ…

Upcoming ๐Ÿšง

  • Discord Webhook
  • New Coin Listings

Development ๐Ÿ› ๏ธ

  • Clone the repository
  • Create an .env file under the root directory & place your Environment Varibles inside the .env. โš ๏ธ
$ npm i
$ npm run start:debug

References

Licence

About

Crypto Watchdog is an open-source developer friendly project, periodically queries crypto market and notifies potential pumps & recently added tokens/coins via web-hooks.

License:MIT License


Languages

Language:TypeScript 97.0%Language:JavaScript 1.6%Language:Dockerfile 1.3%Language:Shell 0.1%