SteemTool v0.0.9 – Sending Money to Multiple Addresses!


Introduction to SteemTools

SteemTools is a Chrome Extension that aims to provide useful tools and data for SteemIt Users.

SteemTools Open Source

Github: https://github.com/DoctorLai/SteemTools/

Previous Versions

Technology Stack

Javascript that runs in the Chrome Browser (Chrome Extension)

Chrome Webstore

It is online, and you can install SteemTools via Google Webstore.

If you are using Firefox, you can still install this Extension by Chrome Extension Foxified.

New Features of SteemTools v0.0.9

Commit here. This version has the wallet tab that allows you to send money easily to multiple addresses at the same time.

Wallet Tab

You need to configure you Steem ID and Private Active Key if you want to use this feature! PS: Your Keys are only stored locally in your Chrome browser!

steemtools-configure-keys SteemTool v0.0.9 - Sending Money to Multiple Addresses! chrome extension SteemIt

steemtools-configure-keys

steemtools-wallet SteemTool v0.0.9 - Sending Money to Multiple Addresses! chrome extension SteemIt

steemtools-wallet

Click Send requires a confirmation.

steemtools-wallet-sent SteemTool v0.0.9 - Sending Money to Multiple Addresses! chrome extension SteemIt

steemtools-wallet-sent

Steem-Js Sending SBD/STEEM

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
if (confirm("Send " + amount.toFixed(3) + " " + unit + " to " + addresses.join(',') + " with MEMO=" + memo + "?")) {
    let active_key = $("input#posting_key").val().trim();                              
    for (let i = 0; i < count; ++ i) {
        let who = addresses[i].trim().replace('@', '');
        if (who.length > 0) {
            logit($('textarea#console_wallet'), "Sending " + amount.toFixed(3) + " " + unit + " to @" + who + "...");
            steem.api.setOptions({ url: $("select#nodes").val() });
            steem.broadcast.transfer(active_key, from_user, who, amount + " " + unit, memo, function(err, result) {
                if (err) {
                    logit($('textarea#console_wallet'), err);
                } else {
                    console.log(result);
                    logit($('textarea#console_wallet'), amount.toFixed(3) + " " + unit + " sent from @" + from_user + " to @" + who);
                }
            });
        }
    }
}
if (confirm("Send " + amount.toFixed(3) + " " + unit + " to " + addresses.join(',') + " with MEMO=" + memo + "?")) {
    let active_key = $("input#posting_key").val().trim();                              
    for (let i = 0; i < count; ++ i) {
        let who = addresses[i].trim().replace('@', '');
        if (who.length > 0) {
            logit($('textarea#console_wallet'), "Sending " + amount.toFixed(3) + " " + unit + " to @" + who + "...");
            steem.api.setOptions({ url: $("select#nodes").val() });
            steem.broadcast.transfer(active_key, from_user, who, amount + " " + unit, memo, function(err, result) {
                if (err) {
                    logit($('textarea#console_wallet'), err);
                } else {
                    console.log(result);
                    logit($('textarea#console_wallet'), amount.toFixed(3) + " " + unit + " sent from @" + from_user + " to @" + who);
                }
            });
        }
    }
}

Roadmap of Steem Tools

License

MIT

Chrome Webstore

Install the SteemTools Chrome Extension Now!

Contribution Welcome

Github: https://github.com/DoctorLai/SteemTools

  • Fork it!
  • Create your feature branch: git checkout -b my-new-feature
  • Commit your changes: git commit -am ‘Add some feature’
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request.

–EOF (The Ultimate Computing & Technology Blog) —

GD Star Rating
loading...
991 words
Last Post: CoinTool Update: Arbitrary Historical Date Period + Amount Conversion to Local Currency + Preserve Historical Graphs
Next Post: AWK Tutorial: How often do you generate a Witness Block? (SteemIt)

The Permanent URL is: SteemTool v0.0.9 – Sending Money to Multiple Addresses!

Leave a Reply