create account

New version of Tower (Hivemind + REST) by emrebeyler

View this thread on: hive.blogpeakd.comecency.com
· @emrebeyler · (edited)
$101.24
New version of Tower (Hivemind + REST)
<center><img src="https://cdn.steemitimages.com/DQmNQ8RsVgaVaSw9uaezw7FjvEFxMZNWksejZg24TXF31Lz/Screen%20Shot%202019-01-16%20at%202.28.27%20PM.png"></center>
***
[Tower](https://github.com/emre/tower) is a REST api service on the top Hivemind. It allows you to query a Hivemind database in terms of REST practices.

I have pushed a couple of updates and fixes to the Tower in the recent week.

# Docker Installation Support

Tower may be a little bit tricky to configure/deploy if you don't have any experience with Python ecosystem.

In order to make the installation easier for parties interested, I have dockerized the app.


```
$ docker run -p 8090:8000 -e DB_PASS='hive' \
	-e DB_USER='hivemind_db_user' \
	-e DB_NAME='hivemind_db_name' \
	-e DB_PORT='5432' \
	-e DB_HOST='<hivemind_database_host_ip>' \
	emrebeyler/tower:stable
```

will install and run the application on :8090.

This uses pre-built image on my Dockerhub profile. As an alternative, you can also build the image directly.

```
$ git clone https://github.com/emre/tower.git
$ cd tower
$ docker build -t tower .
$ docker run -p 8090:8000 -e DB_PASS='hive' \
	-e DB_USER='hivemind_db_user' \
	-e DB_NAME='hivemind_db_name' \
	-e DB_PORT='5432' \
	-e DB_HOST='<hivemind_database_host_ip>' \
	tower
```

will do the same thing. 

# State API

<center><img src="https://ipfs.busy.org/ipfs/QmP4tEDWNxHW6YE4TC4qvRKxZtpeLBw5NJY7hEWwdXwV2h"></center>
***

Added a new `/api/v1/state` endpoint which represents the `hive_state` table in the database level.

It gives the latest processed block and dynamic global properties. 


# Relationship endpoints

4 new endpoints added to `/api/v1/{username}/` namespace.

<center><img src="https://ipfs.busy.org/ipfs/QmXomtZAGdvFtkuMigKrRq8tQdwRdJ7NZgjp8fN3bPTHH9"></center>

- `/api/v1/<username>/followers`

Returns the follower list of `<username`.

- `/api/v1/<username>/following`

Returns the following list of `<username`.

- `/api/v1/<username>/muting`

Returns the muting list of `<username`.

- `/api/v1/<username>/muters`

Returns the muter list of `<username`.

There is no pagination on any of these endpoints. Getting the list without pagination is not possible on RPC nodes, which makes the process slower in most cases.

In comparison, it's way more efficient to use Hivemind/Tower to get these lists.

Example:

Get the follower list of @utopian-io w/ steem-python:

```
$ time python -c 'from steem.account import Account;from steem import Steem;print(len(Account("utopian-io", steemd_instance=Steem(nodes=["https://rpc.usesteem.com"])).get_followers()));'
```
***
Result:

```
10937
python -c   0.54s user 0.32s system 6% cpu 13.952 total
```
***
Same script using Tower:

```
$ time python -c 'import requests; print(len(requests.get("http://tower.emrebeyler.me/api/v1/accounts/utopian-io/followers/").json()["followers"]))'
```
***
Result:

```
10936
python -c   0.36s user 0.31s system 29% cpu 2.264 total
```
***

**6x** more efficient, obviously. 

*By the way, there is a discrepancy on the follower count between Hivemind and RPC node. Investigating it.*


# Fix on `/api/v1/accounts`

There was a [bug](https://github.com/emre/tower/issues/1) on account detail endpoint which was leading to 404 pages on account names including a `.` char on it. This issue is addressed w/ [cfe43f](https://github.com/emre/tower/commit/cfe43f77a31bf96ec7898393339a59220138262b).

# Public tower nodes

- `https://tower.emrebeyler.me` by @emrebeyler
- `https://hivemind.steemviz.com` by @ausbitbank.
- `https://tower.hive.oracle-d.com` by @oracle-d, @wehmoen.

# Pull requests and commits

- https://github.com/emre/tower/pull/2
- https://github.com/emre/tower/pull/3
- https://github.com/emre/tower/pull/4
- [cfe43f](https://github.com/emre/tower/commit/cfe43f77a31bf96ec7898393339a59220138262b)

### Vote for my witness

I do my best to support the blockchain with my skills. If you like what I do, consider casting a vote on [via Steemconnect](https://steemconnect.com/sign/account-witness-vote?witness=emrebeyler&approve=1) or on [steemit.com](https://steemit.com/~witnesses)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 281 others
properties (23)
authoremrebeyler
permlinknew-version-on-tower-hivemind-rest
categoryutopian-io
json_metadata{"community":"steempeak","app":"steemit/0.1","format":"markdown","tags":["utopian-io","development","tower","python","hivemind"],"users":["utopian-io","emrebeyler","ausbitbank","oracle-d","wehmoen"],"links":["https://github.com/emre/tower","https://github.com/emre/tower/issues/1","https://github.com/emre/tower/commit/cfe43f77a31bf96ec7898393339a59220138262b","https://github.com/emre/tower/pull/2","https://github.com/emre/tower/pull/3","https://github.com/emre/tower/pull/4","https://steemconnect.com/sign/account-witness-vote?witness=emrebeyler&approve=1","https://steemit.com/~witnesses"],"image":["https://cdn.steemitimages.com/DQmNQ8RsVgaVaSw9uaezw7FjvEFxMZNWksejZg24TXF31Lz/Screen%20Shot%202019-01-16%20at%202.28.27%20PM.png","https://ipfs.busy.org/ipfs/QmP4tEDWNxHW6YE4TC4qvRKxZtpeLBw5NJY7hEWwdXwV2h","https://ipfs.busy.org/ipfs/QmXomtZAGdvFtkuMigKrRq8tQdwRdJ7NZgjp8fN3bPTHH9"]}
created2019-02-04 13:50:33
last_update2019-02-04 15:20:21
depth0
children18
last_payout2019-02-11 13:50:33
cashout_time1969-12-31 23:59:59
total_payout_value77.213 HBD
curator_payout_value24.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,093
author_reputation448,528,959,341,273
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,384,934
net_rshares210,576,930,372,752
author_curate_reward""
vote details (345)
@carlosbest21 ·
El código podría usar más comentarios, la publicación podría usar ejemplos de código.
properties (22)
authorcarlosbest21
permlinkre-emrebeyler-new-version-on-tower-hivemind-rest-20190206t234829294z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-06 23:48:33
last_update2019-02-06 23:48:33
depth1
children0
last_payout2019-02-13 23:48:33
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_length85
author_reputation8,687,500
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,502,869
net_rshares0
@cekopaspas ·
hiç kod bilgisi olmayanlar için,  yer varmı ?
👍  
properties (23)
authorcekopaspas
permlinkre-emrebeyler-new-version-on-tower-hivemind-rest-20190204t141514681z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2019-02-04 14:15:57
last_update2019-02-04 14:15:57
depth1
children1
last_payout2019-02-11 14:15:57
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_length45
author_reputation1,255,250,992,895
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,385,826
net_rshares540,933,429
author_curate_reward""
vote details (1)
@lacasadepapel ·
bize yok derler
properties (22)
authorlacasadepapel
permlinkre-cekopaspas-re-emrebeyler-new-version-on-tower-hivemind-rest-20190204t144806078z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-04 14:48:06
last_update2019-02-04 14:48:06
depth2
children0
last_payout2019-02-11 14:48:06
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_reputation-133,142,740,036
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,387,104
net_rshares0
@crypto.piotr ·
Dear @emrebeyler

I was wondering if you're receiving any of my messages on Discord? I tried to re-connect with you but so far it seem that you're not seeing any of my messages.

Yours
Piotr
properties (22)
authorcrypto.piotr
permlinkre-emrebeyler-new-version-on-tower-hivemind-rest-20190205t020857342z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["emrebeyler"],"app":"steemit/0.1"}
created2019-02-05 02:08:57
last_update2019-02-05 02:08:57
depth1
children0
last_payout2019-02-12 02:08:57
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_length190
author_reputation27,396,789,428,606
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,409,718
net_rshares0
@emrebeyler ·
$0.03
@paulag, I believe you had asked the `state` API before. Check the post.
👍  
properties (23)
authoremrebeyler
permlinkre-emrebeyler-new-version-on-tower-hivemind-rest-20190204t135200902z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["paulag"],"app":"steemit/0.1"}
created2019-02-04 13:52:00
last_update2019-02-04 13:52:00
depth1
children1
last_payout2019-02-11 13:52:00
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation448,528,959,341,273
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,384,980
net_rshares61,165,607,451
author_curate_reward""
vote details (1)
@paulag ·
Awesome, i look forward to using it. Im gonna try it later

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authorpaulag
permlinkpaulag-re-emrebeyler-re-emrebeyler-new-version-on-tower-hivemind-rest-20190204t172147807z
categoryutopian-io
json_metadata"{\"app\":\"partiko\",\"client\":\"android\"}"
created2019-02-04 17:21:48
last_update2019-02-04 17:21:48
depth2
children0
last_payout2019-02-11 17:21: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_length128
author_reputation274,264,287,951,003
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,393,047
net_rshares0
@helo ·
$8.14
- Good looking post, but mostly great achievement for the docker and new end points.
 - Code could use more comments, post could use code samples.


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-1-2-1-1-2-2-).

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

[[utopian-moderator]](https://join.utopian.io/)
👍  , , , , , , , , , ,
properties (23)
authorhelo
permlinkre-emrebeyler-new-version-on-tower-hivemind-rest-20190205t022541466z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-1-2-1-1-2-2-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-02-05 02:25:42
last_update2019-02-05 02:25:42
depth1
children1
last_payout2019-02-12 02:25:42
cashout_time1969-12-31 23:59:59
total_payout_value6.174 HBD
curator_payout_value1.969 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length597
author_reputation121,547,934,535,311
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,410,169
net_rshares17,108,476,739,180
author_curate_reward""
vote details (11)
@utopian-io ·
Thank you for your review, @helo! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-emrebeyler-new-version-on-tower-hivemind-rest-20190205t022541466z-20190207t154715z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-02-07 15:47:18
last_update2019-02-07 15:47:18
depth2
children0
last_payout2019-02-14 15:47:18
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_length56
author_reputation152,955,367,999,756
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,532,270
net_rshares0
@inertia ·
$0.70
What about:

`/api/v1/<author>/<permlink>/upvotes`

And such.  You’ll have to parse hive_posts_cache.votes as CSV and filter them.  But it might come in handy.
👍  ,
properties (23)
authorinertia
permlinkre-emrebeyler-new-version-on-tower-hivemind-rest-20190204t160625190z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-04 16:06:24
last_update2019-02-04 16:06:24
depth1
children1
last_payout2019-02-11 16:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.523 HBD
curator_payout_value0.174 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length159
author_reputation346,568,901,399,561
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,390,261
net_rshares1,440,566,955,143
author_curate_reward""
vote details (2)
@emrebeyler ·
$0.68
Great idea! Will implement, soon.
👍  , ,
properties (23)
authoremrebeyler
permlinkre-inertia-re-emrebeyler-new-version-on-tower-hivemind-rest-20190204t165302887z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-04 16:53:03
last_update2019-02-04 16:53:03
depth2
children0
last_payout2019-02-11 16:53:03
cashout_time1969-12-31 23:59:59
total_payout_value0.511 HBD
curator_payout_value0.170 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation448,528,959,341,273
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,391,983
net_rshares1,411,793,524,972
author_curate_reward""
vote details (3)
@lacasadepapel ·
good. good but a little more descriptive though
properties (22)
authorlacasadepapel
permlinkre-emrebeyler-new-version-on-tower-hivemind-rest-20190204t144719093z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-04 14:47:18
last_update2019-02-04 14:47:18
depth1
children0
last_payout2019-02-11 14:47:18
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_length47
author_reputation-133,142,740,036
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,387,076
net_rshares0
@partiko ·
Thank you so much for participating the Partiko Delegation Plan Round 1! We really appreciate your support! As part of the delegation benefits, we just gave you a 3.00% upvote! Together, let’s change the world!
👍  ,
properties (23)
authorpartiko
permlinkre-new-version-on-tower-hivemind-rest-20190204t143016
categoryutopian-io
json_metadata""
created2019-02-04 14:30:18
last_update2019-02-04 14:30:18
depth1
children0
last_payout2019-02-11 14:30:18
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_length210
author_reputation39,207,160,334,751
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,386,393
net_rshares1,081,156,331
author_curate_reward""
vote details (2)
@pennsif ·
This post has been included in the latest edition of  [**SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem4february2019-ijioiyq50u) - a digest of all you need to know about the State of Steem.

***

* *Editor of the [**The State of Steem SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem4february2019-ijioiyq50u).*

* *Promoter of [**The State of Steem SoS Weekly Forums**](https://steemit.com/steem/@pennsif/the-state-of-steem-forum-7-steemcommerce-thursday-7-february-8pm-11pm-utc-msp-waves).*

* *Editor of the [**weekly listing of steem radio shows, podcasts & social broadcasts**](https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-week-beginning-4-february-2019).*

* *Founder of the [**A Dollar A Day**](https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it) charitable giving project.*

***
properties (22)
authorpennsif
permlinkre-emrebeyler-new-version-on-tower-hivemind-rest-20190205t233018238z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem4february2019-ijioiyq50u","https://steemit.com/steem/@pennsif/the-state-of-steem-forum-7-steemcommerce-thursday-7-february-8pm-11pm-utc-msp-waves","https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-week-beginning-4-february-2019","https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it"],"app":"steemit/0.1"}
created2019-02-05 23:30:18
last_update2019-02-05 23:30:18
depth1
children0
last_payout2019-02-12 23:30:18
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_length994
author_reputation636,410,097,572,565
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,456,035
net_rshares0
@steem-ua ·
#### Hi @emrebeyler!

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 (22)
authorsteem-ua
permlinkre-new-version-on-tower-hivemind-rest-20190205t030649z
categoryutopian-io
json_metadata"{"app": "beem/0.20.18"}"
created2019-02-05 03:06:51
last_update2019-02-05 03:06:51
depth1
children0
last_payout2019-02-12 03:06:51
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_length289
author_reputation23,214,230,978,060
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,411,215
net_rshares0
@utopian-io ·
Hey, @emrebeyler!

**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-new-version-on-tower-hivemind-rest-20190205t161812z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-02-05 16:18:15
last_update2019-02-05 16:18:15
depth1
children0
last_payout2019-02-12 16:18: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_length592
author_reputation152,955,367,999,756
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,439,115
net_rshares0
@wehmoen · (edited)
 
properties (22)
authorwehmoen
permlinkre-emrebeyler-new-version-on-tower-hivemind-rest-20190204t135320993z
categoryutopian-io
json_metadata{}
created2019-02-04 13:53:21
last_update2020-06-03 06:40:33
depth1
children2
last_payout2019-02-11 13:53:21
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
author_reputation86,504,380,503,125
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,385,019
net_rshares0
@emrebeyler ·
Enjoy! Let me know if you encounter any issues.
👍  
properties (23)
authoremrebeyler
permlinkre-wehmoen-re-emrebeyler-new-version-on-tower-hivemind-rest-20190204t140022599z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-04 14:00:24
last_update2019-02-04 14:00:24
depth2
children1
last_payout2019-02-11 14:00: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_length47
author_reputation448,528,959,341,273
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,385,253
net_rshares7,148,271,566
author_curate_reward""
vote details (1)
@wehmoen · (edited)
 
properties (22)
authorwehmoen
permlinkre-emrebeyler-re-wehmoen-re-emrebeyler-new-version-on-tower-hivemind-rest-20190204t153239720z
categoryutopian-io
json_metadata{}
created2019-02-04 15:32:39
last_update2020-06-03 06:46:21
depth3
children0
last_payout2019-02-11 15:32: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_length1
author_reputation86,504,380,503,125
root_title"New version of Tower (Hivemind + REST)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,388,878
net_rshares0