### Repository https://github.com/princessdharmy/triviums ### History - [Triviums Mobile App](https://steemit.com/utopian-io/@princessdharmy/triviums-mobile-app) ## Fixes One of the major problems Android Developers encounter is *App Crash* with some Exceptions. In order to tackle this problem, here is my implementation: - Firstly, I added a NetworkBoundResource class `FirestoreResultResponse.java`to encapsulate both the data and state ```Java public class FirestoreResultResponse { Map<String, Object> data; String error; public FirestoreResultResponse() { } public FirestoreResultResponse(Map<String, Object> data, String error) { this.data = data; this.error = error; } } ``` - Secondly, I had some issues while fetching data from Firestore; once there is a bad internet connection, the app crashes. So, in order to avoid the *FirebaseFirestoreException*, I used a try-catch in the `StageRepository.java` class : ```Java private void fetchProgress(String categoryName, ProgressCallback callback) { ... docRef.get().addOnCompleteListener(task -> { if (task.isSuccessful()) { } try { callback.onCallback(new FirestoreResultResponse(task.getResult().getData(), null)); } catch (Exception e) { if (e instanceof FirebaseFirestoreException) { callback.onCallback(new FirestoreResultResponse(null, e.getLocalizedMessage())); } e.printStackTrace(); } }) .addOnFailureListener(error -> { callback.onCallback(new FirestoreResultResponse(null, error.toString())); }); } ``` ## New Features - Show Users As stated in the roadmap of my previous post, it's somewhat interesting to know how many people are playing the game you are involved in. So, I decided to get and display all users that are using the app or playing the game. <center></center> *Implementation* - This code snippet fetches all the users in the database - Firestore in the `LeaderboardRepository.java` ```Java private void fetchUsers(UserCallback callback){ CollectionReference collection = firestore.collection("users"); collection.get().addOnCompleteListener(task -> { if (task.isSuccessful()) { document = task.getResult().getDocuments(); } try { callback.onCallback(document); } catch (Exception e) { if (e instanceof FirebaseFirestoreException) { } e.printStackTrace(); } }) .addOnFailureListener(error -> { }); } ``` - The `LeaderboardFragment.java` class gets the user data and display ```Java public void getUsers() { viewModel.getUsers().observe(getViewLifecycleOwner(), response -> { binding.loader.setVisibility(View.GONE); binding.peopleRecyclerview.setVisibility(View.VISIBLE); if (response != null) { adapter.updateData(response); } }); } ``` ## Important resources - [Github Repo](https://github.com/princessdharmy/triviums) - [Pull Request](https://github.com/princessdharmy/triviums/pull/16) - [Apk file](https://github.com/princessdharmy/triviums/releases/tag/1.01) - [Playstore](https://play.google.com/store/apps/details?id=com.app.horizon) ## Roadmap - Leaderboard implementation: ~~Display all users~~ Add users to compete Remove users from competition - Display of users' quiz achievements
author | princessdharmy |
---|---|
permlink | triviums-mobile-app-update-show-users |
category | utopian-io |
json_metadata | {"tags":["utopian-io","development","open-source","android","quiz"],"image":["https://cdn.steemitimages.com/DQme93ndHemqVadUkezp7nUNE1uS3SZCzzDacwyTD4t1YCj/image.png"],"links":["https://github.com/princessdharmy/triviums","https://steemit.com/utopian-io/@princessdharmy/triviums-mobile-app","https://github.com/princessdharmy/triviums/pull/16","https://github.com/princessdharmy/triviums/releases/tag/1.01","https://play.google.com/store/apps/details?id=com.app.horizon"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-12-03 20:33:51 |
last_update | 2018-12-03 20:33:51 |
depth | 0 |
children | 8 |
last_payout | 2018-12-10 20:33:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 8.171 HBD |
curator_payout_value | 2.547 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,736 |
author_reputation | 3,142,320,977,108 |
root_title | "Triviums Mobile App (UPDATE: Show Users)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,311,491 |
net_rshares | 17,677,777,155,021 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jga | 0 | 1,070,829,966 | 6.64% | ||
haiyangdeperci | 0 | 6,910,452,159 | 20% | ||
codingdefined | 0 | 7,794,712,807 | 7.5% | ||
leir | 0 | 1,826,379,727 | 50% | ||
mcfarhat | 0 | 17,015,435,426 | 19.83% | ||
utopian-io | 0 | 17,082,534,671,658 | 13.28% | ||
jaff8 | 0 | 64,966,796,655 | 49.58% | ||
scipio | 0 | 47,556,004,811 | 20% | ||
steemitag | 0 | 3,312,462,290 | 10% | ||
amosbastian | 0 | 100,818,049,586 | 49.58% | ||
grzesiekb | 0 | 223,302,039,393 | 100% | ||
asaj | 0 | 9,077,578,673 | 49.58% | ||
princessdharmy | 0 | 4,198,741,079 | 100% | ||
hakancelik | 0 | 41,617,147,503 | 70% | ||
zcool | 0 | 188,586,133 | 10% | ||
camillesteemer | 0 | -53,836,681 | -100% | ||
hro066 | 0 | 478,122,138 | 100% | ||
sergcat | 0 | 477,797,100 | 100% | ||
ingakoral | 0 | 478,038,214 | 100% | ||
natalinatali | 0 | 477,767,810 | 100% | ||
antonova2030 | 0 | 477,954,418 | 100% | ||
shavgen111 | 0 | 478,080,951 | 100% | ||
dima.nurgaliev | 0 | 477,816,756 | 100% | ||
browan4ik | 0 | 478,128,613 | 100% | ||
giogiorgadze1221 | 0 | 478,118,491 | 100% | ||
xachatryank | 0 | 477,878,227 | 100% | ||
garikpetrosyan | 0 | 477,856,776 | 100% | ||
emilimxitaryan | 0 | 477,519,290 | 100% | ||
neanv | 0 | 477,666,039 | 100% | ||
meyukekogev | 0 | 477,724,017 | 100% | ||
samvelv | 0 | 476,653,652 | 100% | ||
miki21657 | 0 | 477,399,850 | 100% | ||
ivanslonov | 0 | 478,199,529 | 100% | ||
babush | 0 | 477,514,846 | 100% | ||
aboriginalbook | 0 | 477,390,715 | 100% | ||
fedykosoy00 | 0 | 477,562,214 | 100% | ||
remsolo | 0 | 477,673,934 | 100% | ||
jerkybuzzing | 0 | 477,832,686 | 100% | ||
halftimehydrated | 0 | 477,905,355 | 100% | ||
headerharem | 0 | 477,886,476 | 100% | ||
polygontackle | 0 | 477,349,655 | 100% | ||
windtwitter | 0 | 477,799,542 | 100% | ||
monkbulimia | 0 | 477,288,183 | 100% | ||
hoovesreport | 0 | 477,971,466 | 100% | ||
octavesynodic | 0 | 477,594,553 | 100% | ||
pavlovilya23 | 0 | 477,539,118 | 100% | ||
andreisaonov | 0 | 478,000,552 | 100% | ||
arttempavlov | 0 | 478,212,382 | 100% | ||
hsufrank | 0 | 477,980,095 | 100% | ||
elenatagaeva | 0 | 478,010,198 | 100% | ||
marina.astakova | 0 | 478,446,553 | 100% | ||
stacykingsman | 0 | 477,812,781 | 100% | ||
dinasamoilova | 0 | 478,114,094 | 100% | ||
wivesfesnying | 0 | 478,014,875 | 100% | ||
plumbervirgo | 0 | 478,089,939 | 100% | ||
hexagoncanadian | 0 | 477,832,459 | 100% | ||
squashzealous | 0 | 477,833,394 | 100% | ||
testifyservant | 0 | 477,851,200 | 100% | ||
suburbanmammary | 0 | 478,050,269 | 100% | ||
unripecrested | 0 | 477,887,784 | 100% | ||
stollenfrontal | 0 | 477,892,178 | 100% | ||
chewyregretful | 0 | 477,810,400 | 100% | ||
amusingbun | 0 | 478,162,222 | 100% | ||
visitorsahem | 0 | 477,988,482 | 100% | ||
meatgooey | 0 | 478,286,606 | 100% | ||
bumpyforster | 0 | 477,231,297 | 100% | ||
waveoutsiders | 0 | 477,745,179 | 100% | ||
balancebelched | 0 | 477,652,940 | 100% | ||
theythundery | 0 | 477,985,539 | 100% | ||
kneadgit | 0 | 477,914,862 | 100% | ||
abalonegrateful | 0 | 477,236,347 | 100% | ||
muddygrey | 0 | 478,072,373 | 100% | ||
molarwherever | 0 | 478,366,794 | 100% | ||
fourosprey | 0 | 478,254,032 | 100% | ||
huskyelectron | 0 | 478,102,893 | 100% | ||
nseregin8 | 0 | 477,895,401 | 100% | ||
antoniel | 0 | 477,836,715 | 100% | ||
synonymsdiapir | 0 | 478,549,154 | 100% | ||
ayisigi | 0 | 530,520,019 | 100% | ||
mockingexposure | 0 | 478,276,751 | 100% | ||
zeniththrash | 0 | 479,005,245 | 100% | ||
periodantenna | 0 | 478,411,061 | 100% | ||
spheremutes | 0 | 478,488,846 | 100% | ||
flashmixin | 0 | 478,494,357 | 100% | ||
secretecandy | 0 | 478,568,766 | 100% | ||
nartemov198 | 0 | 481,543,084 | 100% | ||
niksem1983 | 0 | 481,455,791 | 100% | ||
esherob | 0 | 481,531,901 | 100% | ||
kristiansim | 0 | 481,456,358 | 100% | ||
maksimle | 0 | 481,663,920 | 100% | ||
kolesnikovev74 | 0 | 481,632,631 | 100% | ||
mmmisha | 0 | 481,497,287 | 100% | ||
roma.kisov | 0 | 481,750,482 | 100% | ||
bolendik | 0 | 481,415,800 | 100% | ||
yulya.zaharova | 0 | 481,627,295 | 100% | ||
stas.borenko | 0 | 481,469,674 | 100% | ||
nikfrol1983 | 0 | 481,287,557 | 100% | ||
igmosk1987 | 0 | 481,683,646 | 100% | ||
nikdem1991 | 0 | 481,423,355 | 100% | ||
kaczynski | 0 | 64,040,316 | 100% | ||
curbot | 0 | 1,936,220,727 | 100% | ||
stmpay | 0 | 4,908,581,699 | 1.8% | ||
sonatapoodle | 0 | 481,333,414 | 100% | ||
tempotruck | 0 | 481,886,934 | 100% | ||
ploverka | 0 | 481,473,329 | 100% | ||
sessionscells | 0 | 481,450,635 | 100% | ||
meetingsnazzy | 0 | 481,912,520 | 100% | ||
smackabandoned | 0 | 481,474,500 | 100% | ||
beankidneyed | 0 | 481,349,595 | 100% | ||
martelomorals | 0 | 481,549,493 | 100% | ||
brazileczo | 0 | 481,436,688 | 100% | ||
daniltoloknov | 0 | 481,455,902 | 100% | ||
vladlenkonkol | 0 | 481,921,811 | 100% | ||
lena118 | 0 | 481,283,519 | 100% | ||
acaspresranna | 0 | 481,938,035 | 100% | ||
korob12 | 0 | 481,441,663 | 100% | ||
palach-myasnik | 0 | 481,923,631 | 100% | ||
paylovarhouve | 0 | 481,616,016 | 100% | ||
postporreof | 0 | 481,666,058 | 100% | ||
shearfeisty | 0 | 481,923,803 | 100% | ||
carrotsstop | 0 | 481,967,767 | 100% | ||
coffleioxhost | 0 | 481,672,847 | 100% | ||
beefhunter | 0 | 481,671,250 | 100% | ||
linksomething | 0 | 481,279,126 | 100% | ||
plaguedelta | 0 | 481,700,000 | 100% | ||
traitssnapper | 0 | 481,570,279 | 100% | ||
reiterateabseil | 0 | 481,303,662 | 100% | ||
plinalacrosse | 0 | 481,626,530 | 100% | ||
nestlewider | 0 | 481,399,364 | 100% | ||
frunchymidwife | 0 | 481,576,717 | 100% | ||
culturepicker | 0 | 481,935,280 | 100% | ||
postitreject | 0 | 481,240,563 | 100% | ||
soundindeter | 0 | 481,600,107 | 100% | ||
jaybum | 0 | 481,453,572 | 100% | ||
mutatorfounded | 0 | 481,521,903 | 100% | ||
houseanger | 0 | 481,939,412 | 100% | ||
radicalpacific | 0 | 481,596,470 | 100% | ||
searchtarobefra | 0 | 481,496,987 | 100% | ||
bulldoperser | 0 | 481,472,753 | 100% | ||
galbestchronpali | 0 | 481,999,922 | 100% | ||
chrnerd | 0 | 473,891,790 | 100% | ||
yingtaodaren | 0 | 186,952,818 | 100% |
Thank you for your contribution. A nice little update to the project and its good to see you are continually progressing with the app. Few thoughts : 1. It's always better not to use path like https://github.com/princessdharmy/triviums/pull/16/files#diff-6889d0299409e1fd2600e5bd55d17c7eR49 but to use relative path. 2. You are showing category even if it is not connected, is that correct? https://github.com/princessdharmy/triviums/pull/16/files#diff-9e6f31efe8684a67503ce75a99bdeeb8R89 ---- 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/2332223). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | codingdefined |
---|---|
permlink | re-princessdharmy-triviums-mobile-app-update-show-users-20181205t045011202z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://github.com/princessdharmy/triviums/pull/16/files#diff-6889d0299409e1fd2600e5bd55d17c7eR49","https://github.com/princessdharmy/triviums/pull/16/files#diff-9e6f31efe8684a67503ce75a99bdeeb8R89","https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2332223","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-12-05 04:50:12 |
last_update | 2018-12-05 04:50:12 |
depth | 1 |
children | 4 |
last_payout | 2018-12-12 04:50:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.343 HBD |
curator_payout_value | 2.362 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 989 |
author_reputation | 532,490,077,298,033 |
root_title | "Triviums Mobile App (UPDATE: Show Users)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,380,437 |
net_rshares | 15,839,207,455,490 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 31,556,055,835 | 100% | ||
utopian-io | 0 | 15,628,816,360,032 | 11.2% | ||
jaff8 | 0 | 75,619,586,366 | 50% | ||
emrebeyler | 0 | 17,165,697,811 | 1% | ||
cheneats | 0 | 557,847,890 | 1.6% | ||
aydant | 0 | 6,543,783,001 | 50% | ||
amosbastian | 0 | 44,331,418,184 | 20.35% | ||
reazuliqbal | 0 | 5,330,097,590 | 5% | ||
hakancelik | 0 | 29,069,086,270 | 50% | ||
chillibeans | 0 | 56,530,527 | 2% | ||
yff | 0 | 160,991,984 | 100% |
@codingdefined thank you for your review and comments. I would like to comment on your thoughts: 1. I don't understand what the path means, I mean the actual problem. 2. When a user launches the app after installation, it's ideal not to leave the main screen blank or to exit the app because there is no internet connection. So, this is the reason I persisted it in Firestore for offline query. No other action can be performed after this when there is no internet
author | princessdharmy |
---|---|
permlink | re-codingdefined-re-princessdharmy-triviums-mobile-app-update-show-users-20181205t100641882z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["codingdefined"],"app":"steemit/0.1"} |
created | 2018-12-05 10:06:48 |
last_update | 2018-12-05 10:06:48 |
depth | 2 |
children | 2 |
last_payout | 2018-12-12 10:06:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 465 |
author_reputation | 3,142,320,977,108 |
root_title | "Triviums Mobile App (UPDATE: Show Users)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,390,370 |
net_rshares | 0 |
I am saying that since you are using the full path as C:\...\..., its better to not use like this and usr a relative path.
author | codingdefined |
---|---|
permlink | re-princessdharmy-re-codingdefined-re-princessdharmy-triviums-mobile-app-update-show-users-20181206t085114724z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-06 08:51:15 |
last_update | 2018-12-06 08:51:15 |
depth | 3 |
children | 1 |
last_payout | 2018-12-13 08:51:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 532,490,077,298,033 |
root_title | "Triviums Mobile App (UPDATE: Show Users)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,440,003 |
net_rshares | 511,324,080 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mlkj | 0 | 511,324,080 | 100% |
Thank you for your review, @codingdefined! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-princessdharmy-triviums-mobile-app-update-show-users-20181205t045011202z-20181207t052415z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-07 05:24:15 |
last_update | 2018-12-07 05:24:15 |
depth | 2 |
children | 0 |
last_payout | 2018-12-14 05:24:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 152,955,367,999,756 |
root_title | "Triviums Mobile App (UPDATE: Show Users)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,482,720 |
net_rshares | 0 |
Congratulations @princessdharmy! You received a personal award! <table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@princessdharmy/birthday1.png</td><td>1 Year on Steemit</td></tr></table> <sub>_[Click here to view your Board](https://steemitboard.com/@princessdharmy)_</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/christmas/@steemitboard/christmas-challenge-send-a-gift-to-to-your-friends-the-party-continues"><img src="https://steemitimages.com/64x128/http://i.cubeupload.com/kf4SJb.png"></a></td><td><a href="https://steemit.com/christmas/@steemitboard/christmas-challenge-send-a-gift-to-to-your-friends-the-party-continues">Christmas Challenge - The party continues</a></td></tr><tr><td><a href="https://steemit.com/christmas/@steemitboard/christmas-challenge-send-a-gift-to-to-your-friends"><img src="https://steemitimages.com/64x128/http://i.cubeupload.com/kf4SJb.png"></a></td><td><a href="https://steemit.com/christmas/@steemitboard/christmas-challenge-send-a-gift-to-to-your-friends">Christmas Challenge - Send a gift to to your friends</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-princessdharmy-20181228t212509000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-12-28 21:25:09 |
last_update | 2018-12-28 21:25:09 |
depth | 1 |
children | 0 |
last_payout | 2019-01-04 21:25:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,359 |
author_reputation | 38,975,615,169,260 |
root_title | "Triviums Mobile App (UPDATE: Show Users)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,511,135 |
net_rshares | 0 |
Congratulations @princessdharmy! You received a personal award! <table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@princessdharmy/birthday2.png</td><td>Happy Birthday! - You are on the Steem blockchain for 2 years!</td></tr></table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@princessdharmy) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=princessdharmy)_</sub> ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-princessdharmy-20191228t213633000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-12-28 21:36:33 |
last_update | 2019-12-28 21:36:33 |
depth | 1 |
children | 0 |
last_payout | 2020-01-04 21:36:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 644 |
author_reputation | 38,975,615,169,260 |
root_title | "Triviums Mobile App (UPDATE: Show Users)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 93,817,764 |
net_rshares | 0 |
Hey, @princessdharmy! **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>
author | utopian-io |
---|---|
permlink | re-triviums-mobile-app-update-show-users-20181205t054559z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-05 05:46:00 |
last_update | 2018-12-05 05:46:00 |
depth | 1 |
children | 0 |
last_payout | 2018-12-12 05:46:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 596 |
author_reputation | 152,955,367,999,756 |
root_title | "Triviums Mobile App (UPDATE: Show Users)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,382,278 |
net_rshares | 0 |