#### Repository https://github.com/byteball > After doing some quick assesment, seems I can't build this project. I will pass the ideas, direction, and architecture to the community and see if this project get move on or being stalled (probably I can only create some PoC and examples) #### Direction - Dogfooding after beta release. - Using other platforms (e.g Utopian) to submit the Task Request before beta release. - Always setup some tools to enforce many things (e.g code style, commit message, PR template, etc) early on before submiting Task Request. - Utilize frameworks if applicable. Having an agreement for convention and approach can improve maintainability. - Consensus base development? #### Technology Stack There are 3 component for creating this project: wallet, bot, and oracle. ##### Oracle This is the first time I design an Oracle service. When I think about an Oracle (not mistaken with database) I though it's a nice to have service if you already had a product but seems I mistaken. The Oracle in this project are some sort of service (Github call it App) which pass some event in Github/Gitlab to Byteball DAG. I think make it as plain as possible but well architected should be viable. | Framework and Technology | Reason | | --- | --- | | [Nest][]/[TsED][] | This is closest server-side framework I can think of which adopt many design pattern | | GraphQL | In case the Oracle need to interact with the repository. Although this Oracle will use Webhook a lot | To make it as plain as possible, I have been thinking to treat this Oracle as a switch or multiplexer. I hope this way we can avoid storing any data in the Oracle. Seems I need to detail this more in another post while demistify the flow of the data on each event. Also, having a public dashboard could be *a nice thing to have*? Maybe? ##### Bot The bot (or I should say the bot that used by the organization) is quite unique because of the plugins mechanism have an ability to install a plugin remotely. Hopefully, it can also be integrated into the wallet ⎝ ͡⎚ ͜つ ͡⎚⎠. | Main Dependencies | Reason | | --- | --- | | Apollo (GraphQL) | To interact with (and potentially combine) Github & Gitlab API using <a href="https://www.apollographql.com/docs/graphql-tools/schema-delegation.html">schema delegation</a> | | Express | Have many great middleware built by the ecosystem | | Typescript | Well, this is little bit opiniated but I always though that having an ability to specify some constraints (via strong typing) can improve the maintainablity in the long term | The reasons I don't suggest to use [Nest][]/[TsED][] is the plugins mechanism that this bot has, *which mean* you need some degree of flexibility to implement your own convention. Having a rigid framework to decide the way you build this bot will limit what the plugins can do. I suggest the plugins implementation adopt how [Vue CLI 3][] and [Cerebro][] approach it by utilizing dynamic `require` and NPM registry. Ah yes, actually, the `npm` cli can be used programmatically and there is a Javascript wrapper for that, so...( ͡° ͜ʖ ͡°) [Nest]: https://nestjs.com/ [TsED]: http://tsed.io/ ##### Wallet The wallet itself is just a pretext to store and hold the token and interact with the bot to create/submit bounties. The main goal for this wallet is to be swiss-army-knife tools for managing a project, especially Open Source one (but not limited to Enterprise project). The technology stack that I'm going to propose: | Framework & Main Dependencies | Reason | | --- | --- | | Vue | To support incremental adoption of new technology via @vue/cli 3 | | Quasar | Rich UI component and community (somehow it's popular in blockchain community) | | Electron | The most known way to build and deploy desktop application. It even support native dependencies compilation which make it easy to install `sqlite3` and `secp256k1` | This wallet also has the plugins mechanism with some constraint. I suggest the plugins mechanism in this wallet borrow some extensibility principles and patterns in VSCode while the implementation adopted from [Cerebro][] which use dynamic `require` and NPM registry (I doubting about VSCode approach because it's too complex and the usage are quite different). Some constraint which borrow [VSCode extensibility patterns][] that I can think of: - The plugins API represents asynchronous operations with promises. From the plugin module, any type of promise can be returned. - Events in the plugins API are exposed as functions which the plugin creator can call with a listener-function to subscribe. - The plugins API will not expose the DOM to the plugin creator. Plugin creator can only interact on some specific UI in predefined manner. #### Architecture It's always a good thing to have a feedback when you write something. And yes, I got some feedback in my last post to use Oracle. It's quite challenging because I don't know how the Oracle usually work and after some study, here is the high level architecture that I got: <center><img height="500" src="https://ipfs.busy.org/ipfs/QmTrJuSAd7ZpJDWHB2YtKX56QVmffaN54fiC8oaopCwY1e"/></center> - **Desktop Wallet** - A Byteball wallet and also swiss-army-knife tools for managing a project. Can be extended via plugins. - **Bot** - From the digram above, seems the bot only act as a gateway. However, it's more than that. While it act as a gateway, it still a bot. Another role this bot has is to notify the Oracle of some user action like creating a bounty (which also deploy the smart contract). Also, thanks to the plugins mechanism you can integrate it with others services. The bot itself can also be installed inside the wallet to support developer that not belong to any organization. - **Oracle** - The Oracle service will act as a plain service (Github App). After the user authorize to use the App (Oracle), the user can controll which repository can be interacted/controlled by the Oracle. The Oracle can only do: - pass commit status update to Byteball DAG - pass Pull Request status update and metadata to the Byteball DAG - comment on an Issue or Pull Request (I take an inspiration from GitCoin) - read/set/update Milestone <blockquote> Probably you (JS dev) not notice this, GraphQL query/mutation/subscription schema has similiar characteristic with Javascript Object especially when you use destructuring assignment. Both of them can pick the data you only need and also call a function inside an object (bracket). Here is the question: Is this coincidence? Do TC39 know this? Is Facebook has hidden intention? Can we convert the GraphQL query/mutation/subscription schema into Javascript expression so we can use it as a Javascript API without spin-up a HTTP server? PS: All the question is just a joke. Only the last one is the real question ᖗ👁️෴👁️ᖘ </blockquote> > FYI: Gitlab GraphQL API is still alpha #### Extensibility via Plugins For the plugins system, I take inspiration from [Vue CLI 3][] and [Cerebro][] which ~~abuse~~ use NPM registry as a marketplace. And if possible, we can also adopting some of [VSCode extensibility patterns][] to make the Plugins API more flexible yet doesn't break the host (wallet & bot). <center><img src="https://ipfs.busy.org/ipfs/Qma8KxDPYcHvxKEsh9QftaPUtMcuE8op5mJHG1cJfR1z2K"/></center> The API we want to expose can came later while developing the desktop wallet and the bot. I usually use some sort of IDL when creating 2 application/platform that share common functionality. For this project, defining the exposed API in separate repository then place it as a git submodule in wallet-repo and bot-repo could enforce both application share common API. Lastly, some potential plugins I can think of to manage OSS project: - Stackoverflow plugins - Utopian plugins - Discord plugins? [Vue CLI 3]: https://cli.vuejs.org/dev-guide/ui-api.html#ui-files [Cerebro]: https://github.com/KELiON/cerebro/blob/master/app/plugins/externalPlugins.js [VSCode extensibility patterns]: https://code.visualstudio.com/docs/extensionAPI/patterns-and-principles#_extensibility-patterns --- <sup> There is repositories I create in prompt of the Use-a-thon event. - https://github.com/git-ball - https://gitlab.com/GitBall </sup> --- #### GitHub Account https://github.com/DrSensor
author | drsensor |
---|---|
permlink | byteball-use-a-thon-a-way-to-contract-reward-contributor-efficiently-high-level-detail-and-the-direction-1536974947293 |
category | byteball |
json_metadata | {"app":"steeditor/0.1.2","format":"markdown","image":[],"tags":["byteball","useathon","utopian-io","ideas"],"users":[],"links":[]} |
created | 2018-09-15 01:29:09 |
last_update | 2018-09-16 12:50:57 |
depth | 0 |
children | 6 |
last_payout | 2018-09-22 01:29:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.499 HBD |
curator_payout_value | 0.096 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,294 |
author_reputation | 17,679,210,755,117 |
root_title | "Byteball Use-a-Thon: A way to contract/reward Contributor efficiently - High level detail and the direction" |
beneficiaries | [] |
max_accepted_payout | 100,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,321,654 |
net_rshares | 549,747,601,031 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
matildapurse | 0 | 1,947,707,090 | 25% | ||
cryptkeeper | 0 | 17,501,222,223 | 100% | ||
aleister | 0 | 6,048,678,628 | 30% | ||
jakipatryk | 0 | 68,804,266,687 | 100% | ||
yehey | 0 | 36,090,851,722 | 10% | ||
luigi-tecnologo | 0 | 1,252,634,775 | 4% | ||
nofx | 0 | 573,276,301 | 100% | ||
favcau | 0 | 58,661,318,136 | 100% | ||
jaff8 | 0 | 63,092,338,103 | 100% | ||
bringolo | 0 | 26,597,395,379 | 99.71% | ||
punqtured | 0 | 1,446,107,702 | 100% | ||
acknowledgement | 0 | 520,940,427 | 10% | ||
instaforex | 0 | 549,614,236 | 100% | ||
beetlevc | 0 | 627,342,577 | 1% | ||
merry1990 | 0 | 548,320,653 | 100% | ||
alex20050503 | 0 | 549,849,344 | 100% | ||
annetlitvin | 0 | 549,542,678 | 100% | ||
missnadeen | 0 | 547,907,149 | 100% | ||
filinenok | 0 | 549,979,761 | 100% | ||
ilia013v | 0 | 549,585,776 | 100% | ||
wityi | 0 | 549,322,221 | 100% | ||
giogiorgadze1221 | 0 | 548,256,035 | 100% | ||
karinegevorgyan | 0 | 548,242,358 | 100% | ||
saevpek | 0 | 548,456,832 | 100% | ||
sonagalstyan | 0 | 549,126,994 | 100% | ||
karapetyang | 0 | 549,171,984 | 100% | ||
klaraminasyan | 0 | 548,678,516 | 100% | ||
naskaipr12 | 0 | 548,666,879 | 100% | ||
marunkas20 | 0 | 547,358,296 | 100% | ||
johnfogel | 0 | 548,323,345 | 100% | ||
xlibanti | 0 | 549,727,528 | 100% | ||
araxachatryan | 0 | 548,737,814 | 100% | ||
hunangalstyan | 0 | 549,926,477 | 100% | ||
viktorzarubin | 0 | 548,990,101 | 100% | ||
ionov57 | 0 | 548,861,225 | 100% | ||
stogonin | 0 | 549,969,492 | 100% | ||
albinasamirova | 0 | 548,893,661 | 100% | ||
aboriginalbook | 0 | 548,138,965 | 100% | ||
needlesten | 0 | 549,772,924 | 100% | ||
boulangerefinger | 0 | 548,193,189 | 100% | ||
bankhayloft | 0 | 548,787,999 | 100% | ||
chestyovert | 0 | 548,395,438 | 100% | ||
uncertaintymouse | 0 | 548,851,402 | 100% | ||
rhodiumyellow | 0 | 549,197,978 | 100% | ||
killex | 0 | 548,349,340 | 100% | ||
marina.yanalova | 0 | 549,405,063 | 100% | ||
kravecmarina | 0 | 548,078,646 | 100% | ||
elvinhender | 0 | 549,139,221 | 100% | ||
jacktyler97 | 0 | 548,808,214 | 100% | ||
edwardcru96 | 0 | 549,706,514 | 100% | ||
hipolitc | 0 | 547,745,734 | 100% | ||
upperhonorable | 0 | 549,713,477 | 100% | ||
rubydetails | 0 | 548,999,976 | 100% | ||
mightypanda | 0 | 30,154,134,007 | 50% | ||
wigeonfeatures | 0 | 549,331,280 | 100% | ||
evasivepike | 0 | 547,289,740 | 100% | ||
grindanalogue | 0 | 548,771,948 | 100% | ||
valvebangers | 0 | 548,931,088 | 100% | ||
anycases | 0 | 549,395,622 | 100% | ||
gallopescabeche | 0 | 549,271,470 | 100% | ||
pointingevasive | 0 | 548,965,382 | 100% | ||
micropituitary | 0 | 548,756,682 | 100% | ||
thusmow | 0 | 549,396,604 | 100% | ||
ringwormbasic | 0 | 549,028,937 | 100% | ||
windtwitter | 0 | 548,810,609 | 100% | ||
substrcake | 0 | 548,899,209 | 100% | ||
fadedclassic | 0 | 547,942,187 | 100% | ||
shortcrustmend | 0 | 548,675,677 | 100% | ||
yeastynamaka | 0 | 549,132,671 | 100% | ||
whimperrubbery | 0 | 549,128,295 | 100% | ||
obstinacyseal | 0 | 548,492,519 | 100% | ||
describedreef | 0 | 548,378,091 | 100% | ||
honeycheek | 0 | 548,501,879 | 100% | ||
pedlarthermal | 0 | 548,271,157 | 100% | ||
kiraluchkova | 0 | 550,024,306 | 100% | ||
djane860 | 0 | 549,237,883 | 100% | ||
maslov11 | 0 | 548,982,715 | 100% | ||
petrov21 | 0 | 550,067,455 | 100% | ||
andreiakilov | 0 | 548,622,914 | 100% | ||
stacykingsman | 0 | 547,830,972 | 100% | ||
nikolay.suhoruk | 0 | 547,754,063 | 100% | ||
rebrovivan | 0 | 549,183,928 | 100% | ||
tamarakanakova | 0 | 550,034,071 | 100% | ||
ydomarev | 0 | 547,855,723 | 100% | ||
dividehints | 0 | 547,482,814 | 100% | ||
electricbrails | 0 | 548,097,380 | 100% | ||
drinkschin | 0 | 547,281,407 | 100% | ||
homesickhow | 0 | 549,211,278 | 100% | ||
scourgebar | 0 | 548,178,245 | 100% | ||
quantushower | 0 | 549,631,811 | 100% | ||
tridentcorny | 0 | 548,503,112 | 100% | ||
gifteddwarf | 0 | 548,724,794 | 100% | ||
acrobatichair | 0 | 547,882,521 | 100% | ||
wallownine | 0 | 548,773,055 | 100% | ||
firepoint | 0 | 549,179,326 | 100% | ||
abalonegrateful | 0 | 549,206,762 | 100% | ||
brokenflywheel | 0 | 548,958,219 | 100% | ||
mercedesmetric | 0 | 548,891,071 | 100% | ||
fourosprey | 0 | 549,246,085 | 100% | ||
stimulusmaybe | 0 | 548,496,397 | 100% | ||
couldpinkie | 0 | 549,165,705 | 100% | ||
blandstatics | 0 | 549,137,740 | 100% | ||
sordinistoat | 0 | 549,146,978 | 100% | ||
blazarpastebin | 0 | 548,999,185 | 100% | ||
doorpedal | 0 | 548,730,790 | 100% | ||
kiryuha11 | 0 | 547,576,835 | 100% | ||
nbusurev | 0 | 548,021,002 | 100% | ||
iauns | 0 | 44,464,529,122 | 52% | ||
tsonkomirchev | 0 | 561,157,967 | 100% | ||
no-matter | 0 | 549,461,964 | 100% | ||
antoniel | 0 | 549,318,102 | 100% | ||
dessertplay | 0 | 547,463,464 | 100% | ||
buntlinelard | 0 | 549,084,505 | 100% | ||
jacekw.dev | 0 | 1,778,955,740 | 100% | ||
ytterbiumchimp | 0 | 548,792,269 | 100% | ||
samoansomber | 0 | 547,679,493 | 100% | ||
tattooedwinner | 0 | 548,950,367 | 100% | ||
cheesesguns | 0 | 549,084,505 | 100% | ||
scubaelaborate | 0 | 549,084,505 | 100% | ||
sodgelatin | 0 | 549,084,505 | 100% | ||
shortsminge | 0 | 549,084,505 | 100% | ||
periodantenna | 0 | 549,460,232 | 100% | ||
soulfulurban | 0 | 549,084,505 | 100% | ||
papabyte | 0 | 12,802,848,561 | 100% | ||
steem-ua | 0 | 101,199,780,563 | 0.49% | ||
narkojen | 0 | 549,084,505 | 100% | ||
pashafeloff | 0 | 549,084,505 | 100% | ||
devidhodz | 0 | 548,986,888 | 100% | ||
semenovyx83 | 0 | 549,084,505 | 100% | ||
korob1218 | 0 | 548,953,147 | 100% | ||
sabitovv | 0 | 549,084,505 | 100% | ||
kosirinr | 0 | 549,084,505 | 100% | ||
nothingismagick | 0 | 5,373,213,176 | 100% | ||
nfc | 0 | 6,683,860,687 | 1% | ||
teamcr | 0 | 757,690,755 | 100% | ||
altcoinb | 0 | 585,642,634 | 100% | ||
curbot | 0 | 202,431,564 | 2% |
Hi @drsensor, thank you for your contribution. You made a great post! Unfortunately *Suggestions relating to product or organizational processes will not be considered for reward*. However, I will share your post with the ByteBall team so you can get feedback from them. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines). ---- 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 | favcau |
---|---|
permlink | re-drsensor-byteball-use-a-thon-a-way-to-contract-reward-contributor-efficiently-high-level-detail-and-the-direction-1536974947293-20180919t212132738z |
category | byteball |
json_metadata | {"tags":["byteball"],"users":["drsensor"],"links":["https://join.utopian.io/guidelines","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-09-19 21:21:33 |
last_update | 2018-09-19 21:21:33 |
depth | 1 |
children | 1 |
last_payout | 2018-09-26 21:21:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.158 HBD |
curator_payout_value | 1.715 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 563 |
author_reputation | 75,981,011,753,578 |
root_title | "Byteball Use-a-Thon: A way to contract/reward Contributor efficiently - High level detail and the direction" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,708,058 |
net_rshares | 5,159,603,077,308 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
utopian-io | 0 | 5,130,408,535,000 | 3.32% | ||
organicgardener | 0 | 4,772,813,806 | 25% | ||
drsensor | 0 | 5,673,371,156 | 100% | ||
mightypanda | 0 | 17,677,330,169 | 25% | ||
fastandcurious | 0 | 1,071,027,177 | 25% |
Thank you for your review, @favcau! So far this week you've reviewed 1 contributions. Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-drsensor-byteball-use-a-thon-a-way-to-contract-reward-contributor-efficiently-high-level-detail-and-the-direction-1536974947293-20180919t212132738z-20180924t104541z |
category | byteball |
json_metadata | "{"app": "beem/0.19.42"}" |
created | 2018-09-24 10:45:42 |
last_update | 2018-09-24 10:45:42 |
depth | 2 |
children | 0 |
last_payout | 2018-10-01 10:45: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 | 109 |
author_reputation | 152,955,367,999,756 |
root_title | "Byteball Use-a-Thon: A way to contract/reward Contributor efficiently - High level detail and the direction" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,114,213 |
net_rshares | 0 |
I don't want to discourage you but i suggest that you should mention while using pic from any post . for e.g. Byteball dag pics. I don't mind if you use them but just a suggestion.
author | genievot |
---|---|
permlink | re-drsensor-byteball-use-a-thon-a-way-to-contract-reward-contributor-efficiently-high-level-detail-and-the-direction-1536974947293-20180916t110838457z |
category | byteball |
json_metadata | {"tags":["byteball"],"app":"steemit/0.1"} |
created | 2018-09-16 11:08:39 |
last_update | 2018-09-16 11:08:39 |
depth | 1 |
children | 2 |
last_payout | 2018-09-23 11:08:39 |
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 | 180 |
author_reputation | 5,993,018,919,157 |
root_title | "Byteball Use-a-Thon: A way to contract/reward Contributor efficiently - High level detail and the direction" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,438,702 |
net_rshares | 0 |
Thanks for mentioning @genievot . Can I ask where do you get that line break image 🙂? For the rest of the logo, I think it shouldn't be a problem because it has this kind of term stated that you can use the logo to advertise that your product has built-in integration and also permission to use it in blogs post or news article that related about it. (I have used it many times in my tutorials) [EDIT]: I have replaced the Byteball dag pics, sorry 🙇if it disturbs you 🙇🙇🙇:dogeza:
author | drsensor |
---|---|
permlink | re-genievot-re-drsensor-byteball-use-a-thon-a-way-to-contract-reward-contributor-efficiently-high-level-detail-and-the-direction-1536974947293-20180916t112250525z |
category | byteball |
json_metadata | {"community":"busy","app":"steemit/0.1","format":"markdown","tags":["byteball"],"users":["genievot"]} |
created | 2018-09-16 11:22:51 |
last_update | 2018-09-16 12:57:57 |
depth | 2 |
children | 1 |
last_payout | 2018-09-23 11:22:51 |
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 | 480 |
author_reputation | 17,679,210,755,117 |
root_title | "Byteball Use-a-Thon: A way to contract/reward Contributor efficiently - High level detail and the direction" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,439,636 |
net_rshares | 1,759,531,677 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
genievot | 0 | 1,759,531,677 | 100% |
I made those line breaks 🙂
author | genievot |
---|---|
permlink | re-drsensor-re-genievot-re-drsensor-byteball-use-a-thon-a-way-to-contract-reward-contributor-efficiently-high-level-detail-and-the-direction-1536974947293-20180916t162126720z |
category | byteball |
json_metadata | {"tags":["byteball"],"app":"steemit/0.1"} |
created | 2018-09-17 03:45:24 |
last_update | 2018-09-17 03:45:39 |
depth | 3 |
children | 0 |
last_payout | 2018-09-24 03:45:24 |
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 | 26 |
author_reputation | 5,993,018,919,157 |
root_title | "Byteball Use-a-Thon: A way to contract/reward Contributor efficiently - High level detail and the direction" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,502,171 |
net_rshares | 5,572,956,542 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drsensor | 0 | 5,572,956,542 | 100% |
#### Hi @drsensor! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your **UA** account score is currently 1.498 which ranks you at **#35960** across all Steem accounts. Your rank has dropped 162 places in the last three days (old rank 35798). In our last Algorithmic Curation Round, consisting of 429 contributions, your post is ranked at **#394**. ##### Evaluation of your UA score: * Only a few people are following you, try to convince more people with good work. * The readers like your work! * Try to work on user engagement: the more people that interact with you via the comments, the higher your UA score! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-byteball-use-a-thon-a-way-to-contract-reward-contributor-efficiently-high-level-detail-and-the-direction-1536974947293-20180916t081401z |
category | byteball |
json_metadata | "{"app": "beem/0.19.54"}" |
created | 2018-09-16 08:14:03 |
last_update | 2018-09-16 08:14:03 |
depth | 1 |
children | 0 |
last_payout | 2018-09-23 08:14:03 |
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 | 754 |
author_reputation | 23,214,230,978,060 |
root_title | "Byteball Use-a-Thon: A way to contract/reward Contributor efficiently - High level detail and the direction" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,428,864 |
net_rshares | 0 |