Overview
This project allows to easily send a memo to all followers/following. This project requires that SteemJS be used with NodeJS. It is a technical requirement to be familiar with this technology stack. Here are some tutorials to get you started if necessary: https://steemit.com/steem/@money-dreamer/summary-of-technical-articles
This bot sends messages in memos to either the followers or following. This bot is a very simple demonstration and could be used to start a more sophisticated project. It has been released under “The Unlicense” to allow for any type of re-use. It is available on GitHub – follow the link below.
Configuration
It is necessary to configure the application by setting the following parameters in the config.js
file:
type
- followers|following
message
- “message to be sent”
amount
– amount of SBD|STEEM to be sent in each transaction
delay
- time between broadcast transactions
start
– (optional) user to start at (processes in alphanumerical order)
username
– steem username
password
– steem password
config.steem.type = 'followers';
config.steem.message = 'Gift!';
config.steem.amount = '0.001 SBD';
config.steem.delay = 5;
config.steem.start = '';
config.steem.username = process.env.STEEM_USER || 'ENTER_USERNAME_HERE';
config.steem.password = process.env.STEEM_PASSWORD || 'ENTER_PASSWORD_HERE';
You must set your username and password where it reads 'ENTER_USERNAME_HERE'
and 'ENTER_PASSWORD_HERE'
in config.js
, respectively.
Roadmap
Accounts could be filtered by:
- SP
- Followers/Following
- STEEM/SBD Balance
- Account Age
Details
Feel free to fork the repository and use it to get started on your own project. You can contribute by implementing the features in the roadmap and contributing ideas on how to improve the project in the comments or on issues created in GitHub.
Relevant Posts
- Creating First Steem Bot
- NodeJS Steem Bot Tutorial
- Creating Follow Bot with NodeJS
- Steem Curation Bot
- Steem Follow Bot Updates
- Steem JavaScript Development Links
Posted on Utopian.io - Rewarding Open Source Contributors