How to send many wallet transactions to other users with a memo (Steem-js)?
Do you want to send 0.001 SBD transaction to hundreds of account at once?
You can do this In Javascript with steem-js.
This javascript code was created by .
Requirements
- Your steem active key
- SBD balance
Difficulty
- Basic
How to send many wallet transactions to other users at once?
1 Go to https://steemwhales.com/post/.
2 Open web console (F12 and click Console / Ctrl+Shift+K)
You will maybe need to type "allow pasting".
3 Copy this code to web console:
list = 'fbslo'.split(',')
for (numero=0; numero<list.length; numero++) { steem.broadcast.transfer('YOUR_ACTIVE_KEY', 'YOUR_USERNAME', list[numero], '0.001 SBD', 'This is test', function(err, result) { console.log(err, result); }); }
Don't forget to change YOUR_ACTIVE_KEY and YOUR_USERNAME. You can also change amount and memo (I used memo "This is test"). Change list of recipients (list = 'account1, account2, account3'.split(','))
4 Press Enter
5 Done :)
Please don't use this for spam purpose!
Posted on Utopian.io - Rewarding Open Source Contributors