Wallet
# Create wallet
ironfish wallet:create $IRONFISH_WALLET# Make this wallet as main one
ironfish wallet:use $IRONFISH_WALLET# Get tokens from the faucet
ironfish faucet
Enter your registered email address
The request is added to the queue, we wait and immediately configure Cron to request tokens# Check balance
ironfish wallet:balance $IRONFISH_WALLET# Create log file
touch $HOME/logfile.log# Set crontab
sudo nano /etc/crontab
# Add to the end of the file
# In quotation marks, enter your registered email address
0 0 * * * root echo "your email" | ironfish faucet | tee -a /root/logfile.log
# ctrl + o - Save
# enter
# ctrl + x - Exit

Last updated