Skip to content
Snippets Groups Projects
Commit 1a0f872b authored by adcpm's avatar adcpm
Browse files

Add multisig example

parent 6f0bd996
No related branches found
No related tags found
No related merge requests found
const steem = require('../lib');
const privWif1 = '5K2LA2ucS8b1GuFvVgZK6itKNE6fFMbDMX4GDtNHiczJESLGRd8';
const privWif2 = '5JRaypasxMx1L97ZUX7YuC5Psb5EAbF821kkAGtBj7xCJFQcbLg';
steem.broadcast.send({
extensions: [],
operations: [
['vote', {
voter: 'sisilafamille',
author: 'siol',
permlink: 'test',
weight: 1000
}]
]}, [privWif1, privWif2], (err, result) => {
console.log(err, result);
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment