Nano payment notifier A simple app to notify (print to console) of any incoming Nano payments
Setup Nano node by following https://1xrb.com/support-the-network/
curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
sudo easy_install pip
pip install pipenv
wget https://github.com/benjefferies/raiblockpayments/archive/master.zip
unzip master.zip
cd raiblockpayments-master/
pipenv install
pipenv run python run.py
apt update
apt install python-pip unzip
curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
pip install pipenv
wget https://github.com/benjefferies/raiblockpayments/archive/master.zip
unzip master.zip
cd raiblockpayments-master/
pipenv install
pipenv run python run.py
Emails are sent via AWS SES. You get a 62,000 emails for free per month.
- Verify the email e.g.
[email protected]
you want to send from https://us-west-2.console.aws.amazon.com/ses/home?region=us-west-2#verified-senders-email: - Update the .env variables to look like
EMAIL_ENABLED=True
AWS_REGION=us-west-2
- Set the AWS credential environmental variables
export AWS_ACCESS_KEY_ID=notsosecret # YOUR ACCESS_KEY
export AWS_SECRET_ACCESS_KEY=verysecret # YOUR SECRET_ACCESS
pipenv run python run.py