#### Repository https://github.com/busyorg/busy 3 new feature and 2 fixes for Busy. **Note**: for comments, I followed the PO's comment practice. Comments were rarely used in the original code, so I only made a comment when it's really needed. In addition, I wrote the details in commit/issue/PR. ### New Features #### Powerdown information https://github.com/busyorg/busy/pull/2147 - Show the powerdown amount in the wallet - Show the tooltip with next powerdown schedule Previously, Busy doesn't show any powerdown information in the wallet.  > Before: **Busy shows nothing!**  > After: Busy shows both powerdown and delegation in a compact form. ``` const getFormattedPendingWithdrawalSP = (user, totalVestingShares, totalVestingFundSteem) => { const pendingWithdrawalSP = calculatePendingWithdrawalSP( user, totalVestingShares, totalVestingFundSteem, ); if (pendingWithdrawalSP !== 0) { return ( <BTooltip title={ <span> <FormattedMessage id="steem_power_pending_withdrawal_tooltip" defaultMessage="The next power down is scheduled to happen on " /> <FormattedDate value={`${user.next_vesting_withdrawal}Z`} />{' '} <FormattedTime value={`${user.next_vesting_withdrawal}Z`} /> </span> } > <span> {' - '} <FormattedNumber value={pendingWithdrawalSP} /> </span> </BTooltip> ); } ``` > https://github.com/busyorg/busy/pull/2147/commits/0f8419ea58204e5bfd18443832e0367543d36605#diff-12b05106e0ae36b4c39ad614cc8dda47R48 Note: Probably the more important thing about this powerdown is the powerdown amount should be excluded for voting value calculations. Many UIs had/have such bugs. I've fixed some on my own. ##### Benefits 1. Hacking prevention There are many cases where hackers start the powerdown and victims even don't recognize it! If the information is properly shown, this hacking can be prevented. 2. Vote value consistency Powerdown amount is excluded for vote value, but without powerdown amount information, users may wonder why their vote value is quite low. Note that around the end of 13 weeks of powerdown, the difference can be huge. 3. Stopping powerdown Users may change their mind to stop the powerdown if the information is clearly shown everyday. Especially when it's almost done, the powerdown amount can be quite big compared to the remaining so the chance of changing their mind might be pretty high :) #### Show zero payout https://github.com/busyorg/busy/pull/2174 - Show ~~$0.00~~ for payout-declined post all the time - Show $0.00 or ~~$0.00~~ depending on the declined status even for posts with pending payout lower than $0.005.  > Before: Busy shows nothing when payout is zero. So it's hard to tell whether it's due to downvoting or decline.  > After: Busy shows it as ~~$0.00~~ for both posts just posted and paid out. > https://github.com/busyorg/busy/pull/2174/commits/2a52cbc59776a4763d4b3c54017d9f734409733e#diff-63ae944f92a07351d09d0b828b70223eR16 ##### Benefits - For a payout-declined post, you can easily tell if it's declined or not in the beginning - When a post is paid out with $0, you can easily tell if it was due to decline or downvoting. (But maybe due to both :) - Easy to understand for newbies. Newbie may not even understand why some post is paid out with zero. #### 3-digit precision for small values of votings https://github.com/busyorg/busy/pull/2176 - 3-digit precision when 0 < abs(STU) < $0.02 Currently, Busy shows only up to 2-digit precision, while SBD has 3-digit precision. This might be an aesthetical choice. While many people like 3-digit on Steempeak, for instance, I still prefer 2-digit when the amount is large enough. But currently $0.01 needs a full voting with about 500 SP, which means even $0.005 needs 250 SP. As you know, most newbies are much below than that. Their voting always marks as $0.00 **which can't be a good user experience**. ##### Why $0.02? This is not a random pick, but related to dust payout threshold (STEEM_MIN_PAYOUT_SBD), if payout is less than $0.02, it is not actually paid out. It just disappears! See my Utopian post for more details: [Effect of haircut, early voting, beneficiary on dust payout](https://steemit.com/@blockchainstudio/effect-of-haircut-early-voting-beneficiary-on-dust-payout) But still 0 is better to be shown as $0.00 instead of $0.000. That's why 3-digit precision when 0 < abs(STU) < $0.02, 2-dight precision otherwise, which made the following final decision: ``` const USDDisplay = ({ value }) => { const negative = value < 0; const absValue = Math.abs(value); // 0.02 is dust payout threshold (STEEM_MIN_PAYOUT_SBD) const precision = absValue < 0.02 && value > 0 ? 3 : 2; return ( <span> {negative && '-'} {'$'} <FormattedNumber value={absValue} minimumFractionDigits={precision} maximumFractionDigits={precision} /> </span> ); }; ``` > https://github.com/busyorg/busy/pull/2176/files/ac56c90e8f89470303b56d56cf650174cd5acc80#diff-29f54067f30b79acefc4a03bb52b3acdR9 Note: See the bug fix "Remove `US` from `US$` in non-English locales" for the reason why `style={'currency'}` is avoided.  > before  > after  > but still 2-digit for >= $0.02, which is better aesthetically :)  > voting details  > voting details for downvoting ### Bug Fixes #### Remove `US` from `US$` in non-English locales This is a common mistake in using `FormattedNumber`. ``` <FormattedNumber value={value} style={'currency'} currency={'USD'} currencyDisplay={'symbol'} /> ``` > This show `US$` instead of `$` in non-en locales as below,  > before Thus, it should be wrapped with en locale ``` <IntlProvider locale='en'> <FormattedNumber value={value} style={'currency'} currency={'USD'} currencyDisplay={'symbol'} minimumFractionDigits={precision} maximumFractionDigits={precision} /> </IntlProvider> ```  > after While this resolves the problem, `lint` will complain about the code. See a walk-around, e.g, https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/style-prop-object.md). But for vote detail list, this way may lead to slow performance, it's better to be handled by `USDDisplay` class in the above. #### Fix no negative sign for small values https://github.com/busyorg/busy/pull/2176 Previously there was no - sign for small negative values, i.e., no way to tell if it's + or -. #### GitHub Account https://github.com/economicstudio
author | blockchainstudio | ||||||
---|---|---|---|---|---|---|---|
permlink | busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc | ||||||
category | utopian-io | ||||||
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io","development","busy","kr-dev","jjangjjangman"],"users":["blockchainstudio"],"links":["https://github.com/busyorg/busy","https://github.com/busyorg/busy/pull/2147","https://github.com/busyorg/busy/pull/2147/commits/0f8419ea58204e5bfd18443832e0367543d36605#diff-12b05106e0ae36b4c39ad614cc8dda47R48","https://github.com/busyorg/busy/pull/2174","https://github.com/busyorg/busy/pull/2174/commits/2a52cbc59776a4763d4b3c54017d9f734409733e#diff-63ae944f92a07351d09d0b828b70223eR16","https://github.com/busyorg/busy/pull/2176","https://steemit.com/@blockchainstudio/effect-of-haircut-early-voting-beneficiary-on-dust-payout","https://github.com/busyorg/busy/pull/2176/files/ac56c90e8f89470303b56d56cf650174cd5acc80#diff-29f54067f30b79acefc4a03bb52b3acdR9","https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/style-prop-object.md","https://github.com/busyorg/busy/pull/2176"],"image":["https://ipfs.busy.org/ipfs/Qmf1qRMhNrpWzoFdV9ZYJiAe7DTwthJnVdvsJse5i5oZz2","https://ipfs.busy.org/ipfs/QmXA7cJEUNADju9qjmuFaousDm8kFRtpC6TpQ81K82rqKW","https://cdn.steemitimages.com/DQmQEP9M8ef7Gc6kJ8j5AdAdSmh9BiFF6jwpgQrdXHYRSD2/Screen%20Shot%202019-01-28%20at%203.50.20%20PM.png","https://cdn.steemitimages.com/DQmafbeeHfzq1q3JTW6CJNiriKYAg5Cmh8jgqAzPgcammZq/Screen%20Shot%202019-01-28%20at%205.46.20%20PM.png","https://cdn.steemitimages.com/DQmfYm6pZ5MjMWQReh7iaM1M8acMUDTjEzStPLStT17VXzS","https://cdn.steemitimages.com/DQmabD6eXc91JXZUHWrczTRX2uTwPYVktCpwBSroSBQrYdE","https://cdn.steemitimages.com/DQmQ6KGnmd9xypasiZEFguxuDW2mCrkoHA6Nxdd6zfUDJ8Q","https://cdn.steemitimages.com/DQmWC6GSECYdmznQHV6H94pnyWKJxvkURCHvr5mhFVnMPTJ","https://user-images.githubusercontent.com/38183982/52051714-3943d600-254c-11e9-94f6-1f5a7be59887.png","https://user-images.githubusercontent.com/38183982/52060426-17eee400-2564-11e9-9c13-df1cb5c4f960.png","https://user-images.githubusercontent.com/38183982/52061946-723d7400-2567-11e9-8938-998dfdc040ac.png"]} | ||||||
created | 2019-02-01 14:48:21 | ||||||
last_update | 2019-02-06 10:07:09 | ||||||
depth | 0 | ||||||
children | 14 | ||||||
last_payout | 2019-02-08 14:48:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 5.086 HBD | ||||||
curator_payout_value | 1.575 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 7,672 | ||||||
author_reputation | 178,988,499,015,921 | ||||||
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 79,259,145 | ||||||
net_rshares | 14,576,921,504,541 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
justyy | 0 | 217,602,037,340 | 10% | ||
arama | 0 | 1,221,534,276,459 | 100% | ||
eforucom | 0 | 40,270,521,976 | 2% | ||
busy.pay | 0 | 991,302,087,364 | 4.76% | ||
skan | 0 | 966,275,191,418 | 16% | ||
tensor | 0 | 32,130,030,101 | 100% | ||
codingdefined | 0 | 23,401,782,858 | 20% | ||
ratticus | 0 | 4,300,136,991 | 10% | ||
bramd | 0 | 1,768,634,686,464 | 20% | ||
tykee | 0 | 15,116,558,942 | 40% | ||
leir | 0 | 1,970,873,549 | 50% | ||
jadabug | 0 | 1,207,573,623 | 1% | ||
accelerator | 0 | 16,443,153,971 | 1.1% | ||
june0620 | 0 | 21,579,639,547 | 10% | ||
espoem | 0 | 102,689,881,945 | 56.54% | ||
filipino | 0 | 939,431,008 | 10% | ||
mcfarhat | 0 | 46,995,771,977 | 28.27% | ||
bitcoinwolf | 0 | 0 | 1% | ||
captainklaus | 0 | 121,369,663,761 | 100% | ||
jaff8 | 0 | 115,150,804,385 | 70.68% | ||
emrebeyler | 0 | 671,122,298,982 | 100% | ||
newsrx | 0 | 185,122,860 | 11.96% | ||
singhpratyush | 0 | 6,698,183,727 | 100% | ||
steembasicincome | 0 | 86,919,688,766 | 1.11% | ||
lostmine27 | 0 | 37,697,256,417 | 100% | ||
amosbastian | 0 | 164,341,320,485 | 70.68% | ||
asaj | 0 | 17,433,645,122 | 100% | ||
bji1203 | 0 | 49,638,556,462 | 7% | ||
fun2learn | 0 | 1,177,327,545 | 1.6% | ||
portugalcoin | 0 | 9,929,562,784 | 15% | ||
mishana | 0 | 9,168,169,013 | 60% | ||
joceo00 | 0 | 850,757,042,858 | 23% | ||
futurecurrency | 0 | 18,335,494,835 | 67% | ||
reazuliqbal | 0 | 44,827,150,642 | 25% | ||
donekim | 0 | 35,747,561,761 | 100% | ||
alitavirgen | 0 | 17,768,767,873 | 10% | ||
feronio | 0 | 955,438,191 | 100% | ||
kiwifi | 0 | 138,782,967,195 | 25% | ||
blockchainstudio | 0 | 26,882,744,562 | 100% | ||
anpigon | 0 | 87,991,353,494 | 100% | ||
ravenkim | 0 | 53,973,667,186 | 20% | ||
nailyourhome | 0 | 1,207,524,690 | 1.6% | ||
parisfoodhunter | 0 | 25,525,481,633 | 50% | ||
aileecho | 0 | 264,074,793,390 | 100% | ||
ulockblock | 0 | 274,375,549,348 | 100% | ||
glory7 | 0 | 124,348,830,679 | 33% | ||
volare511 | 0 | 554,195,243 | 100% | ||
mops2e | 0 | 675,756,599 | 45.23% | ||
bukio | 0 | 238,140,353,610 | 2.01% | ||
bluengel | 0 | 2,080,079,186 | 5% | ||
englishstudy | 0 | 21,513,199,755 | 75% | ||
pet.society | 0 | 13,198,298,858 | 100% | ||
delegate4upvot | 0 | 1,139,791,613 | 1.6% | ||
up1 | 0 | 12,812,907,494 | 31% | ||
bbooaae | 0 | 69,771,585,977 | 17% | ||
merlin7 | 0 | 297,961,461 | 0.01% | ||
steem-ua | 0 | 1,318,199,499,329 | 11.96% | ||
gomdory | 0 | 68,388,781,865 | 100% | ||
yongsam | 0 | 11,860,160,858 | 100% | ||
teamcr | 0 | 815,575,531 | 100% | ||
stmpay | 0 | 6,171,064,724 | 1.8% | ||
bluesniper | 0 | 2,525,043,397 | 0.36% | ||
phatima | 0 | 4,222,243,365 | 7% | ||
deer3 | 0 | 6,357,289,887 | 100% | ||
ascorphat | 0 | 1,922,435,991 | 2.5% | ||
steem.create | 0 | 2,987,007,728 | 4.33% | ||
luna777 | 0 | 1,123,242,397 | 3.14% | ||
ctime | 0 | 74,027,681,337 | 2.5% | ||
mbappe | 0 | 1,131,457,213 | 3% | ||
byubat | 0 | 3,977,717,733,734 | 100% | ||
someaddons | 0 | 6,511,986,055 | 100% | ||
bejust | 0 | 1,594,765,971 | 100% | ||
xrp.trail | 0 | 962,011,316 | 1.7% | ||
progressing | 0 | 1,439,789,868 | 100% |
In Korean: ํ์ฌ๊น์ง ์ ๊ฐ ์ง์ ๊ตฌํ/์์ ํด์ Busy ๋ฒ ํ๋ฒ์ ์ ๋ฑ๋ก์๋ฃ๋ ๊ฒ๋ค ๋ชจ์ 2๋ฒ์งธ์ ๋๋ค. https://staging.busy.org ๋ก ์ ์ํ์๋ฉด ์ง๊ธ๋ ์ฌ์ฉ๊ฐ๋ฅํฉ๋๋ค. ๋ง์ ๋ถ๋ถ ์ด์ ์ ์์์์ ๋ณด์ จ๋ ๋ด์ฉ์ ๋๋ค. - ํ์๋ค์ด ์ ๋ณด - ์์ ๊ธ์ก 3์๋ฆฌ ํ์! ์๋ง ๋ง์ ๋ถ๋ค๊ป์ ์ํ์๋ ๊ธฐ๋ฅ์ผ๋ฏ. ๊ณฐ๋์ด์์๋ ์ฌ์ฉ๋๋ ๊ธ์ก์ด๊ธฐ๋ํ $0.02 ๋ณด๋ค ์์ผ๋ฉด 3์๋ฆฌ๋ก ๊ทธ๋ณด๋ค ํฌ๋ฉด 2์๋ฆฌ๋ก ๋ณด์ฌ์ค๋๋ค. ๋ฌด์กฐ๊ฑด 3์๋ฆฌ๋ ๋ณ๋ก ์์์ ๊ฒ ๊ฐ์์์. - ๊ธ์ก์ด 0์ผ ๋๋ ๋ณด์ฌ์ค์ decline์ด๋ผ์ ๊ทธ๋ฐ์ง ๋ค์ด๋ณดํ ๋๋ฌธ์ธ์ง ๊ตฌ๋ณ๋๊ฒ ํ์ต๋๋ค. ps. ์ ํ ํผ์ ์ ์ ๋ถ๋ฌธ 1์ 1๋ฑํด์ ์๊ธ 10์คํ ๋ฐ์์ต๋๋ค^^ https://steemit.com/utopian-io/@favcau/suggestions-category-weekly-report-15 ์ ํ ํผ์ ๊ณต์ ํ์ฌ๋ ์๋๊ณ ์ ์ ๋ถ๋ฌธ ๋ชจ๋๋ ์ดํฐ ์ค์ ํ๋ช ์ธ favcau๊ฐ ๊ฐ์ธ์ ์ผ๋ก ์งํํ๋ ํ์ฌ์ ๋๋ค. ์ ํ ํผ์ ๋ณดํ ์ด ์๋ ๋์ผ๋ ์๊ธ 10์คํ์ด ์ ๋ง ์๊ฒ ๋๊ปด์ง๊ธดํ์ง๋ง ๊ฐ์ธ์ ์ผ๋ก ์ ์ ์นดํ ๊ณ ๋ฆฌ๋ฅผ ์ข์ํด์ ๊ธฐ๋ ์ผ๋ก ๋ฆฌ์คํ๊น์ง ํ์ต๋๋ค. (๋ฒ๊ทธ ์นดํ ๊ณ ๋ฆฌ๋ ์ด๋ฏธ ๋๋ฒ ์ฃผ๊ฐ 1์๋ฅผ ํ ์ ์ด ์์ต๋๋ค. ์๋๋ weekly report๋์ค๋๊ฑฐ์ ๋ง์ถฐ ์ฃผ๊ฐ์ด ๋์ ๋๋ค.) ๋จ์ง ์คํ์์ด ์ฌ๋ฌ ์ ์๋ค์ ์ ๊ฒํ ํ๊ณ ๋ฐ์ํด์คฌ์ผ๋ฉด ์ข๊ฒ ๋ค์. ์ต๊ทผ ํ์จ๋๋ ธ๋ค ์๊ฐํ๋์ง ๋ค์ ๋ถ์คํด์ง ๋๋์ ๋๋ค. ์๋ฌดํผ ์์ด๋ง ์กฐ๊ธ ๋์๋ฉด ๋ฒ๊ทธ๋ฆฌํฌํธ์ ์ ์ ์นดํ ๊ณ ๋ฆฌ๋ ์์ง์ ํฌ์คํ ์ ์ฌ์ ํ ๋ณ๊ฐ์ ๋ฌธ์ ์ด์ง๋ง ๊ธฐ๋ณธ์ ์ผ๋ก ํฌ์คํ ํ๋ ๊ฒ ์์ฒด๋ ์ฝ๋ค๊ณ ์๊ฐํฉ๋๋ค. ๋ณด์๋๋ฌธ์ด ์๋๋ผ ์ข์ ์์ด๋์ด ์์ผ์ ๋ถ๋ค์ ๊ผญ ๋์ ํด๋ณด์ธ์~ ๋ฒ๊ทธ๋ ๋ฆฌํฌํธํด๋์ผ๋ฉด ๋ฏผ๋งํด์๋ผ๋ ๋นจ๋ฆฌ ๊ณ ์น๋๊ฒ ์กฐ๊ธ์ด๋ผ๋ ๋์๋ ๊ฑฐ์์. ps2. ์ข์ ์ ๋ฆฌ๋ทฐ์ด๊ฐ ๋ช๋ช ์คํ์ผ์ ๋ํด์ ์ธ๊ธ์ ํด๋จ๋ค์. ์๋์ ์ผ๋ก ์๋นํ ๊ผผ๊ผผํ ๋ฆฌ๋ทฐ์ ์ฐ์ ๊ณ ๋ง์ด ๋ง์์ด ๋ญ๋๋ค. ๊ทธ๋ฐ๋ฐ ์ด์ ์ฒซ๋ฒ์งธ dev๊ธ์ ์ฃผ์ํญ๋ชฉ(ํ๊ฐ์์์คํ๋) ์ญ์ ์๋ ์ฝ๋๋ค์ด ์ฃผ์์ ํ๋๋ ์๋ค๋ ์คํ์ผ์ธ๋ฐ ์ ํผ์ ๋ฌ๊ธฐ๋ ๋ญํด์(์ฌ์ค ์ด๋ถ๋ถ์ด ์์ ๊นํ๋ธ๊ฐ์ ์์คํ ์ด ์๋์ด์์ด์ ๊ตณ์ด ์ฝ๋์ ์ฃผ์์ ๋ง์ด ์๋ค๋ ๊ฒฝํฅ์ด ์๊ธฐ๊ณ ์์ฃ ) ์ ๋จ๊ฑด๋ฐ ๊ทธ๊ฒฝ์ฐ ํ๊ฐ์์ ๊ฐ์ ์์ธ์ด ๋ ์ ๋ฐ์ ์๋๊ฒ์ด ๋ณดํ ๊ธ์ก์ด ๋ฌธ์ ๊ฐ ์๋๋ผ ๊ธฐ๋ถ์ด ์์ข์์์์ฃ ^^ ๊ทธ๋์ ๊ทธ ๋ถ๋ถ์ ์ด๋ฒ์ ์จ๋จ๋๋ฐ ๋๋ค๋ฅธ ์ฝ๋ฉ ์คํ์ผ์ ๋ํด์ ์ง์ ํ ๋ถ๋ถ๋ ์๋ค์. ์ด ๋ถ๋ถ์ญ์ ๊ทธ๊ฒ ์ ๊ฐ ์ฐ๊ณ ์ถ์ ์คํ์ผ์ด ์๋๋ผ Busy์ ์คํ์ผ์ ์ต๋ํ ์กด์คํด์ค ๊ฒ์ธ๋ฐ ์ด๋ฐ ๋ถ๋ถ์ ์ธ๋ถ ๊ธฐ์ฌ์๋ก์จ ์ด์ฉ ์ ์๋ ๋ถ๋ถ ๊ฐ์ต๋๋ค^^ ํ๊ฐ๋ผ๋ ๊ฒ์ด ์ฐธ ์ ๊ฒฝ์ ์์ฐ๋ฉด์๋ ์ ๊ฒฝ์ ์ ํ ์์ธ์๋ ์๋ ๊ฒ์ด ์ฌ๋ ์ฌ๋ฆฌ๊ฐ๋ค์^^ ๋ ์ฟจํด์ง ์ ์๋๋ก ๋ ธ๋ ฅํ๊ฒ ์ต๋๋คใ ใ ์ฌ์ค ๋ฆฌ๋ทฐ์ด๋ ์๋ฉด์๋ ํ๊ฐ๋ฅผ ํ๊ธดํด์ผํ๋ ์ด์ฉ ์ ์์๋ฏ.
author | blockchainstudio |
---|---|
permlink | re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t145419844z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["favcau"],"links":["https://staging.busy.org","https://steemit.com/utopian-io/@favcau/suggestions-category-weekly-report-15"],"image":[]} |
created | 2019-02-01 14:51:51 |
last_update | 2019-02-02 13:04:54 |
depth | 1 |
children | 4 |
last_payout | 2019-02-08 14:51:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,368 |
author_reputation | 178,988,499,015,921 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,259,255 |
net_rshares | 94,759,250,889 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anpigon | 0 | 94,759,250,889 | 100% |
๊ธ์ก ์์์ 3์๋ฆฌ ํ์๋ ์ ๋ง ์ข์ ์์ด๋์ด์ ๋๋ค. ๊ทธ๋ฆฌ๊ณ ๊นํ๋ธ์ ํ๋ํ ๋ด์ญ์ ์ดํด๋ณด๋ ์ ๋ณด๋ค ์ฝ๋ฉ ์ค๋ ฅ์ด ํจ์ฌ ์ข๋ค์. ๊ทธ์ ๋๋์ต๋๋ค.
author | anpigon |
---|---|
permlink | re-blockchainstudio-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190203t014231246z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2019-02-03 01:42:33 |
last_update | 2019-02-03 01:42:33 |
depth | 2 |
children | 3 |
last_payout | 2019-02-10 01:42:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.017 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 17,258,940,000,931 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,322,343 |
net_rshares | 48,108,507,830 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blockchainstudio | 0 | 13,578,296,310 | 50% | ||
gomdory | 0 | 34,530,211,520 | 53.33% |
์์ด ๋ฌด์จ ๊ทธ๋ฐ ๋ง์์ใ ใ ํน์๋ ์ข์๋ณด์ด๋ฉด ๊ทธ๊ฑด ์๋ ์ฝ๋๊ฐ ๊น๋ํ๊ฑฐ์ ์ ๊ฐ ๋ง๋ถ์ธ๊ฑธ๊ฑฐ๊ณ ๋ชจ์๋ ๋ถ๋ถ์์ผ๋ฉด ์ ํ์ผ ๊ฑฐ์์. ๊ทธ ๋ฐ๋๋ ์๊ฒ ์ง๋งใ ใ ์๋ฌด๋๋ ๋จ์ ๊ฑฐ๋ค๋ณด๋ ํ๋ฐ๊พธ๊ธฐ๋ ๊ทธ๋ ๊ณ ์ข ๊ทธ๋ฐ ๋ถ๋ถ์ด ์๋ค์. ์ ๊ฐ ํ๋ก ํธ์๋์ชฝ์ ์ ๋ง ๊ธฐ์ด๋ง๊ณ ๋ ์ ๋ชฐ๋ผ์ ์ฒ์์ ์ ๋ง ๋จ์ํ๊ฑฐ์์ ์๊ฐ์ด ์ ๋ฒ ๋ง์ด ๊ฑธ๋ ธ์๋ค์. ์ง๊ธ๋ ์ ๋๋ก ์ดํดํ๊ณ ํ๊ธฐ๋ณด๋ค ๊ทธ๋๊ทธ๋ ์ํ๋ ํ๋๊ณผ ๋น์ทํ ์ฝ๋๋ฅผ ์ฐพ์์ใ ใ ํ๋ด๋ด๋ ์ค์ ๋๋ค. ์ ํ ํผ์ ๋ณดํ ์ด 2๋ผ์ด๋(์ฒ์์ ์๋ฐํ๊ธดํ๋๋ฐ)๋ ๊ฑด๋๋ฐ์ด์ ๋์ค์ฝ๋๊น์ง ์ฐพ์๊ฐ๋ณด๋ ์ด๊ฒ ์๋ ์์ ๋ณดํ ๊ฐ์น๊ฐ ์ค์ด์ ์๋ค๋ค๋ ์ ๋ฅผ ๋จน๊ณ ์๋๋ผ๊ณ ์. ์๊ฐ์์ด ์๋ ์ ์์์ผ๋ก ๋ณดํ ํ๋ค๊ณ ๋ฎ์๊ฒฝ์ฐ ์ง๊ธ ๋ชป๋ฐ๋ ์ํฉ๋ ์๊ธฐ๋ ๊ฒ ๊ฐ๋๋ผ๊ณ ์. ์ฐธ esteem surfer๊ฐ ์ ๋ง ์ ๋๋ฅ์ผ ๊ฒ๋๋คใ ใ ๋ฒ๊ทธ์ ๊ฐ์ ํ ๊ฒ ํ๋๊ฐ๊ฐ ์๋๋ผ์. ๊ทผ๋ฐ ์ฝ๋๊ฐ ใ ใ ๋์กํด์ ์ ๊ฐ ๋ณด๊ธฐ์. ๊ทธ๋์ ์ฌ์ค ์ค๋ ํ๊ฑฐ๊น์ง ํ๊ณ ์ํ ์ง๋. ๋น์ง๊ฐ ๊ทธ๋๋ ์ต์ ํ๋ ์๋๋ถ๋ถ์ด ์์ด๋ ๊น๋์ ํ๋ฏ. ๊ตฟ์นด๋ฅด๋ง๊ฐ ์ ํ ํผ์๊ธ์ฐ๊ณ ์ฃผ์ ๋จ๊ธฐ๋ผ๊ณ ํด์ ๋จ๊ฒผ๋๋ ์๊ธฐ๋ค ๊ณ์ ์ผ๋ก ์ ๋ฒ ๋ง์ด ๋ณดํ ํด์ฃผ๊ณ ๊ฐ๋ค์. https://steemit.com/utopian-io/@blockchainstudio/esteem-surfer-2-0-5-comments-tab-and-delegation-detail-don-t-work-etc ์ ํ ํผ์ ๋ณดํ ์จ์คใ ใ ๋ฒ๊ทธ๋ฆฌํฌํธ๋ผ ์ข ๋ฏผ๋งํด์ ์ด์ผ๊ธฐ ์ํ๊ณ ์๋ค๊ฐ ์ํ๋ค ์ถ๋๋ผ๊ณ ์. dev๋ ์ค๋ ํ๊ฒ๊น์ง ๋จธ์ง๋๋ฉด ๋ชจ์์ ๋ด๋ ค๊ณ ์.
author | blockchainstudio |
---|---|
permlink | re-anpigon-re-blockchainstudio-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190203t020150714z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["blockchainstudio"],"links":["https://steemit.com/utopian-io/@blockchainstudio/esteem-surfer-2-0-5-comments-tab-and-delegation-detail-don-t-work-etc"],"image":[]} |
created | 2019-02-03 01:59:18 |
last_update | 2019-02-03 01:59:18 |
depth | 3 |
children | 1 |
last_payout | 2019-02-10 01:59:18 |
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 | 749 |
author_reputation | 178,988,499,015,921 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,322,744 |
net_rshares | 0 |
๊ณฐ๋์ด๊ฐ @anpigon๋์ ์์คํ ๋๊ธ์ $0.017์ ๋ณดํ ํด์ $0.006์ ์ด๋ ค๋๋ฆฌ๊ณ ๊ฐ์. ๊ณฐ๋์ด๊ฐ ์ง๊ธ๊น์ง ์ด 2940๋ฒ $35.908์ ๋ณดํ ํด์ $36.395์ ๊ตฌํ์ต๋๋ค. @gomdory ๊ณฐ๋๋คผ~
author | gomdory |
---|---|
permlink | re-re-blockchainstudio-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190203t014231246z-20190209t111839 |
category | utopian-io |
json_metadata | "" |
created | 2019-02-09 11:18:42 |
last_update | 2019-02-09 11:18:42 |
depth | 3 |
children | 0 |
last_payout | 2019-02-16 11:18:42 |
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 | 117 |
author_reputation | 38,104,394,235,725 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,614,339 |
net_rshares | 0 |
์งฑ์งฑ๋งจ ํธ์ถ์ ์๋ตํ์ฌ ๋ณดํ ํ์์ต๋๋ค.
author | bukio |
---|---|
permlink | re-bukio-jjangjjangman-1549033428082 |
category | utopian-io |
json_metadata | "{"tags":["bukio", "jjangjjangman"],"app":"steemer/1.0"}" |
created | 2019-02-01 15:03:48 |
last_update | 2019-02-01 15:03:48 |
depth | 1 |
children | 0 |
last_payout | 2019-02-08 15:03: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 | 22 |
author_reputation | 11,545,563,591,097 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,259,738 |
net_rshares | 0 |

