Simple Witness Voting Tool for Steem or Hive Blockchain

Using this simple tool, you are able to vote (approve) for a witness, unvote (unapprove) a witness, set a witness proxy, or clear your witness proxy on either STEEM or HIVE blockchain.

Witness Proxy: Delegate your voting rights to someone you trust.
Witness Vote: You can vote up to 30 witnesses.

Witness ID: (URL parameter ?witness=justyy)
or

Witness Voting via SteemJs

The page integrates Steem-Js Library (ver 0.7.7). You would need to enter active key (which is pretty safe as it stays locally in your browser).

Your STEEM ID: (URL parameter ?account=justyy)
The Core SteemJs code to broadcast a Witness Vote is:
// 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:
steem.broadcast.accountWitnessProxy(ActiveKey, YourAccount, WitnessProxy, function(err, result) {
  if (err) {
      log(err);        
  } else {
      log("Successful!", result);
  }
}); 

View Other Steem Tools and APIs | Vote @justyy a Witness or Set @justyy as Proxy

URL parameter: ?nocache

Created and Maintained by @justyy. All rights Reserved ©, 2024. 中文: Steem/Hive 见证人投票工具