> [dcom](https://github.com/emre/dcom) (**d**iscord **com**munity bot) is a (python3.6+) bot for communities to trigger upvotes from specified discord channels/servers. - [announcement post](https://steemit.com/utopian-io/@emrebeyler/dcom-a-curation-bot-on-discord-for-steem-communities) <center><img src="https://cdn.steemitimages.com/DQmYT3svFg4mQczC83uTQ7QMvLVLZMT63kfRBV3utZnGgLJ/Screen%20Shot%202018-12-17%20at%209.50.29%20AM.png"></center> dcom's registration module was a success. It has been working the last 2-3 days and working well. The remaining planned features were also completed today. # Automatic Curation After having registration and manual curation capabilities, the next step was building an automatic curation process. - **Step 1**: Discord user gains access to a designated role. (Let's call it patron.) in the discord server. - **Step 2**: Discord user registers his STEEM account to their discord handle by using the ```$register``` command and verifies ownership. - **Step 4**: dcom checks the voting power of the main curation account in the background, periodically. - **Step 5**: If the voting power is greater than %99, it will fetch a list of votable patron posts in the STEEM blockchain and upvote them with a %20 voting weight. (Voting weight and voting power should be configurable in the .env file.) There are a couple of limitations are already in place. Ex: A patron can only get one upvote in 24 hours. <center><img src="https://cdn.steemitimages.com/DQmWFRAjkYLNpQEDoxKwp4mNj8oKmJyYtZLTiSdn3p4m1iF/Screen%20Shot%202018-12-19%20at%2012.00.09%20PM.png"></center> <sup>Bot listens the user change events and marks or remove user's patron role in it's internal database.</sup> # Listening the "role" change events In order to implement Step1, dcom needs to track [member_update](https://discordpy.readthedocs.io/en/latest/api.html#discord.on_member_update) events in the discord server. By attaching your custom function to that event, you get two parameters. The first one is the old instance of the user, the second one is the fresh instance of the user. That way I could check the roles in both old and fresh instances and checked if there was a change in their "patron" roles. <center><img src="https://cdn.steemitimages.com/DQmP2ppLC21Wur8CFW1JcD1PqN4FKfFxKEibJ7SVyzSAgmh/Screen%20Shot%202018-12-19%20at%2012.03.07%20PM.png"></center> <center><sup>The snippet to check role change events</sup></center> # Curating in the background After completing the step1 by listening role changes, the rest of the logic was easy to implement. A new background task called [auto_curation](https://github.com/emre/dcom/blob/master/dcom/client.py#L308) is attached to the main ```asyncio``` loop. This function checks - if the VP is enough - if there are registered and available patrons available for curating - if there are suitable posts with the available patrons and curates automatically. One minor problem in this part is that the blocking calls to the STEEM blockchain. Steem doesn't have any asynchronous library to interact with the chain, so there are some parts blocking the i/o. I don't think that's a huge problem on a small scale like this, but if that results with a lag in the bot, I am thinking about separating the background voter from the main bot. ## Pull request on automatic curation - [Implement auto-curation](https://github.com/emre/dcom/pull/4) # Implementing global blacklist API @themarkymark has been maintaining a [global blacklist API](https://steemit.com/utopian-io/@themarkymark/global-blacklist-api-now-supports-actifit-s-blacklist) for a while. For the ```$upvote``` command of the bot, there is a check placed if the author is blacklisted in any community, then the upvote operation won't happen. <center><img src="https://cdn.steemitimages.com/DQmf5khPanhXTmhHSny5yMubWtweqBpUr4EmdgXjBMGmqPH/blacklist.png"></center> The same "blocking i/o" problem was also the case for here, too. Using the good, old ```requests``` library in here creates the same problem. So, I have used ```aiohttp``` library to make sure the main ```asyncio``` loop is not blocked. <center><img src="https://cdn.steemitimages.com/DQmPC8W9gYVSEt8evwReYFvW3zUyt61A8toaPDQLidX7NCv/Screen%20Shot%202018-12-19%20at%2012.18.39%20PM.png"></center> ## Pull Request on blacklist feature - [Implement global blacklist api](https://github.com/emre/dcom/pull/6) # Updating the bot ``` $ pip install dcom --upgrade ``` # New configuration parameters A .dcom_env file at your user path should store the below fields: | Key | Value | |-----------------------|-----------------------------------------------------------| | BOT_ACCOUNT | The account used for the curation | | BOT\_POSTING\_KEY | Private posting key of the curation account | | STEEM_NODES | A list of STEEM nodes (comma separated) | | DISCORD\_BOT\_TOKEN | \<Token of the discord bot\> | | CHANNEL_WHITELIST | Curation channel id list (comma separated) | | LATE\_CURATION\_WINDOW | Maximum age for a post (in seconds) | | EARLY\_CURATION\_WINDOW | Minimum age for a post (in seconds) | | CURATOR_GROUPS | Discord roles authorized to use the bot (comma separated) | | REGISTRATION_CHANNEL | Registration channel (ID) | | REGISTRATION_ACCOUNT | Registration account (steem username) | | REGISTRATION\_ACCOUNT\_ACTIVE_KEY | Registration account's active key | | ROLE\_FOR\_REGISTERED_USERS| Role name for registered users | | MONGO_URI | Mongodb connection URI | | COMMUNITY_NAME | Community name | | **PATRON_ROLE** | Designated discord role | | **BOT\_LOG\_CHANNEL**. | Channel id for the bot logs on auto-curation. | | **ACCOUNT\_FOR\_VP\_CHECK** | Which account's VP should be checked for auto-curation | | **LIMIT\_ON\_MAXIMUM\_VP** | When should auto-curation triggered | | **AUTO\_CURATION\_VOTE_WEIGHT** | The default voting weight. | *(New parameters with this version is marked as bold.)* # Running ```bash $ dcom ``` *** That's all for this update. I think ```dcom``` is in a good state for feature-wise at the moment. All planned requirements are implemented.
author | emrebeyler | ||||||
---|---|---|---|---|---|---|---|
permlink | dcom-discord-community-bot-updates-automatic-curation-global-blacklist-support | ||||||
category | utopian-io | ||||||
json_metadata | {"community":"steempeak","app":"steempeak","format":"markdown","tags":["utopian-io","development","dcom","python","discord"],"users":["emrebeyler","themarkymark"],"links":["https://github.com/emre/dcom","https://steemit.com/utopian-io/@emrebeyler/dcom-a-curation-bot-on-discord-for-steem-communities","https://discordpy.readthedocs.io/en/latest/api.html#discord.on_member_update","https://github.com/emre/dcom/blob/master/dcom/client.py#L308","https://github.com/emre/dcom/pull/4","/@themarkymark","https://steemit.com/utopian-io/@themarkymark/global-blacklist-api-now-supports-actifit-s-blacklist","https://github.com/emre/dcom/pull/6"],"image":["https://cdn.steemitimages.com/DQmYT3svFg4mQczC83uTQ7QMvLVLZMT63kfRBV3utZnGgLJ/Screen%20Shot%202018-12-17%20at%209.50.29%20AM.png","https://cdn.steemitimages.com/DQmWFRAjkYLNpQEDoxKwp4mNj8oKmJyYtZLTiSdn3p4m1iF/Screen%20Shot%202018-12-19%20at%2012.00.09%20PM.png","https://cdn.steemitimages.com/DQmP2ppLC21Wur8CFW1JcD1PqN4FKfFxKEibJ7SVyzSAgmh/Screen%20Shot%202018-12-19%20at%2012.03.07%20PM.png","https://cdn.steemitimages.com/DQmf5khPanhXTmhHSny5yMubWtweqBpUr4EmdgXjBMGmqPH/blacklist.png","https://cdn.steemitimages.com/DQmPC8W9gYVSEt8evwReYFvW3zUyt61A8toaPDQLidX7NCv/Screen%20Shot%202018-12-19%20at%2012.18.39%20PM.png"]} | ||||||
created | 2018-12-19 16:56:09 | ||||||
last_update | 2018-12-19 16:56:09 | ||||||
depth | 0 | ||||||
children | 9 | ||||||
last_payout | 2018-12-26 16:56:09 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 49.894 HBD | ||||||
curator_payout_value | 16.179 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 6,636 | ||||||
author_reputation | 448,535,049,068,622 | ||||||
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 77,077,550 | ||||||
net_rshares | 123,352,511,353,297 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 126,958,095 | 0.02% | ||
tombstone | 0 | 177,804,286,996 | 0.8% | ||
nextgencrypto | 0 | 0 | 0.02% | ||
kevinwong | 0 | 160,847,917,803 | 2% | ||
eric-boucher | 0 | 165,885,819,036 | 50% | ||
mammasitta | 0 | 241,325,096 | 0.05% | ||
mrwang | 0 | 100,565,058 | 1% | ||
arconite | 0 | 555,182,666 | 1% | ||
shaka | 0 | 1,445,593,160,042 | 30% | ||
elamental | 0 | 317,108,774 | 1% | ||
alaqrab | 0 | 47,579,788,765 | 50% | ||
thecyclist | 0 | 1,413,139 | 0.02% | ||
sambillingham | 0 | 50,179,827,209 | 100% | ||
vannour | 0 | 5,014,211,996 | 7.5% | ||
steemcultures | 0 | 162,155,065 | 7.5% | ||
steemworld | 0 | 539,197,088 | 7.5% | ||
decebal2dac | 0 | 8,518,639,099 | 100% | ||
hansikhouse | 0 | 24,741,424,777 | 50% | ||
voronoi | 0 | 62,886,904,928 | 100% | ||
engagement | 0 | 0 | 0.02% | ||
em3di | 0 | 7,874,449,616 | 50% | ||
iflagtrash | 0 | 0 | 0.02% | ||
randomthoughts | 0 | 0 | 0.02% | ||
steven-patrick | 0 | 2,005,858,228 | 10% | ||
erb | 0 | 34,402,660,110 | 100% | ||
toninux | 0 | 222,570,405 | 24.5% | ||
malay11 | 0 | 633,660,960 | 24.5% | ||
cryptastic | 0 | 2,775,081,522 | 10% | ||
luvabi | 0 | 14,902,082,599 | 50% | ||
jga | 0 | 5,147,678,520 | 36.94% | ||
helo | 0 | 82,536,413,065 | 100% | ||
khairulmuammar | 0 | 10,218,389,124 | 50% | ||
asbear | 0 | 285,072,478,690 | 50% | ||
ruel.cedeno | 0 | 4,431,191,804 | 100% | ||
anouk.nox | 0 | 12,660,505,618 | 50% | ||
lastozgur | 0 | 4,955,358,172 | 100% | ||
jonmagnusson | 0 | 9,439,081,615 | 25% | ||
jayna | 0 | 6,102,947,928 | 15% | ||
carrotcake | 0 | 3,853,262,819 | 20% | ||
klynic | 0 | 573,127,699 | 20% | ||
thedelegator | 0 | 0 | 0.02% | ||
firatozbek | 0 | 4,501,104,390 | 100% | ||
coloringiship | 0 | 7,810,898,629 | 25% | ||
sndbox | 0 | 10,658,530,389,934 | 100% | ||
jacekw | 0 | 15,090,044,156 | 50% | ||
codingdefined | 0 | 15,877,521,718 | 15% | ||
themarkymark | 0 | 1,423,814,427,189 | 100% | ||
haji | 0 | 114,296,136 | 0.5% | ||
somethingburger | 0 | 9,201,768,224 | 100% | ||
tanyaschutte | 0 | 806,013,787 | 15% | ||
bleyker | 0 | 376,068,472 | 100% | ||
darmawan | 0 | 131,107,434 | 30% | ||
djlethalskillz | 0 | 5,154,230,880 | 10% | ||
bhim | 0 | 72,368,142 | 50% | ||
dayoung | 0 | 26,442,873,419 | 50% | ||
dakeshi | 0 | 1,118,324,702 | 50% | ||
aidarojaswriter | 0 | 1,257,397,635 | 20% | ||
artoraly | 0 | 143,627,467 | 50% | ||
nurhayati | 0 | 354,214,131 | 1% | ||
crokkon | 0 | 47,002,376,000 | 50% | ||
anna-mi | 0 | 643,907,994 | 50% | ||
smafey | 0 | 369,219,988 | 24.5% | ||
krguidedog | 0 | 6,313,121,835 | 50% | ||
playitforward | 0 | 38,927,197,353 | 30% | ||
filipino | 0 | 618,780,749 | 10% | ||
mcfarhat | 0 | 42,667,529,821 | 28.83% | ||
msp-foundation | 0 | 11,665,173,739 | 80% | ||
mrblinddraw | 0 | 21,736,149,860 | 40% | ||
animagic | 0 | 14,779,280,085 | 100% | ||
jacobkaled | 0 | 85,968,530 | 24.5% | ||
imamalkimas | 0 | 522,140,149 | 50% | ||
isnochys | 0 | 7,388,033,821 | 13% | ||
emdesan | 0 | 134,904,999 | 10% | ||
pierlave | 0 | 1,498,896,874 | 100% | ||
loshcat | 0 | 3,086,163,502 | 100% | ||
rightscomet | 0 | 100,592,705 | 24.5% | ||
ngc | 0 | 2,531,890,200 | 0.02% | ||
murattatar | 0 | 5,915,575,897 | 20% | ||
imaginedragon | 0 | 1,487,197,888 | 25% | ||
nudgent | 0 | 97,087,859 | 24.5% | ||
utopian-io | 0 | 101,708,579,720,224 | 73.88% | ||
afrin12 | 0 | 161,537,473 | 50% | ||
unforgettable | 0 | 3,164,165,373 | 100% | ||
jaff8 | 0 | 106,785,985,916 | 72.08% | ||
elchin | 0 | 693,751,013 | 100% | ||
emrebeyler | 0 | 1,131,206,775,087 | 100% | ||
scuzzy | 0 | 431,267,011 | 5% | ||
habercitr | 0 | 173,194,051 | 5% | ||
mrmaracucho | 0 | 226,577,479 | 49% | ||
craigahamilton | 0 | 75,190,206 | 4.9% | ||
berkaytekinsen | 0 | 1,765,210,480 | 100% | ||
newsrx | 0 | 1,382,677,638 | 100% | ||
whiterabb1t | 0 | 178,345,592 | 2.75% | ||
jeffbernst | 0 | 1,466,083,673 | 50% | ||
evilest-fiend | 0 | 1,568,288,940 | 50% | ||
tentalavera | 0 | 127,762,874 | 5% | ||
scipio | 0 | 239,557,845,989 | 100% | ||
forkonti | 0 | 541,328,653 | 100% | ||
curazao | 0 | 199,575,079 | 100% | ||
sireh | 0 | 5,747,817,112 | 25% | ||
hellowhale | 0 | 153,971,431 | 100% | ||
gokos | 0 | 390,834,028 | 100% | ||
pyaesoneaung1774 | 0 | 156,150,330 | 50% | ||
obvious | 0 | 20,991,687,914 | 18% | ||
enjoyy | 0 | 267,285,367 | 24.5% | ||
berkerpeksag | 0 | 1,575,366,877 | 100% | ||
aydant | 0 | 10,789,257,005 | 100% | ||
intelligencer | 0 | 0 | 100% | ||
williams-owb | 0 | 512,903,381 | 50% | ||
aidnessanchez | 0 | 651,915,433 | 50% | ||
turkolog | 0 | 378,872,398 | 100% | ||
ataturk | 0 | 555,232,921 | 100% | ||
sagor5828 | 0 | 447,162,557 | 50% | ||
flashfiction | 0 | 3,309,050,793 | 100% | ||
tinowhale | 0 | 2,748,973,665 | 49% | ||
ewq | 0 | 208,466,234 | 6% | ||
hayirhah | 0 | 625,070,357 | 27.5% | ||
camillius | 0 | 401,832,349 | 50% | ||
ognustn | 0 | 600,372,523 | 100% | ||
lukecreed | 0 | 265,399,657 | 24.5% | ||
amosbastian | 0 | 167,978,532,338 | 72.08% | ||
tdre | 0 | 18,526,434,745 | 100% | ||
fromhell2sky | 0 | 8,101,195,468 | 24.5% | ||
smanuels | 0 | 134,447,059 | 15% | ||
imnotasenuelo | 0 | 252,743,919 | 50% | ||
sauronbey | 0 | 4,010,642,920 | 100% | ||
ohmylove | 0 | 375,172,467 | 100% | ||
onursa | 0 | 379,338,274 | 100% | ||
jjay | 0 | 419,719,872 | 100% | ||
coinmeria | 0 | 676,960,313 | 35% | ||
ucmuharfli | 0 | 297,009,487 | 10% | ||
googletr | 0 | 0 | 100% | ||
gky | 0 | 251,825,659 | 50% | ||
embesilikat | 0 | 376,131,974 | 13.75% | ||
adamzi | 0 | 3,630,836,343 | 50% | ||
deejee | 0 | 253,356,864 | 50% | ||
canburaksimsek | 0 | 203,578,660 | 25% | ||
gulumserunver | 0 | 88,636,781 | 22% | ||
neokuduk | 0 | 3,034,318,833 | 100% | ||
muradovv | 0 | 592,133,222 | 5% | ||
tobias-g | 0 | 60,723,958,502 | 30% | ||
michealkey | 0 | 160,108,832 | 50% | ||
grizzle | 0 | 211,549,155 | 1% | ||
literaturk | 0 | 452,580,047 | 100% | ||
freddysanchez | 0 | 52,888,914,602 | 50% | ||
debruyne844 | 0 | 253,168,457 | 50% | ||
beanenergy | 0 | 168,805,477 | 50% | ||
uzerebru | 0 | 114,147,254 | 41% | ||
uzercanan | 0 | 284,242,378 | 45% | ||
warpedpoetic | 0 | 3,654,227,930 | 15% | ||
ahmetmertugrul | 0 | 812,097,894 | 100% | ||
samedb | 0 | 438,005,364 | 100% | ||
giftbox | 0 | 193,200,488 | 100% | ||
evansbankx | 0 | 316,142,144 | 100% | ||
tonkatonka | 0 | 94,136,465 | 18% | ||
ameliabartlett | 0 | 2,569,169,946 | 15% | ||
ny4.one | 0 | 530,622,901 | 100% | ||
gentmartin | 0 | 359,881,934 | 10% | ||
sjomeath | 0 | 183,376,216 | 5.5% | ||
tailslide | 0 | 201,739,077 | 50% | ||
agememnon | 0 | 1,122,916,248 | 49.5% | ||
tipitip | 0 | 648,227,956 | 100% | ||
aimei | 0 | 252,826,531 | 50% | ||
antigenx | 0 | 445,928,484 | 40% | ||
ahmeterbay | 0 | 10,348,831,817 | 100% | ||
raoul.poenar | 0 | 3,192,585,458 | 100% | ||
alfiannurmedia | 0 | 175,682,047 | 50% | ||
sexygirl123 | 0 | 100,918,467 | 50% | ||
akifane | 0 | 567,259,032 | 100% | ||
rasit | 0 | 452,653,640 | 100% | ||
viajeradelrio | 0 | 167,524,915 | 50% | ||
eightbitfiction | 0 | 236,424,855 | 50% | ||
mbadayee | 0 | 357,729,169 | 50% | ||
rainbowlord | 0 | 215,845,907 | 44% | ||
gjones15 | 0 | 53,265,069 | 24.5% | ||
backinblackdevil | 0 | 84,185,107,694 | 15% | ||
ruh | 0 | 711,304,676 | 100% | ||
reazuliqbal | 0 | 24,723,591,753 | 20% | ||
maveraunnehr | 0 | 402,621,692 | 100% | ||
newenx | 0 | 2,058,521,633 | 20% | ||
soydandan | 0 | 131,740,269 | 30% | ||
bulent1976 | 0 | 1,189,097,227 | 100% | ||
anam01 | 0 | 90,824,208 | 50% | ||
tolgahanuzun | 0 | 14,055,410,110 | 100% | ||
tineschreibt | 0 | 212,885,169 | 9% | ||
elvigia | 0 | 9,906,116,834 | 100% | ||
muratkbesiroglu | 0 | 290,055,213,354 | 100% | ||
dedesuryani | 0 | 119,594,217 | 50% | ||
ahmetchef | 0 | 372,041,728 | 27.5% | ||
anak123 | 0 | 570,234,958 | 50% | ||
kemalyokus | 0 | 204,744,511 | 27.5% | ||
carlitojoshua | 0 | 642,347,181 | 50% | ||
sereze | 0 | 9,417,952,042 | 100% | ||
zcool | 0 | 187,301,421 | 10% | ||
bit6in | 0 | 226,374,850 | 50% | ||
murhadi9 | 0 | 345,379,623 | 50% | ||
emotionalsea | 0 | 142,045,876 | 3% | ||
varolleng | 0 | 246,027,408 | 55% | ||
everydaybitcoin | 0 | 110,791,213 | 50% | ||
carment | 0 | 96,947,523 | 24.5% | ||
daszod | 0 | 195,937,779 | 49% | ||
firster78 | 0 | 182,554,749 | 38.49% | ||
victorcovrig | 0 | 887,092,972 | 50% | ||
ayoade96 | 0 | 71,336,069 | 50% | ||
greatwarrior79 | 0 | 88,689,435 | 50% | ||
canku | 0 | 81,456,028 | 55% | ||
steem-factuals | 0 | 167,182,871 | 50% | ||
tugbaerdem | 0 | 70,839,049 | 20% | ||
qurator-tier-0 | 0 | 3,320,963,246 | 7.5% | ||
alexmalone | 0 | 71,354,504 | 20% | ||
hendragunawan | 0 | 163,912,869 | 50% | ||
blockmountain | 0 | 448,334,210 | 50% | ||
feronio | 0 | 301,245,834 | 100% | ||
riandifc | 0 | 234,709,714 | 50% | ||
hyroniz | 0 | 87,718,484 | 25% | ||
sahiba | 0 | 158,441,348 | 50% | ||
wr212 | 0 | 232,786,595 | 50% | ||
we-are | 0 | 53,674,794,509 | 10.9% | ||
we-are-one | 0 | 7,162,402,984 | 85% | ||
jumbot | 0 | 125,798,839,240 | 55% | ||
zakaria14 | 0 | 162,083,391 | 50% | ||
steeman220 | 0 | 78,550,625 | 24.5% | ||
recordpool | 0 | 289,429,231 | 10% | ||
prosperousrex | 0 | 83,571,928 | 30% | ||
sigmund | 0 | 473,533,059 | 50% | ||
alifridhzuan99 | 0 | 378,742,221 | 100% | ||
javicuesta | 0 | 1,275,349,920 | 50% | ||
tyramisoux | 0 | 5,481,388,679 | 25% | ||
ryuna.siege | 0 | 208,704,668 | 100% | ||
we-are-asia | 0 | 4,001,193,297 | 100% | ||
we-are-aceh | 0 | 3,280,284,407 | 80% | ||
smacommunity | 0 | 4,666,491,117 | 50% | ||
kryptorero | 0 | 98,812,652 | 24.5% | ||
musicvoter | 0 | 3,552,939,400 | 1% | ||
bahagia9 | 0 | 94,508,951 | 24.5% | ||
alisari | 0 | 106,632,529 | 27.5% | ||
gydronium | 0 | 125,091,516 | 29.4% | ||
abbasi1986 | 0 | 187,556,232 | 50% | ||
kataindah | 0 | 161,954,892 | 50% | ||
pinkwonder | 0 | 6,144,201,669 | 100% | ||
senseofhumor | 0 | 554,195,243 | 100% | ||
aksapphires | 0 | 94,194,643 | 24.5% | ||
bilimkurgu | 0 | 140,385,426,993 | 100% | ||
hahajin | 0 | 0 | 100% | ||
digitaldreamer | 0 | 342,053,781 | 100% | ||
omerbayrak | 0 | 168,792,836 | 5.5% | ||
sarez | 0 | 4,246,635,059 | 50% | ||
parakazan | 0 | 215,511,258 | 100% | ||
steemit-uruguay | 0 | 387,524,313 | 100% | ||
woodsj | 0 | 0 | 100% | ||
raul567 | 0 | 755,555,302 | 100% | ||
evegrace | 0 | 619,190,882 | 25% | ||
sbd-fairy | 0 | 238,398,762 | 49% | ||
msjito | 0 | 534,217,207 | 100% | ||
firatuz | 0 | 3,014,499,466 | 100% | ||
mozer | 0 | 194,053,671 | 5.5% | ||
pablorg94 | 0 | 519,333,044 | 100% | ||
princezico | 0 | 179,080,436 | 50% | ||
signup-newpeople | 0 | 163,798,081 | 50% | ||
sulwati | 0 | 96,360,227 | 24.5% | ||
swaze | 0 | 550,373,406 | 100% | ||
astrophoto.kevin | 0 | 10,647,148,649 | 10% | ||
cafelate | 0 | 400,297,328 | 10% | ||
sirwayneweezy | 0 | 243,421,333 | 50% | ||
basav | 0 | 95,815,817 | 24.5% | ||
lillywilton | 0 | 646,262,620 | 20% | ||
andi9999 | 0 | 162,138,931 | 50% | ||
sutter | 0 | 411,258,305 | 24.5% | ||
boyacun | 0 | 451,639,174 | 50% | ||
sbi7 | 0 | 107,022,017,927 | 51.71% | ||
bboyabluka | 0 | 116,901,284 | 27.5% | ||
penyuteverest | 0 | 252,097,622 | 50% | ||
rakan-sikula | 0 | 188,203,451 | 50% | ||
ceruleanblue | 0 | 238,505,524 | 100% | ||
twotoedsloth | 0 | 34,166,019,280 | 50% | ||
mariusaftaragaci | 0 | 166,494,303 | 50% | ||
jacekw.dev | 0 | 2,706,154,423 | 40% | ||
beemtutorials | 0 | 366,198,937 | 100% | ||
raghao | 0 | 2,450,956,596 | 50% | ||
ali.yuce | 0 | 276,332,130 | 100% | ||
maozedongthought | 0 | 18,237,402 | 100% | ||
tissot | 0 | 583,030,442 | 100% | ||
princezakir | 0 | 161,037,189 | 50% | ||
shahidullah832 | 0 | 94,169,589 | 50% | ||
aljofer | 0 | 252,900,448 | 50% | ||
steem-ua | 0 | 1,535,407,211,637 | 12.39% | ||
forhadh | 0 | 418,928,605 | 50% | ||
alvinvoo | 0 | 967,127,908 | 100% | ||
kaczynski | 0 | 61,510,328 | 100% | ||
bluedwains | 0 | 447,705,938 | 27.5% | ||
daddywilliam | 0 | 1,248,936,284 | 24.5% | ||
nerdrepost | 0 | 1,016,901,713 | 75% | ||
erensonmez | 0 | 2,764,115,814 | 100% | ||
ozgurcinarli | 0 | 292,487,388 | 24.5% | ||
foodfigther | 0 | 374,437,522 | 30% | ||
toheliuk | 0 | 467,989,768 | 50% | ||
adamantino | 0 | 905,217,075 | 25% | ||
bluesniper | 0 | 14,810,953,606 | 1% | ||
steemtank | 0 | 2,174,836,155,942 | 100% | ||
kelicimchi | 0 | 382,645,952 | 50% | ||
n1hal1 | 0 | 100,453,757 | 25% | ||
steemmovies | 0 | 0 | 100% | ||
steemcapital | 0 | 51,881,866 | 100% | ||
freecontent | 0 | 237,445,308 | 100% | ||
frankdanger | 0 | 551,551,792 | 100% | ||
sujets | 0 | 1,557,837,748 | 100% | ||
bitcoinsv | 0 | 9,446,649 | 100% | ||
bejust | 0 | 124,244,214 | 100% | ||
paxos | 0 | 53,119,457 | 100% | ||
brainbot | 0 | 146,502,541 | 100% | ||
writeandearn | 0 | 589,779,807 | 50% | ||
mgranja | 0 | 14,750,299,627 | 48% | ||
curation.trail | 0 | 1,039,036,336 | 2.12% |
<div class='pull-right'>https://cdn.steemitimages.com/DQmaHThyECGhEx8tSfHZbiMFRNYjJ35K92cDgiJjkzBUaJo/One%20sip%20of%20BEER%20for%20you.gif<p><sup><a href='https://steem-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br><br> <p> Hey @emrebeyler, here is a little bit of <code>BEER</code> from @isnochys for you. Enjoy it!</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-dcom-discord-community-bot-updates-automatic-curation-global-blacklist-support-20191219t060854z |
category | utopian-io |
json_metadata | "{"app": "beem/0.21.1"}" |
created | 2019-12-19 06:08:57 |
last_update | 2019-12-19 06:08:57 |
depth | 1 |
children | 0 |
last_payout | 2019-12-26 06:08:57 |
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 | 390 |
author_reputation | 25,764,988,873,156 |
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 93,543,687 |
net_rshares | 0 |
I've given you an upvote and left you this amazing automated comment (since spamming the blockchain is now acceptable)!!<br><br><br>Vote for witness [nextgencrypto](https://steemconnect.com/sign/account-witness-vote?witness=nextgencrypto&approve=1)!!
author | berniesanders |
---|---|
permlink | berniesanders-re-emrebeylerdcom-discord-community-bot-updates-automatic-curation-global-blacklist-support |
category | utopian-io |
json_metadata | "" |
created | 2018-12-19 17:33:06 |
last_update | 2018-12-19 17:33:06 |
depth | 1 |
children | 1 |
last_payout | 2018-12-26 17:33:06 |
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 | 250 |
author_reputation | 600,251,775,828,524 |
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,079,373 |
net_rshares | -1,868,739,561 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
z8teyb289qav9z | 0 | 8,356,665,501 | 0.1% | ||
fulltimebot52 | 0 | -10,225,405,062 | -8.34% |
π
author | emrebeyler |
---|---|
permlink | re-berniesanders-berniesanders-re-emrebeylerdcom-discord-community-bot-updates-automatic-curation-global-blacklist-support-20181219t174013271z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-12-19 17:40:12 |
last_update | 2018-12-19 17:40:12 |
depth | 2 |
children | 0 |
last_payout | 2018-12-26 17:40:12 |
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 |
author_reputation | 448,535,049,068,622 |
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,079,683 |
net_rshares | 0 |
- Great looking article with code samples. - Good job on mentioning your challenges, others can learn and even answers may be offered. - I really appreciate the upgrade instructions as it is often overlooked in other projects. 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/1-2-2-1-1-2-1-). ---- 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 | helo |
---|---|
permlink | re-emrebeyler-dcom-discord-community-bot-updates-automatic-curation-global-blacklist-support-20181219t203518963z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1-2-2-1-1-2-1-","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-12-19 20:35:18 |
last_update | 2018-12-19 20:35:18 |
depth | 1 |
children | 1 |
last_payout | 2018-12-26 20:35:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.108 HBD |
curator_payout_value | 2.923 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 725 |
author_reputation | 121,547,934,535,311 |
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,087,501 |
net_rshares | 21,451,202,969,564 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 31,674,834,593 | 100% | ||
codingdefined | 0 | 16,178,685,983 | 15% | ||
utopian-io | 0 | 21,315,958,775,885 | 15.15% | ||
emrebeyler | 0 | 10,971,431,528 | 1% | ||
cheneats | 0 | 1,699,490,139 | 6% | ||
aydant | 0 | 5,220,651,896 | 50% | ||
amosbastian | 0 | 52,814,334,744 | 23.05% | ||
nenya | 0 | 490,964,187 | 100% | ||
reazuliqbal | 0 | 6,207,513,309 | 5% | ||
chillibeans | 0 | 22,921,588 | 2% | ||
nijn | 0 | 1,747,824,423 | 100% | ||
quenty | 0 | 8,089,129,086 | 100% | ||
nimloth | 0 | 126,412,203 | 100% |
Thank you for your review, @helo! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-emrebeyler-dcom-discord-community-bot-updates-automatic-curation-global-blacklist-support-20181219t203518963z-20181222t070659z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-22 07:07:00 |
last_update | 2018-12-22 07:07:00 |
depth | 2 |
children | 0 |
last_payout | 2018-12-29 07:07: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 | 56 |
author_reputation | 152,955,367,999,756 |
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,209,802 |
net_rshares | 0 |
Haver another happy year, !BEER
author | isnochys |
---|---|
permlink | re-dcom-discord-community-bot-updates-automatic-curation-global-blacklist-support-20191219t060834z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.23"}" |
created | 2019-12-19 06:08:39 |
last_update | 2019-12-19 06:08:39 |
depth | 1 |
children | 0 |
last_payout | 2019-12-26 06: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 | 31 |
author_reputation | 48,455,428,888,504 |
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 93,543,685 |
net_rshares | 0 |
This is very exciting @emrebeyler! Thank you for working with us on developing a community bot with such amazing super powers. We'll *go-live* with an updated Discord channel structure in the first week of January and also craft a @sndbox post to highlight the community benefits of this. In terms of scaling this (growing the chatroom) we'll keep an eye out for hiccups / if it will eventually require two separate bots to handle role curation + other tasks. Thank you again for your generous time, support, and expertise! πͺ
author | sndbox |
---|---|
permlink | re-emrebeyler-dcom-discord-community-bot-updates-automatic-curation-global-blacklist-support-20181220t024132974z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["emrebeyler","sndbox"],"app":"steemit/0.1"} |
created | 2018-12-20 02:41:33 |
last_update | 2018-12-20 02:41:33 |
depth | 1 |
children | 0 |
last_payout | 2018-12-27 02:41: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 | 528 |
author_reputation | 633,122,316,798,067 |
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,100,337 |
net_rshares | 0 |
#### Hi @emrebeyler! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-dcom-discord-community-bot-updates-automatic-curation-global-blacklist-support-20181219t204029z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2018-12-19 20:40:30 |
last_update | 2018-12-19 20:40:30 |
depth | 1 |
children | 0 |
last_payout | 2018-12-26 20:40:30 |
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 | 289 |
author_reputation | 23,214,230,978,060 |
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,087,678 |
net_rshares | 0 |
Hey, @emrebeyler! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-dcom-discord-community-bot-updates-automatic-curation-global-blacklist-support-20181221t104759z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-12-21 10:48:00 |
last_update | 2018-12-21 10:48:00 |
depth | 1 |
children | 0 |
last_payout | 2018-12-28 10:48: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 | 592 |
author_reputation | 152,955,367,999,756 |
root_title | "dcom [discord community bot] updates: Automatic curation, global blacklist support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,168,529 |
net_rshares | 0 |