How to send many wallet transactions to other users at once?
utopian-io·@fbslo·
0.000 HBDHow to send many wallet transactions to other users at once?
#### 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 @heimindanger. #### 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/. https://snag.gy/2dSYEo.jpg 2 Open web console (F12 and click Console / Ctrl+Shift+K) https://snag.gy/vRxukf.jpg 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); }); }` https://snag.gy/9q5u0F.jpg 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 :) https://snag.gy/beSf95.jpg Please don't use this for spam purpose! <center><h4> @fbslo</center></h4> <center>[](steemconnect.com/sign/account-witness-vote?witness=fbslo&approve=1)</center><center><sup>(Click on the button)</sup></center> <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@fbslo/how-to-send-many-wallet-transactions-to-other-users-at-once">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>