create account

Introducing Steem Multiple Authority Manager by reazuliqbal

View this thread on: hive.blogpeakd.comecency.com
· @reazuliqbal · (edited)
$45.62
Introducing Steem Multiple Authority Manager
<center>![1_home.png](https://cdn.steemitimages.com/DQmRAcVxR9f3hTRvyYFHqXWoBFdRRNjvVniZos5yYpc9YMn/1_home.png)</center>

Steem Multiple Authority Manager is a web interface for adding multiple signatory authority to a Steem account, creating, signing, and broadcasting transactions from that account.

## Web

https://codebull.github.io/SteemMultisig/

## Features

- Changing a Steem account's role(s)' authority to multi-signatory authority
- Creating a signed transaction. Currently - `transfer`, `transfer_to_vesting`, `withdraw_vesting`, `delegate_vesting_shares`, and `account_witness_vote`.
- Signing already created transaction.
- Broadcasting the signed transaction.

## How does it work?

When a user visits the webpage it checks if the user had [logged in before](https://github.com/CodeBull/SteemMultisig/blob/master/src/app.js#L20-L31) if not ask them to [login](https://github.com/CodeBull/SteemMultisig/blob/master/src/app.js#L37-L58). Then it saves logged-in user's data to the browser's localStorage for auto-filling forms and account update data.

The logged-in user now can generate [multiple authority](https://github.com/CodeBull/SteemMultisig/blob/master/src/app.js#L68-L139) for posting, active, or owner role of his/her account.

If he/she has multiple authority already setup, can head over to [transaction generation](https://codebull.github.io/SteemMultisig/generate-transaction.html) page and generate a [signed transaction](https://github.com/CodeBull/SteemMultisig/blob/master/src/gen-transaction.js#L20-L104) with a private key. The signed transaction has 1 hour expiration time.

The signed transaction can now be sent to other keys (authority) holders for signing. They can use [sign transaction](https://codebull.github.io/SteemMultisig/sign-transaction.html) page to [sign](https://github.com/CodeBull/SteemMultisig/blob/master/src/sign-transaction.js#L46-L60) the transaction with their key. After inputting JSON transaction data the interface will show who [can sign and who already signed](https://github.com/CodeBull/SteemMultisig/blob/master/src/sign-transaction.js#L9-L42).

After signed by all required parties, the signed transaction can be [broadcasted](https://github.com/CodeBull/SteemMultisig/blob/master/src/broadcast-transaction.js#L8-L29) from [broadcast transaction page](https://codebull.github.io/SteemMultisig/broadcast-transaction.html) to the blockchain.

## How to use?

### Step 1: Login

Log in with your Steem username. After successful login, you can use all the pages. Login is required to save your Steem username, memo key to be used in account updates and auto-filling forms.

### Step 2: Generating Multiple Authority

You now can make your steem account a multiple signatory accounts for all roles. Select your desired Authority role from the dropdown, add the public key(s) and/or account(s) and desired weight for the key(s) and account(s). If you need to generate key(s), use the form at the bottom of the page.


<center>![3_adding-multi-auth.png](https://cdn.steemitimages.com/DQmPPhkRGo5Td4NQGJ3n1d8ywNHyJtLbGNjpWMaM4DSgNma/3_adding-multi-auth.png)</center>

Enter weight threshold for broadcasting any transaction. Weight threshold is the minimum required total weight of the keys that signed a transaction before it can be broadcasted to the blockchain. In the example, weight threshold is set at 100, so before broadcasting a transaction from @projectaccount that requires `active` authority, all key that signed the transaction should have a total weight of 100 or more.

So, in the example, the private key of public key 1 (weight 50) and 2 (weight 30) is always required, and then @projectaccount can use the private key of any of the key 3 or 4, or account @reazuliqbal or @bdcommunity to sign and broadcast a successful transaction.

Here is our example [transaction](https://steemd.com/tx/9f8ce46d886db4db14cc7891d0c7bf91d48eb09a) on the blockchain.

### Step 3: Generating Transaction

Generate a transaction for supported operation (more will come) from [generate transaction](https://codebull.github.io/SteemMultisig/generate-transaction.html) page with your private key.

Select an operation from the dropdown and fill out the form, enter your private key and click Generate. Copy the generated JSON form of the transaction and send it to other parties for signing.

<center>![4_generating-transaction.png](https://cdn.steemitimages.com/DQmPMLD26DodSfVyLsZoh4EivjfnLWiiv2MhvWfgKtHeoqx/4_generating-transaction.png)</center>

In the example, @projectaccount is sending 1 STEEM to @reazuliqbal.

### Step 4: Signing Transaction

If you are one of the other parties, you should use the [transaction signing](https://codebull.github.io/SteemMultisig/sign-transaction.html) page to sign the transaction.

<center>![5_signing-transaction.png](https://cdn.steemitimages.com/DQmTV5hYFtHGkA8L5T1ERTdcfzp7gWPfxSQdkgvnwQU5UmC/5_signing-transaction.png)</center>

Paste the JSON transaction data. You'll see who already signed and who can sign the transaction. Enter your private key and click sign. Copy the signed transaction.

If the weight threshold is met, you can broadcast the transaction or send it to other parties for signing.

### Step 5: Broadcasting Transaction

After signing by all the parties or reaching to weight threshold, you can broadcast the transaction from [broadcast transaction](https://codebull.github.io/SteemMultisig/broadcast-transaction.html) page.

<center>![6_broadcast.png](https://cdn.steemitimages.com/DQmRN8GhaHmPcgWnodY43goUw4NauP7RWCerwK9XU8Y6fx3/6_broadcast.png)</center>

Paste the signed transaction and click broadcast. If it is successful you'll see a success message else check browser console for errors.

Here is our [example transaction](https://steemd.com/tx/1172fd35170834cc3e7a20c2d8834ada728a62b1) on the blockchain.

## Alternatives

- [msteem - Multisignature transaction app](https://steemit.com/steem/@jga/msteem-multisignature-transaction-app) - Web
- [Steem Multi-Signature Transaction Guide for Beem/Python](https://steemit.com/utopian-io/@crokkon/steem-multi-signature-transaction-guide-for-beem-python-1546636997324) - Python
- [How to set up and use multisignature accounts on Steem Blockchain.](https://steemit.com/utopian-io/@stoodkev/how-to-set-up-and-use-multisignature-accounts-on-steem-blockchain) - Node JS

## Technologies

The dSteem library is used to communicate with the Steem blockchain, jQuery for DOM manipulation, Bootstrap 4 for styling, and browserify for compiling for the browser.

Steem.js's auth module was used to sign [changing to multiple authority](https://github.com/CodeBull/SteemMultisig/blob/master/src/app.js#L121) transactions. I was having a problem with broadcasting the multiple authority transactions signed by dSteem, but after trying Steem.js it worked. I was not able to pinpoint where the problem was but it was in the signature.

## TODO

- Support for more operations.
- Adding reset authorities features.
- Adding summary description for operations from JSON.

## Contributing

Feel free to fork the repo and submit a pull request. All sources are included in the /src folder.

To compile:

`npm run build`

To watch your change(s):

`npm run watch`

## Repository

https://github.com/CodeBull/SteemMultisig

## Pull Request

https://github.com/CodeBull/SteemMultisig/pull/1
https://github.com/CodeBull/SteemMultisig/pull/2

## GitHub Account

https://github.com/CodeBull/
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 59 others
properties (23)
authorreazuliqbal
permlinkintroducing-steem-multiple-authority-manager
categoryutopian-io
json_metadata{"image":["https://cdn.steemitimages.com/DQmRAcVxR9f3hTRvyYFHqXWoBFdRRNjvVniZos5yYpc9YMn/1_home.png","https://cdn.steemitimages.com/DQmPPhkRGo5Td4NQGJ3n1d8ywNHyJtLbGNjpWMaM4DSgNma/3_adding-multi-auth.png","https://cdn.steemitimages.com/DQmPMLD26DodSfVyLsZoh4EivjfnLWiiv2MhvWfgKtHeoqx/4_generating-transaction.png","https://cdn.steemitimages.com/DQmTV5hYFtHGkA8L5T1ERTdcfzp7gWPfxSQdkgvnwQU5UmC/5_signing-transaction.png","https://cdn.steemitimages.com/DQmRN8GhaHmPcgWnodY43goUw4NauP7RWCerwK9XU8Y6fx3/6_broadcast.png"],"users":["projectaccount","reazuliqbal","bdcommunity"],"format":"markdown","tags":["utopian-io","development","multisig","steem","steemdev"],"app":"steemit/0.1","links":["https://codebull.github.io/SteemMultisig/","https://github.com/CodeBull/SteemMultisig/blob/master/src/app.js#L20-L31","https://github.com/CodeBull/SteemMultisig/blob/master/src/app.js#L37-L58","https://github.com/CodeBull/SteemMultisig/blob/master/src/app.js#L68-L139","https://codebull.github.io/SteemMultisig/generate-transaction.html","https://github.com/CodeBull/SteemMultisig/blob/master/src/gen-transaction.js#L20-L104","https://codebull.github.io/SteemMultisig/sign-transaction.html","https://github.com/CodeBull/SteemMultisig/blob/master/src/sign-transaction.js#L46-L60","https://github.com/CodeBull/SteemMultisig/blob/master/src/sign-transaction.js#L9-L42","https://github.com/CodeBull/SteemMultisig/blob/master/src/broadcast-transaction.js#L8-L29","https://codebull.github.io/SteemMultisig/broadcast-transaction.html","https://steemd.com/tx/9f8ce46d886db4db14cc7891d0c7bf91d48eb09a","https://steemd.com/tx/1172fd35170834cc3e7a20c2d8834ada728a62b1","https://steemit.com/steem/@jga/msteem-multisignature-transaction-app","https://steemit.com/utopian-io/@crokkon/steem-multi-signature-transaction-guide-for-beem-python-1546636997324","https://steemit.com/utopian-io/@stoodkev/how-to-set-up-and-use-multisignature-accounts-on-steem-blockchain","https://github.com/CodeBull/SteemMultisig/blob/master/src/app.js#L121","https://github.com/CodeBull/SteemMultisig","https://github.com/CodeBull/SteemMultisig/pull/1","https://github.com/CodeBull/SteemMultisig/pull/2","https://github.com/CodeBull/"]}
created2019-01-12 08:15:21
last_update2019-01-12 08:20:39
depth0
children19
last_payout2019-01-19 08:15:21
cashout_time1969-12-31 23:59:59
total_payout_value34.644 HBD
curator_payout_value10.980 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,452
author_reputation61,984,354,446,410
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id78,265,349
net_rshares89,149,308,462,673
author_curate_reward""
vote details (123)
@bdcommunity ·
<center>

![](https://i.imgur.com/1i3fmz1.png)

**Hi @reazuliqbal, your post has been upvoted by @bdcommunity and the trail!**

If you want to support us, please consider following our [curation trail](https://steemit.com/bdcommunity/@bdcommunity/how-to-follow-bdcommunity-curation-trail) on Steemauto.com or delegating STEEM POWER to us.

|    |    |    |    |    |    |    |
|----|----|----|----|----|----|----|
|[20 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=20%20SP)|[50 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=50%20SP)|[100 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=100%20SP)|[200 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=200%20SP)|[300 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=300%20SP)|[500 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=500%20SP)|[1000 SP](https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=1000%20SP)|

**JOIN US ON**

[![](https://i.imgur.com/EoOj7g8.png)](https://steemit.com/@bdcommunity) [![](https://i.imgur.com/7hDxYND.png)](https://discord.gg/6zWpukW)

</center>
properties (22)
authorbdcommunity
permlinkre-reazuliqbal-introducing-steem-multiple-authority-manager-20190112t192801249z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["reazuliqbal","bdcommunity"],"image":["https://i.imgur.com/1i3fmz1.png","https://i.imgur.com/EoOj7g8.png","https://i.imgur.com/7hDxYND.png"],"links":["https://steemit.com/bdcommunity/@bdcommunity/how-to-follow-bdcommunity-curation-trail","https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=20%20SP","https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=50%20SP","https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=100%20SP","https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=200%20SP","https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=300%20SP","https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=500%20SP","https://v2.steemconnect.com/sign/delegateVestingShares?&delegatee=bdcommunity&vesting_shares=1000%20SP","https://steemit.com/@bdcommunity","https://discord.gg/6zWpukW"],"app":"steemit/0.1"}
created2019-01-12 19:27:03
last_update2019-01-12 19:27:03
depth1
children0
last_payout2019-01-19 19:27:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,365
author_reputation212,837,798,253,901
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,287,378
net_rshares0
@hobo.media · (edited)
Hello @reazuliqbal,

I think this site is great.  We are working on something we are calling a Decentralized Curation Community or DCC. The HoboDCC is trying to utilize multisig account capabilities to create an entire decentralized organization. 

We will be using a token created on Steem Engine called the Hobo token or HBO, and our goal is to build a decentralized curation community focused on supporting quality independent journalism on Steem with curation. 

You can learn more about this at the @hobo.media blog. 

First, I would like to let you know that we think your site is excellent and there is one thing we wish was finished: broadcasting votes. Currently, this feature is missing. When you have completed it please let me know and you will be sent 500,000 Hobo tokens. 

Currently, our token is not worth much, but we expect its price to be around 0.066 STEEM per token or even more. So, that could potentially be around 33,000 STEEM in value or possibly more. 

If you were interested in talking more about our project and getting more involved, I would love to discuss a possibility of giving you 3,000,000 Hobo tokens if you were willing to make enough customization to your site to support our goals with our community. 

Thanks for your time. :)
properties (22)
authorhobo.media
permlinkptsayq
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["reazuliqbal","hobo.media"],"app":"steemit/0.1"}
created2019-06-28 01:04:03
last_update2019-06-28 01:05:54
depth1
children1
last_payout2019-07-05 01:04:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,267
author_reputation21,121,859,045,871
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,433,798
net_rshares0
@reazuliqbal ·
Thanks for explaining what you are trying to do with it. I am bit busy now. I'll try to add multi-sig voting soon.
properties (22)
authorreazuliqbal
permlinkre-hobomedia-ptsayq-20190628t142533800z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2019-06-28 14:25:36
last_update2019-06-28 14:25:36
depth2
children0
last_payout2019-07-05 14:25:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation61,984,354,446,410
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,467,830
net_rshares0
@hobo.media ·
$0.25
Hey @reazuliqbal,

I'd really like the chance to chat with you about this site you have. It is a great site and I look forward to seeing your updates on it. 

I have an offer for you. The HoboDAO is a concept of creating a federation of multisig accounts formed like DAOs for the creation of a decentralized curation community empowered by its own token. 

Your site helps non-techies navigate multisig operations. This is perfect for the HoboDAO project. We're a small project, but we're really picking up steam. We now have 17,500 SP delegations and we're gaining delegations by the day. 

The Hobo token is selling at low volume but there is daily liquidity on the SE market and we're not even running our curation program yet. We have many delegators delegating to earn tokens on a monthly basis and several people have enrolled in our Ambassador program to translate our announcements to local language communities. 

I would very much like to coordinate with you to see if you would agree to support our project by managing your own Steem Multisignature Manager site for our community. 

If you agreed to join our discord server and act as tech support to our members when they have difficulty using your site, we would reward you in 100,000 Hobo tokens per month. 

This is a negotiable point, but if you would make your site available via IPFS it is something our project very much wants for decentralization. 

Please accept an invitation to join the HoboDAO project as a member in this decentralized community and join our discord server here: https://discord.gg/TFzSuYE
πŸ‘  
properties (23)
authorhobo.media
permlinkpuurca
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["reazuliqbal"],"links":["https://discord.gg/TFzSuYE"],"app":"steemit/0.1"}
created2019-07-18 19:26:36
last_update2019-07-18 19:26:36
depth1
children0
last_payout2019-07-25 19:26:36
cashout_time1969-12-31 23:59:59
total_payout_value0.187 HBD
curator_payout_value0.062 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,580
author_reputation21,121,859,045,871
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,460,659
net_rshares687,702,389,159
author_curate_reward""
vote details (1)
@jga ·
$0.02
Very good, excellent work!
I had the same problem using dsteem to add multiple authorities :/
My solution was to generate different keys until it worked.

I would be good to figure out the principal problem behind. 

Thanks for referencing my work.
πŸ‘  
properties (23)
authorjga
permlinkre-reazuliqbal-introducing-steem-multiple-authority-manager-20190116t134230670z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-16 13:42:30
last_update2019-01-16 13:42:30
depth1
children2
last_payout2019-01-23 13:42:30
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length248
author_reputation76,172,796,162,312
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,455,428
net_rshares38,757,925,762
author_curate_reward""
vote details (1)
@reazuliqbal ·
$0.03
I tried several things. It only worked when I set 2 keys with same weight e.g 50 for each and weight threshold is 100.

I do not have the technical capability to diagnose/fix the problem, but it was in the signature of the transaction. dSteem and Steem.js both produced different signature for the same operation and dsteem's signature had a Buffer element in it (not sure what that was for).
πŸ‘  ,
properties (23)
authorreazuliqbal
permlinkre-jga-re-reazuliqbal-introducing-steem-multiple-authority-manager-20190116t141311786z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-16 14:13:15
last_update2019-01-16 14:13:15
depth2
children1
last_payout2019-01-23 14:13:15
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length392
author_reputation61,984,354,446,410
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,456,533
net_rshares53,146,610,425
author_curate_reward""
vote details (2)
@jga ·
I also tried several things, and I used `client.database.verifyAuthority` to verify before broadcasting. When it worked for 3 keys I started to add `account_auths`. I remember that just changing one name it failed, and I had to try [many names](https://steemd.com/tx/715bd3e6da251a4bd481e1b3f81c13a8bdd6705d).
properties (22)
authorjga
permlinkre-reazuliqbal-re-jga-re-reazuliqbal-introducing-steem-multiple-authority-manager-20190116t142839858z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemd.com/tx/715bd3e6da251a4bd481e1b3f81c13a8bdd6705d"],"app":"steemit/0.1"}
created2019-01-16 14:28:39
last_update2019-01-16 14:28:39
depth3
children0
last_payout2019-01-23 14:28:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length309
author_reputation76,172,796,162,312
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,457,057
net_rshares0
@justyy · (edited)
$15.78
Thank you for your contribution! Great work.

1. You might want to check the input using `steem.utils.validateAccountName` currently, any invalid account names including the prefix @ will cause a `TypeError: Cannot read property 'name' of undefined     at f.database.getAccounts.then (app.js:1)`error in the console - which is slient to users.
2. In fact, would it be better if your login requires actual validation via `steemconnect` so that users won't have to type in WIF everytime? Currently, it looks to me the login function is a bit fake... Look, I wished I can do this: LOL
![](https://cdn.steemitimages.com/DQmPyXZHFz9ZYWTiRt4MhCADbzha9PRJ7wkKqzQCNnPcPbR/image.png)
3. I would love to see a few unit tests in such kind of project - and it will be great if you can use `travis-ci.com` to set up a build system to boost some confidence.
4. It might be useful to consider using some front-end frameworks such as Vue or React, currently I can see you have some code mixing the presentation and logics using jQuery.

Great work! 

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2-2-1-1-1-2-2-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorjustyy
permlinkre-reazuliqbal-introducing-steem-multiple-authority-manager-20190113t192330501z
categoryutopian-io
json_metadata{"image":["https://cdn.steemitimages.com/DQmPyXZHFz9ZYWTiRt4MhCADbzha9PRJ7wkKqzQCNnPcPbR/image.png"],"tags":["utopian-io"],"app":"steemit/0.1","links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-1-1-1-2-2-","https://discord.gg/uTyJkNm","https://join.utopian.io/"]}
created2019-01-13 19:23:33
last_update2019-01-13 20:58:06
depth1
children2
last_payout2019-01-20 19:23:33
cashout_time1969-12-31 23:59:59
total_payout_value11.924 HBD
curator_payout_value3.855 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,483
author_reputation280,616,224,641,976
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,329,097
net_rshares28,613,112,664,558
author_curate_reward""
vote details (25)
@reazuliqbal ·
The purpose of login function is to save the username and memo key to localStorage so that I can use it while sending account update data and auto-filling forms. But I should have done the username verification. Thank you for pointing it out.

I think SteemConnect login cannot help with the functionalities because we are changing authorities but it might be a way to verify if the user owns the username.

I am planning to learn unit testing and going to use it in future projects.

Thank you so much for the detailed review. :)
properties (22)
authorreazuliqbal
permlinkre-justyy-re-reazuliqbal-introducing-steem-multiple-authority-manager-20190114t161758598z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-14 16:18:00
last_update2019-01-14 16:18:00
depth2
children0
last_payout2019-01-21 16:18:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length530
author_reputation61,984,354,446,410
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,370,061
net_rshares0
@utopian-io ·
Thank you for your review, @justyy! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-reazuliqbal-introducing-steem-multiple-authority-manager-20190113t192330501z-20190116t143729z
categoryutopian-io
json_metadata"{"app": "beem/0.20.9"}"
created2019-01-16 14:37:30
last_update2019-01-16 14:37:30
depth2
children0
last_payout2019-01-23 14:37:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation152,955,367,999,756
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,457,371
net_rshares0
@noakhali ·
Bro please help
properties (22)
authornoakhali
permlinkre-reazuliqbal-introducing-steem-multiple-authority-manager-20190115t073513077z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-15 07:35:15
last_update2019-01-15 07:35:15
depth1
children3
last_payout2019-01-22 07:35:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation257,334,100
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,398,079
net_rshares0
@reazuliqbal ·
How can I help you?
properties (22)
authorreazuliqbal
permlinkre-noakhali-re-reazuliqbal-introducing-steem-multiple-authority-manager-20190115t115725039z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2019-01-15 11:57:24
last_update2019-01-15 11:57:24
depth2
children2
last_payout2019-01-22 11:57:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation61,984,354,446,410
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,406,182
net_rshares0
@noakhali ·
Vai ami ahakon o kaj ta buji nai...
properties (22)
authornoakhali
permlinkre-reazuliqbal-re-noakhali-re-reazuliqbal-introducing-steem-multiple-authority-manager-20190115t160350874z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-15 16:03:54
last_update2019-01-15 16:03:54
depth3
children1
last_payout2019-01-22 16:03:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation257,334,100
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,415,316
net_rshares0
@sourovafrin ·
$0.04
Another great contribution to steem blockchain. Keep up the good work πŸ‘Œ

Posted using [Partiko Android](https://steemit.com/@partiko-android)
πŸ‘  ,
properties (23)
authorsourovafrin
permlinksourovafrin-re-reazuliqbal-introducing-steem-multiple-authority-manager-20190112t084032504z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-01-12 08:41:18
last_update2019-01-12 08:41:18
depth1
children0
last_payout2019-01-19 08:41:18
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation194,427,660,059,798
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,266,211
net_rshares83,522,682,620
author_curate_reward""
vote details (2)
@steem-ua ·
$0.07
#### Hi @reazuliqbal!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
πŸ‘  
properties (23)
authorsteem-ua
permlinkre-introducing-steem-multiple-authority-manager-20190113t195916z
categoryutopian-io
json_metadata"{"app": "beem/0.20.14"}"
created2019-01-13 19:59:18
last_update2019-01-13 19:59:18
depth1
children0
last_payout2019-01-20 19:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length290
author_reputation23,214,230,978,060
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,330,152
net_rshares135,376,789,918
author_curate_reward""
vote details (1)
@therealwolf ·
$0.04
Great job, @reazuliqbal!

I've added you to the @steemtank list. Keep up the good work!
πŸ‘  , ,
properties (23)
authortherealwolf
permlinkre-reazuliqbal-introducing-steem-multiple-authority-manager-20190112t125849299z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["reazuliqbal","steemtank"],"app":"steemit/0.1"}
created2019-01-12 12:58:48
last_update2019-01-12 12:58:48
depth1
children1
last_payout2019-01-19 12:58:48
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation581,693,011,827,252
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,273,742
net_rshares89,149,340,124
author_curate_reward""
vote details (3)
@reazuliqbal ·
Thank you so much. :)
properties (22)
authorreazuliqbal
permlinkre-therealwolf-re-reazuliqbal-introducing-steem-multiple-authority-manager-20190112t130143161z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-12 13:01:45
last_update2019-01-12 13:01:45
depth2
children0
last_payout2019-01-19 13:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation61,984,354,446,410
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,273,814
net_rshares0
@utopian-io ·
Hey, @reazuliqbal!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-introducing-steem-multiple-authority-manager-20190114t135645z
categoryutopian-io
json_metadata"{"app": "beem/0.20.9"}"
created2019-01-14 13:56:48
last_update2019-01-14 13:56:48
depth1
children0
last_payout2019-01-21 13:56:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length593
author_reputation152,955,367,999,756
root_title"Introducing Steem Multiple Authority Manager"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,364,718
net_rshares0