Poll
Anyone can set up a poll by sending a message with app=’poll’.
Last updated
Anyone can set up a poll by sending a message with app=’poll’.
question string required
Question of the poll.
choices array required
Allowed set of choices.
Returns the unit hash.
const params = {
question: 'Should I stay or should I go?',
choices: ['stay', 'go']
};
client.post.poll(params, wif, function(err, result) {
if (err) return console.error(err);
console.log(result);
});"29. Voting" (page 46) https://obyte.org/Byteball.pdf
Last updated