Introducing the Witness Voting Tool

Introducing the Witness Voting Tool

With lots of happening, I am just keen in making mini-tools. Here is another one:

https://steemyy.com/witness-voting/

image.png

What you can do in this tool?

  1. cast a witness vote (approve)
  2. cast a witness un-vote (unapprove)
  3. set a proxy
  4. clear a proxy.

You can do this by redirect to SteemConnect, or if you prefer, you can broadcast the action via SteemJs - which you will need to enter active key once (pretty safe, as the key will not go anywhere else).

If you choose the SteemJs method, you will need also your account ID.

The tool is also available in Chinese: https://steemyy.com/voting-witness/

The Core SteemJs code to broadcast a Witness Vote is:

1
2
3
4
5
6
7
8
// approve = 1, unapprove = 0
steem.broadcast.accountWitnessVote(ActiveKey, YourAccount, Witness, approve, function(err, result) {
if (err) {
log(err);
} else {
log("Successful!", result);
}
});

and to broadcast a Witness Proxy is:

1
2
3
4
5
6
7
steem.broadcast.accountWitnessProxy(ActiveKey, YourAccount, WitnessProxy, function(err, result) {
if (err) {
log(err);
} else {
log("Successful!", result);
}
});

I hope this helps!

Steem On!~


If you like my work, please consider voting for me, thanks!
https://steemit.com/~witnesses type in justyy and click VOTE



Alternatively, you could proxy to me if you are too lazy to vote!

Also: you can vote me at the tool I made: https://steemyy.com/witness-voting/?witness=justyy

Visit me at: https://steemyy.com


This page is synchronized from the post: ‘Introducing the Witness Voting Tool’

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×