create account

[Steemia] - App updates + Owned API by jaysermendez

View this thread on: hive.blogpeakd.comecency.com
· @jaysermendez · (edited)
$69.89
[Steemia] - App updates + Owned API
#### Introduction
Steemia is a social network app running over the Steem Blockchain. This app will provide the users an enriched user experience plus features commonly encountered in a casually used social media. The goal of this project is to give the community a mobile app where they can do their daily activity in the blockchain.

### Bug Fixes
- What was the issue(s)?
The issue was that Steemia was showing the incorrect amount of posted posts. https://github.com/Steemia/Steemia/issues/26

- What was the solution?
Even though the solution was not implemented directly in client side, it was implemented in server side and was introduced in the refactoring of the old endpoints.

### New Features
- What feature(s) did you add?
The new feature added was to display video-only posts instead of making the user open the post. Here are two screenshots for better reference:
![Screen Shot 2018-03-29 at 12.45.40 AM.png](https://steemitimages.com/DQmcwfYsupFQ71D4z8CTNKBWPcyjjFDkPK6vEMDu8BYeFcS/Screen%20Shot%202018-03-29%20at%2012.45.40%20AM.png)

![Screen Shot 2018-03-29 at 1.12.09 AM.png](https://steemitimages.com/DQmVxEfEiAeiyPUKNxnzBepDcrDbruwxmPqxrFyChFQYuGR/Screen%20Shot%202018-03-29%20at%201.12.09%20AM.png)
- How did you implement it/them?
An arbitrary attribute was added to the post object and client side switch the template when this new attribute is true.  Then, using https://github.com/orizens/ngx-youtube-player/ component, videos are rendered.

https://github.com/Steemia/Steemia/pull/35/commits/4aff448fc030b1b649eba5c8fc3096dc92dee0a0#diff-2c566fd7a73d1d115054d050d3d0b8c1

### Other changes

- Client side logic was moved to server side to avoid wasting of memory.
> Before, calculations like steem voting power was calculated in client side. This is not longer true thanks to the new Steemia API.
- Replace old endpoints with new endpoints
> In order to reflect changes in the application, constants were changed with the new endpoints.
- Close popover voting slider after set the weight
> Popover was still open even after vote was emitted correctly. This was causing a bad user experience.
- Fix incorrect reputation
> This change was done in server side and calculations were removed from client side.
- Refactor actions provider
> All the logic are now handled inside the provider instead of the components itself. Also, Google analytics actions are done inside the provider instead of the components.
- Refactor voting slider
> Voting slider was having extra logic that was not really needed. After an audit of this code, I've conclude that this component can be an emitter instead of a whole component.
- Add Google Analytics
>Knowing the audience is crucial as well as know how do they interact with the application. This is why Google Analytics was added.
- Remove delay in actions
> With the all API delays were anywhere causing the app to be outdated of the last content. Now this is not an issue.
- Detect current user before load profile page
> Before, profile page was loaded straight without first checking the user. Opening your profile from one of your post will redirect you to the author profile page instead of your own profile. This was done by adding a middleware to check the user and determine what page to load.
- Change app identifier (minor)
> App was using the default ionic app identifier. Now it is com.steemia.steemia
- Deprecate logger provider
> Logger provider was used to try to get the old API updated with the actions. Now, with the new API this is not longer needed thus, this whole provider was deprecated.
- Refactor paginations
> This was one of the break changes of the new API. Paginations were refactored to follow the new pattern 

#### Pull Requests
https://github.com/Steemia/Steemia/pull/35
https://github.com/Steemia/Steemia/pull/32

#### Contributors
We love contributors! If you want to collaborate in this project, feel free to fork the [Steemia Repo](https://github.com/Steemia/Steemia) and send us a Pull Request

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@jaysermendez/steemia-app-updates-owned-api">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 167 others
properties (23)
authorjaysermendez
permlinksteemia-app-updates-owned-api
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":116088994,"name":"Steemia","full_name":"Steemia/Steemia","html_url":"https://github.com/Steemia/Steemia","fork":false,"owner":{"login":"Steemia"}},"pullRequests":[{"url":"https://api.github.com/repos/Steemia/Steemia/pulls/35","id":178237509,"html_url":"https://github.com/Steemia/Steemia/pull/35","diff_url":"https://github.com/Steemia/Steemia/pull/35.diff","patch_url":"https://github.com/Steemia/Steemia/pull/35.patch","issue_url":"https://api.github.com/repos/Steemia/Steemia/issues/35","number":35,"state":"closed","locked":false,"title":"Refactoring/breaking changes after Steemia API ","user":{"login":"jayserdny","id":19354816,"avatar_url":"https://avatars2.githubusercontent.com/u/19354816?v=4","gravatar_id":"","url":"https://api.github.com/users/jayserdny","html_url":"https://github.com/jayserdny","followers_url":"https://api.github.com/users/jayserdny/followers","following_url":"https://api.github.com/users/jayserdny/following{/other_user}","gists_url":"https://api.github.com/users/jayserdny/gists{/gist_id}","starred_url":"https://api.github.com/users/jayserdny/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jayserdny/subscriptions","organizations_url":"https://api.github.com/users/jayserdny/orgs","repos_url":"https://api.github.com/users/jayserdny/repos","events_url":"https://api.github.com/users/jayserdny/events{/privacy}","received_events_url":"https://api.github.com/users/jayserdny/received_events","type":"User","site_admin":false},"body":"Changes made:\r\n\r\n- Most of the logic moved to server side\r\n- Replace old endpoints with steemia endpoints\r\n- Close popover after vote\r\n- Fix incorrect reputation (server side)\r\n- Refactor actions provider to use google analytics there and load off components logic\r\n- Add Google analytics\r\n- Refactor voting slider popover to be an emitter instead of a whole component\r\n- Remove delay in votes/comments (now data is updated instantly)\r\n- Fix #26 (wrong post count)\r\n- Detect current user before loading profile page (this way if you are open your own profile from a post, you can get the correct page)\r\n- Change app identifier (was using Ionic default identifier)\r\n- Remove unused logic to get balances since this data now comes from backend\r\n- Show youtube player for video-only posts (videos only posts are determined in server side)\r\n- Deprecate logger component since it is not longer needed\r\n- Refactor paginations to be able to work with the new API.\r\n","created_at":"2018-03-29T06:28:40Z","updated_at":"2018-03-29T06:30:58Z","closed_at":"2018-03-29T06:30:58Z","merged_at":"2018-03-29T06:30:58Z","merge_commit_sha":"c1c3838a229fdf92780a55d1796ada224f4c781a","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/Steemia/Steemia/pulls/35/commits","review_comments_url":"https://api.github.com/repos/Steemia/Steemia/pulls/35/comments","review_comment_url":"https://api.github.com/repos/Steemia/Steemia/pulls/comments{/number}","comments_url":"https://api.github.com/repos/Steemia/Steemia/issues/35/comments","statuses_url":"https://api.github.com/repos/Steemia/Steemia/statuses/ace509a3f6a3e17f910837341cd1654839bb6fc7","head":{"label":"Steemia:page/login","ref":"page/login","sha":"ace509a3f6a3e17f910837341cd1654839bb6fc7","user":{"login":"Steemia","id":35668607,"avatar_url":"https://avatars0.githubusercontent.com/u/35668607?v=4","gravatar_id":"","url":"https://api.github.com/users/Steemia","html_url":"https://github.com/Steemia","followers_url":"https://api.github.com/users/Steemia/followers","following_url":"https://api.github.com/users/Steemia/following{/other_user}","gists_url":"https://api.github.com/users/Steemia/gists{/gist_id}","starred_url":"https://api.github.com/users/Steemia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Steemia/subscriptions","organizations_url":"https://api.github.com/users/Steemia/orgs","repos_url":"https://api.github.com/users/Steemia/repos","events_url":"https://api.github.com/users/Steemia/events{/privacy}","received_events_url":"https://api.github.com/users/Steemia/received_events","type":"Organization","site_admin":false},"repo":{"id":116088994,"name":"Steemia","full_name":"Steemia/Steemia","owner":{"login":"Steemia","id":35668607,"avatar_url":"https://avatars0.githubusercontent.com/u/35668607?v=4","gravatar_id":"","url":"https://api.github.com/users/Steemia","html_url":"https://github.com/Steemia","followers_url":"https://api.github.com/users/Steemia/followers","following_url":"https://api.github.com/users/Steemia/following{/other_user}","gists_url":"https://api.github.com/users/Steemia/gists{/gist_id}","starred_url":"https://api.github.com/users/Steemia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Steemia/subscriptions","organizations_url":"https://api.github.com/users/Steemia/orgs","repos_url":"https://api.github.com/users/Steemia/repos","events_url":"https://api.github.com/users/Steemia/events{/privacy}","received_events_url":"https://api.github.com/users/Steemia/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Steemia/Steemia","description":"A mobile app on Steem blockchain!","fork":false,"url":"https://api.github.com/repos/Steemia/Steemia","forks_url":"https://api.github.com/repos/Steemia/Steemia/forks","keys_url":"https://api.github.com/repos/Steemia/Steemia/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Steemia/Steemia/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Steemia/Steemia/teams","hooks_url":"https://api.github.com/repos/Steemia/Steemia/hooks","issue_events_url":"https://api.github.com/repos/Steemia/Steemia/issues/events{/number}","events_url":"https://api.github.com/repos/Steemia/Steemia/events","assignees_url":"https://api.github.com/repos/Steemia/Steemia/assignees{/user}","branches_url":"https://api.github.com/repos/Steemia/Steemia/branches{/branch}","tags_url":"https://api.github.com/repos/Steemia/Steemia/tags","blobs_url":"https://api.github.com/repos/Steemia/Steemia/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Steemia/Steemia/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Steemia/Steemia/git/refs{/sha}","trees_url":"https://api.github.com/repos/Steemia/Steemia/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Steemia/Steemia/statuses/{sha}","languages_url":"https://api.github.com/repos/Steemia/Steemia/languages","stargazers_url":"https://api.github.com/repos/Steemia/Steemia/stargazers","contributors_url":"https://api.github.com/repos/Steemia/Steemia/contributors","subscribers_url":"https://api.github.com/repos/Steemia/Steemia/subscribers","subscription_url":"https://api.github.com/repos/Steemia/Steemia/subscription","commits_url":"https://api.github.com/repos/Steemia/Steemia/commits{/sha}","git_commits_url":"https://api.github.com/repos/Steemia/Steemia/git/commits{/sha}","comments_url":"https://api.github.com/repos/Steemia/Steemia/comments{/number}","issue_comment_url":"https://api.github.com/repos/Steemia/Steemia/issues/comments{/number}","contents_url":"https://api.github.com/repos/Steemia/Steemia/contents/{+path}","compare_url":"https://api.github.com/repos/Steemia/Steemia/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Steemia/Steemia/merges","archive_url":"https://api.github.com/repos/Steemia/Steemia/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Steemia/Steemia/downloads","issues_url":"https://api.github.com/repos/Steemia/Steemia/issues{/number}","pulls_url":"https://api.github.com/repos/Steemia/Steemia/pulls{/number}","milestones_url":"https://api.github.com/repos/Steemia/Steemia/milestones{/number}","notifications_url":"https://api.github.com/repos/Steemia/Steemia/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Steemia/Steemia/labels{/name}","releases_url":"https://api.github.com/repos/Steemia/Steemia/releases{/id}","deployments_url":"https://api.github.com/repos/Steemia/Steemia/deployments","created_at":"2018-01-03T03:55:27Z","updated_at":"2018-03-29T06:31:00Z","pushed_at":"2018-03-29T06:30:59Z","git_url":"git://github.com/Steemia/Steemia.git","ssh_url":"git@github.com:Steemia/Steemia.git","clone_url":"https://github.com/Steemia/Steemia.git","svn_url":"https://github.com/Steemia/Steemia","homepage":"http://steemia.io","size":20889,"stargazers_count":18,"watchers_count":18,"language":"TypeScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":6,"mirror_url":null,"archived":false,"open_issues_count":1,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":6,"open_issues":1,"watchers":18,"default_branch":"master"}},"base":{"label":"Steemia:master","ref":"master","sha":"90b08450721a25e59e413beeee5090010ab5876e","user":{"login":"Steemia","id":35668607,"avatar_url":"https://avatars0.githubusercontent.com/u/35668607?v=4","gravatar_id":"","url":"https://api.github.com/users/Steemia","html_url":"https://github.com/Steemia","followers_url":"https://api.github.com/users/Steemia/followers","following_url":"https://api.github.com/users/Steemia/following{/other_user}","gists_url":"https://api.github.com/users/Steemia/gists{/gist_id}","starred_url":"https://api.github.com/users/Steemia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Steemia/subscriptions","organizations_url":"https://api.github.com/users/Steemia/orgs","repos_url":"https://api.github.com/users/Steemia/repos","events_url":"https://api.github.com/users/Steemia/events{/privacy}","received_events_url":"https://api.github.com/users/Steemia/received_events","type":"Organization","site_admin":false},"repo":{"id":116088994,"name":"Steemia","full_name":"Steemia/Steemia","owner":{"login":"Steemia","id":35668607,"avatar_url":"https://avatars0.githubusercontent.com/u/35668607?v=4","gravatar_id":"","url":"https://api.github.com/users/Steemia","html_url":"https://github.com/Steemia","followers_url":"https://api.github.com/users/Steemia/followers","following_url":"https://api.github.com/users/Steemia/following{/other_user}","gists_url":"https://api.github.com/users/Steemia/gists{/gist_id}","starred_url":"https://api.github.com/users/Steemia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Steemia/subscriptions","organizations_url":"https://api.github.com/users/Steemia/orgs","repos_url":"https://api.github.com/users/Steemia/repos","events_url":"https://api.github.com/users/Steemia/events{/privacy}","received_events_url":"https://api.github.com/users/Steemia/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Steemia/Steemia","description":"A mobile app on Steem blockchain!","fork":false,"url":"https://api.github.com/repos/Steemia/Steemia","forks_url":"https://api.github.com/repos/Steemia/Steemia/forks","keys_url":"https://api.github.com/repos/Steemia/Steemia/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Steemia/Steemia/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Steemia/Steemia/teams","hooks_url":"https://api.github.com/repos/Steemia/Steemia/hooks","issue_events_url":"https://api.github.com/repos/Steemia/Steemia/issues/events{/number}","events_url":"https://api.github.com/repos/Steemia/Steemia/events","assignees_url":"https://api.github.com/repos/Steemia/Steemia/assignees{/user}","branches_url":"https://api.github.com/repos/Steemia/Steemia/branches{/branch}","tags_url":"https://api.github.com/repos/Steemia/Steemia/tags","blobs_url":"https://api.github.com/repos/Steemia/Steemia/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Steemia/Steemia/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Steemia/Steemia/git/refs{/sha}","trees_url":"https://api.github.com/repos/Steemia/Steemia/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Steemia/Steemia/statuses/{sha}","languages_url":"https://api.github.com/repos/Steemia/Steemia/languages","stargazers_url":"https://api.github.com/repos/Steemia/Steemia/stargazers","contributors_url":"https://api.github.com/repos/Steemia/Steemia/contributors","subscribers_url":"https://api.github.com/repos/Steemia/Steemia/subscribers","subscription_url":"https://api.github.com/repos/Steemia/Steemia/subscription","commits_url":"https://api.github.com/repos/Steemia/Steemia/commits{/sha}","git_commits_url":"https://api.github.com/repos/Steemia/Steemia/git/commits{/sha}","comments_url":"https://api.github.com/repos/Steemia/Steemia/comments{/number}","issue_comment_url":"https://api.github.com/repos/Steemia/Steemia/issues/comments{/number}","contents_url":"https://api.github.com/repos/Steemia/Steemia/contents/{+path}","compare_url":"https://api.github.com/repos/Steemia/Steemia/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Steemia/Steemia/merges","archive_url":"https://api.github.com/repos/Steemia/Steemia/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Steemia/Steemia/downloads","issues_url":"https://api.github.com/repos/Steemia/Steemia/issues{/number}","pulls_url":"https://api.github.com/repos/Steemia/Steemia/pulls{/number}","milestones_url":"https://api.github.com/repos/Steemia/Steemia/milestones{/number}","notifications_url":"https://api.github.com/repos/Steemia/Steemia/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Steemia/Steemia/labels{/name}","releases_url":"https://api.github.com/repos/Steemia/Steemia/releases{/id}","deployments_url":"https://api.github.com/repos/Steemia/Steemia/deployments","created_at":"2018-01-03T03:55:27Z","updated_at":"2018-03-29T06:31:00Z","pushed_at":"2018-03-29T06:30:59Z","git_url":"git://github.com/Steemia/Steemia.git","ssh_url":"git@github.com:Steemia/Steemia.git","clone_url":"https://github.com/Steemia/Steemia.git","svn_url":"https://github.com/Steemia/Steemia","homepage":"http://steemia.io","size":20889,"stargazers_count":18,"watchers_count":18,"language":"TypeScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":6,"mirror_url":null,"archived":false,"open_issues_count":1,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":6,"open_issues":1,"watchers":18,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Steemia/Steemia/pulls/35"},"html":{"href":"https://github.com/Steemia/Steemia/pull/35"},"issue":{"href":"https://api.github.com/repos/Steemia/Steemia/issues/35"},"comments":{"href":"https://api.github.com/repos/Steemia/Steemia/issues/35/comments"},"review_comments":{"href":"https://api.github.com/repos/Steemia/Steemia/pulls/35/comments"},"review_comment":{"href":"https://api.github.com/repos/Steemia/Steemia/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/Steemia/Steemia/pulls/35/commits"},"statuses":{"href":"https://api.github.com/repos/Steemia/Steemia/statuses/ace509a3f6a3e17f910837341cd1654839bb6fc7"}},"author_association":"OWNER"}],"platform":"github","type":"development","tags":["utopian-io","steemia","steemdev","steemapp","opensource"],"users":["jaysermendez"],"links":["https://steemitimages.com/DQmcwfYsupFQ71D4z8CTNKBWPcyjjFDkPK6vEMDu8BYeFcS/Screen%20Shot%202018-03-29%20at%2012.45.40%20AM.png","https://steemitimages.com/DQmVxEfEiAeiyPUKNxnzBepDcrDbruwxmPqxrFyChFQYuGR/Screen%20Shot%202018-03-29%20at%201.12.09%20AM.png","https://github.com/Steemia/Steemia"],"image":["https://steemitimages.com/DQmcwfYsupFQ71D4z8CTNKBWPcyjjFDkPK6vEMDu8BYeFcS/Screen%20Shot%202018-03-29%20at%2012.45.40%20AM.png","https://steemitimages.com/DQmVxEfEiAeiyPUKNxnzBepDcrDbruwxmPqxrFyChFQYuGR/Screen%20Shot%202018-03-29%20at%201.12.09%20AM.png"],"moderator":{"account":"vladimir-simovic","time":"2018-03-30T15:05:12.983Z","reviewed":true,"pending":false,"flagged":false},"questions":[{"question":"Is the project description formal?","answers":[{"value":"Yes it’s straight to the point","selected":true,"score":10},{"value":"Need more description ","selected":false,"score":5},{"value":"Not too descriptive","selected":false,"score":0}],"selected":0},{"question":"Is the language / grammar correct?","answers":[{"value":"Yes","selected":true,"score":20},{"value":"A few mistakes","selected":false,"score":10},{"value":"It's pretty bad","selected":false,"score":0}],"selected":0},{"question":"Was the template followed?","answers":[{"value":"Yes","selected":true,"score":10},{"value":"Partially","selected":false,"score":5},{"value":"No","selected":false,"score":0}],"selected":0},{"question":"How do you rate the amount of work?","answers":[{"value":"Very High","selected":false,"score":20},{"value":"High","selected":false,"score":16},{"value":"Medium","selected":true,"score":12},{"value":"Low","selected":false,"score":7},{"value":"Very Low","selected":false,"score":3}],"selected":2},{"question":"How do you rate the impact on the Project?","answers":[{"value":"Very High","selected":false,"score":20},{"value":"High","selected":false,"score":16},{"value":"Medium","selected":true,"score":12},{"value":"Low","selected":false,"score":7},{"value":"Very Low","selected":false,"score":3}],"selected":2}],"score":55}"
created2018-03-29 07:05:12
last_update2018-03-30 15:05:21
depth0
children6
last_payout2018-04-05 07:05:12
cashout_time1969-12-31 23:59:59
total_payout_value48.898 HBD
curator_payout_value20.995 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,165
author_reputation20,790,862,502,465
root_title"[Steemia] - App updates + Owned API"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,227,909
net_rshares28,556,500,650,389
author_curate_reward""
vote details (231)
@bdohermos ·
$0.03
Los usuarios esperamos que puedan resolver pronto los detalles del proyecto y tengamos la posibilidad de usar sus herramientas!
πŸ‘  
properties (23)
authorbdohermos
permlinkre-jaysermendez-steemia-app-updates-owned-api-20180331t001757589z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-30 23:48:36
last_update2018-03-30 23:48:36
depth1
children0
last_payout2018-04-06 23:48:36
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation66,509,616,127
root_title"[Steemia] - App updates + Owned API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,534,363
net_rshares9,800,192,300
author_curate_reward""
vote details (1)
@jaysermendez ·
$0.02
Steemia Inner Comment Test
πŸ‘  
properties (23)
authorjaysermendez
permlinkre-steemia-app-updates-owned-api-20180401t075458908z
categoryutopian-io
json_metadata{"community":"steemia","app":"steemia/0.0.1"}
created2018-04-01 07:54:57
last_update2018-04-01 07:54:57
depth1
children0
last_payout2018-04-08 07:54:57
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation20,790,862,502,465
root_title"[Steemia] - App updates + Owned API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,741,276
net_rshares9,159,573,954
author_curate_reward""
vote details (1)
@jaysermendez ·
$0.03
Inner comment 2 test
πŸ‘  
properties (23)
authorjaysermendez
permlinkre-steemia-app-updates-owned-api-20180401t080624189z
categoryutopian-io
json_metadata{"community":"steemia","app":"steemia/0.0.1"}
created2018-04-01 08:06:24
last_update2018-04-01 08:06:24
depth1
children0
last_payout2018-04-08 08:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation20,790,862,502,465
root_title"[Steemia] - App updates + Owned API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,742,500
net_rshares9,375,093,341
author_curate_reward""
vote details (1)
@utopian-io ·
$0.03
### Hey @jaysermendez I am @utopian-io. I have just upvoted you!
#### Achievements
- WOW WOW WOW People loved what you did here. GREAT JOB!
- You have less than 500 followers. Just gave you a gift to help you succeed!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
πŸ‘  
properties (23)
authorutopian-io
permlinkre-jaysermendez-steemia-app-updates-owned-api-20180331t003355304z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-31 00:34:03
last_update2018-03-31 00:34:03
depth1
children0
last_payout2018-04-07 00:34:03
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,145
author_reputation152,955,367,999,756
root_title"[Steemia] - App updates + Owned API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,538,213
net_rshares9,584,803,458
author_curate_reward""
vote details (1)
@vladimir-simovic ·
$1.17
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
πŸ‘  ,
properties (23)
authorvladimir-simovic
permlinkre-jaysermendez-steemia-app-updates-owned-api-20180330t150545098z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-30 15:05:54
last_update2018-03-30 15:05:54
depth1
children1
last_payout2018-04-06 15:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.883 HBD
curator_payout_value0.290 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation56,930,790,558,862
root_title"[Steemia] - App updates + Owned API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,469,117
net_rshares389,061,339,039
author_curate_reward""
vote details (2)
@utopian.tip ·
Hey @vladimir-simovic, I just gave you a tip for your hard work on moderation. Upvote this comment to support the utopian moderators and increase your future rewards!
properties (22)
authorutopian.tip
permlinkre-re-jaysermendez-steemia-app-updates-owned-api-20180330t150545098z-20180331t013438
categoryutopian-io
json_metadata""
created2018-03-31 01:34:39
last_update2018-03-31 01:34:39
depth2
children0
last_payout2018-04-07 01:34: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_length166
author_reputation238,310,597,885
root_title"[Steemia] - App updates + Owned API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,543,873
net_rshares0