You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a configurable email notification program that notifies users when crypto prices have reached a specified amount. This program uses API to retrieve prices, therefore users must be a member of either coinbase or coinmarketcap.
Screenshots
Running Program
Sent Email
Setup
1. (Coinbase Users) Obtain coinbase access key and secret key (grant these permissions: wallet:buys:read, wallet:sells:read, wallet:accounts:read).
(CoinMarketCap Users) Obtain coinmarketcap API key.
2. Create a new file called .env the choice of program (either coinbase/ or coinmarketcap/).
3. Copy template.env file to .env file.
4. Copy access key and secret key into .env file depending on choice of method.
5. Fill in the rest of the .env file.
6. MORE DETAILS GUIDE ON HOW TO SETUP AWS SNS COMING SOON
Environment Variables
Here are all the environment variable meanings followed by an example:
Pick either COINBASE or CMC don't use both
COINBASE_API_KEY: *for coinbase only Coinbase API Key.
COINBASE_API_SECRET: *for coinbase only Coinbase API Secret.
CMC_PRO_API_KEY: *for coinmarketcap only CoinMarketCap API Key.
COINBASE_API_KEY='yourapikey'
COINBASE_API_SECRET='yourapisecret'
OR
CMC_PRO_API_KEY='yourapikey'
AWS_ACCESS_KEY_ID: aws acccount access key, works with IAM users as well.
AWS_SECRET_ACCESS_KEY: aws acccount secret key, works with IAM users as well.