You are viewing a single comment's thread from:
RE: Is there an easy way to batch send a few thousand wallet transactions to other users with a memo?
In Javascript with steemjs (you can do it in the webconsole from https://steemwhales.com/post/ for example)
list = 'billykeed,tedcarr,meno,philfreetotravel,ninoleto,acromott,sunsurfsoul,jahissac,lovejoy,juanmiguelsalas,philfreetotravel,musiclover,jlsplatts,wearechange-co,ironshield,arthuradamson,sofietness,vannour,zkalemiss,mango369,dewallenband,trilumia,xtrodinarypilot,urukai,runamok,yann0975'.split(',')
for (numero=0; numero<list.length; numero++) {
steem.broadcast.transfer('YOUR_POSTING_KEY', 'YOUR_USERNAME', list[numero], '0.001 SBD', 'Hi, here is your memo message', function(err, result) {
console.log(err, result);
});
}
screen shot it.. Where would I put the lines of code? in the post content box on https://steemwhales.com/post/?
I created tutorial: https://steemit.com/utopian-io/@fbslo/how-to-send-many-wallet-transactions-to-other-users-at-once
sweet thank you
Press F12 and click on the console tab. It's a nerd thing but you'll get used to it :D