author | gomdory |
---|---|
permlink | re-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t150219 |
category | utopian-io |
json_metadata | "" |
created | 2019-02-01 15:02:21 |
last_update | 2019-02-01 15:02:21 |
depth | 1 |
children | 0 |
last_payout | 2019-02-08 15:02:21 |
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 | 78 |
author_reputation | 38,104,394,235,725 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,259,682 |
net_rshares | 0 |
Thank you for your contribution! 1. Maybe you can also show power down route (if applicable) - and enable a cancel power down option? 2. Tests would be nice to cover the functions e.g. `calculatePendingWithdrawalSP` 3. Thanks for sharing that $0.02 payout information - which you might replace the 0.02 with `STEEM_MIN_PAYOUT_SBD` as you mentioned in the comment. 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-3-2-2-2-1-1-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | justyy |
---|---|
permlink | re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t155404703z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-3-2-2-2-1-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-02-01 15:54:06 |
last_update | 2019-02-01 15:54:06 |
depth | 1 |
children | 2 |
last_payout | 2019-02-08 15:54:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 8.751 HBD |
curator_payout_value | 2.818 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 814 |
author_reputation | 280,616,224,641,976 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,261,730 |
net_rshares | 23,884,970,461,008 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
happyukgo | 0 | 495,347,121 | 25% | ||
codingdefined | 0 | 23,073,296,322 | 20% | ||
superbing | 0 | 2,223,785,441 | 25% | ||
dailyfortune | 0 | 33,941,856 | 25% | ||
espoem | 0 | 26,927,734,492 | 15% | ||
dailystats | 0 | 6,389,481,577 | 25% | ||
utopian-io | 0 | 23,572,208,322,234 | 17.06% | ||
amosbastian | 0 | 61,363,695,564 | 27.44% | ||
organicgardener | 0 | 7,883,597,220 | 25% | ||
dailychina | 0 | 6,111,028,234 | 25% | ||
reazuliqbal | 0 | 17,684,513,647 | 10% | ||
blockchainstudio | 0 | 20,655,487,524 | 100% | ||
mightypanda | 0 | 106,512,436,580 | 65% | ||
turtlegraphics | 0 | 2,323,010,143 | 25% | ||
ulockblock | 0 | 14,370,408,646 | 5.35% | ||
fastandcurious | 0 | 2,277,702,182 | 60% | ||
witnesstools | 0 | 2,239,464,134 | 25% | ||
ilovecoding | 0 | 2,222,765,417 | 25% | ||
curbot | 0 | 2,321,992,538 | 100% | ||
steemfuckeos | 0 | 1,448,299,801 | 25% | ||
linknotfound | 0 | 1,201,294,287 | 100% | ||
ascorphat | 0 | 1,912,339,691 | 2.5% | ||
monster-inc | 0 | 3,090,516,357 | 100% |
Hi @justyy, thanks a lot for your review and very detailed suggestions. Re 1: Of course, I actually thought about this (especially for hacking prevention, but it isn't that simple. I mean without changing the original code too much. Since I'm an external contributor, so I've decided not to change too much the code. But I guess now I got some trust from Busy team :) so maybe more substantial change will come :) Re 2: You're right, at that time, I forgot to add the test code. Re 3: Again you're right. The reason why I just hardcoded it was the original code was with such magic numbers in some cases (of course when it's very simple and only used there once like in this case), so I followed their practice. As you can see, the entire class and file is quite short. But in general I totally agree with you. This is actually the difficulty of contributing to the already established open-source project as external contributor :) sometimes I don't agree with the style, but I think I should follow their style unless the change is absolutely needed. Many thanks again!
author | blockchainstudio |
---|---|
permlink | re-justyy-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t161128239z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["justyy"],"links":["/@justyy"],"image":[]} |
created | 2019-02-01 16:09:00 |
last_update | 2019-02-01 16:11:09 |
depth | 2 |
children | 0 |
last_payout | 2019-02-08 16:09: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 | 1,072 |
author_reputation | 178,988,499,015,921 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,262,331 |
net_rshares | 0 |
Thank you for your review, @justyy! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190201t155404703z-20190203t200241z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-02-03 20:02:42 |
last_update | 2019-02-03 20:02:42 |
depth | 2 |
children | 0 |
last_payout | 2019-02-10 20:02:42 |
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 | 58 |
author_reputation | 152,955,367,999,756 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,354,384 |
net_rshares | 0 |
์... ๋ฒ์ญ์ด ํ์ํด ๋ณด์ด๋ค์^^
author | ravenkim |
---|---|
permlink | re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190202t123420079z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-02-02 12:34:27 |
last_update | 2019-02-02 12:34:27 |
depth | 1 |
children | 2 |
last_payout | 2019-02-09 12:34:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.017 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 107,302,486,367,072 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,297,412 |
net_rshares | 48,356,010,198 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blockchainstudio | 0 | 11,537,699,659 | 45% | ||
gomdory | 0 | 36,818,310,539 | 60.76% |
์์ด๊ธ๊น์ง ์ฐพ์์ฃผ์ ์ ๊ฐ์ฌํฉ๋๋ค^^ ์ฌ์ค ๋งค๋ฒ ์์ด๋ก ๋ ๊ธ์ ํ๊ธ ์์ฝ์ ๋๊ธ์ ๋ฌ๊ณ ์์ต๋๋ค. ์ด ๊ธ์ ํนํ ์์ธํ ๋ฌ์๋ค์. ๊ถ๊ธํ์๋ฉด ๋ณด์ธ์^^ ๋ค์์ ์ ๋ด์ ์ข ํด์ ์๋ก ์ฌ๋ ค๋์ผ๊ฒ ์ต๋๋ค. ๊ทธ๋ฐ๋ฐ ์๋ ์ ํ ํผ์ ๋ฆฌ๋ทฐ์ด ๋๊ธ์์ฒด๊ฐ ๋ณดํ ์ด ๋๊ณ ๋๊ธ๊ฐ์๊ฐ ๋ง์ง ์์ ๊ทธ๋ฅ ๋๋ ํธ์ ๋๋ค. ๋ณดํ ํ์๋ ์ ๊ธฐํ๊ฒ ๋ ๋ถ์กฑํ๊ณ ใ ใ ๊ณฐ๋์ด, ์ธ๋ฃฉ๋ถ๋ฃฉ ๋ฑ ๋ณดํ ํ์ ๋จ์๋๋ ์ ๋ดํ๊ณ ์์ต๋๋ค^^ ๋ง์ ๋ถ๋ค์ด ๊ถ๊ธํดํ์ค๊ฒ ๊ฐ์ ์์ด๊ธ์ ํ๊ธํ์ ๋ฐ๋ก ์ ๊ธฐ๋ ํ๋๋ฐ ์์ ๊ทธ๋ด๋งํ ๊ธ์ด ๋ฑํ ์๊ธฐ๋ ํ๊ณ ์ ํ ํผ์ ๊ธ์ ๊ธฐ์๋ ํฌ์คํ ์๊ฐ ๋ง์์ใ ใ
author | blockchainstudio |
---|---|
permlink | re-ravenkim-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190202t125252519z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2019-02-02 12:52:54 |
last_update | 2019-02-02 12:55:42 |
depth | 2 |
children | 0 |
last_payout | 2019-02-09 12:52:54 |
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 | 299 |
author_reputation | 178,988,499,015,921 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,297,998 |
net_rshares | 0 |
๊ณฐ๋์ด๊ฐ @ravenkim๋์ ์์คํ ๋๊ธ์ $0.018์ ๋ณดํ ํด์ $0.005์ ์ด๋ ค๋๋ฆฌ๊ณ ๊ฐ์. ๊ณฐ๋์ด๊ฐ ์ง๊ธ๊น์ง ์ด 2933๋ฒ $35.832์ ๋ณดํ ํด์ $36.310์ ๊ตฌํ์ต๋๋ค. @gomdory ๊ณฐ๋๋คผ~
author | gomdory |
---|---|
permlink | re-re-blockchainstudio-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190202t123420079z-20190208t221033 |
category | utopian-io |
json_metadata | "" |
created | 2019-02-08 22:10:36 |
last_update | 2019-02-08 22:10:36 |
depth | 2 |
children | 0 |
last_payout | 2019-02-15 22:10:36 |
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 | 118 |
author_reputation | 38,104,394,235,725 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,592,002 |
net_rshares | 0 |
#### Hi @blockchainstudio! 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)**
author | steem-ua |
---|---|
permlink | re-busy-3-new-features-and-2-bug-fixes-powerdown-information-zero-payout-3-digit-precision-etc-20190203t111608z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-02-03 11:16:09 |
last_update | 2019-02-03 11:16:09 |
depth | 1 |
children | 0 |
last_payout | 2019-02-10 11:16: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 | 295 |
author_reputation | 23,214,230,978,060 |
root_title | "Busy - 3 new features and 2 bug fixes - powerdown information, zero payout, 3-digit precision, etc" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,336,705 |
net_rshares | 0 |