Hello Steemians! This post relates to our witness and the tests we have carried out in preparation for hardfork 21 (HF21). As most of you hopefully know, @steempress operates a witness and is currently rank #24 on the [witness list](https://steemitwallet.com/~witnesses). With that comes the responsibility to participate in testing and contributing to updating the blockchain such as a hardfork. If you follow this account primarily for updates on our plugin and are not interested in a highly technical update, this post may not be for you. However, if you are interested in the contents of the next hardfork, in the technical details for it, or overall want to see what else we do as a witness, then please read on.  _HF21 was [released and tagged last week](https://steemit.com/hf21/@steemitblog/hf21-release-tagged), meaning it's now or never to test everything. You can find the whole release notes here: https://github.com/steemit/steem/releases/tag/v0.21.0._ HF21 is scheduled for Tue, 27 August 2019 15:00:00 UTC (a date that may be subject to change depending on the number of found bugs or issues in the proposal). As it is crucial to test things thoroughly in advance before such a release, we figured that we would show some of our own findings and share with you the work that we have done testing HF21so far. There are four new operations, the first three are linked to the new proposal system that we encourage anyone to check out [here](https://steemit.com/steem/@steemitblog/hf21-sps-and-eip-explained) who haven't already. - create_proposal - update_proposal_votes - remove_proposal - account_update2 In order to test those, we went the stem-js route because it means we can test the whole pipeline from lib to rpc api. Since that's also how most developers will interact with the chain, it makes sense to test the libraries as well as the chain. # Account_update2 This is pretty much a mirror of the account_update operation, with the only difference being that it doesn't need the active_key. This is a great change because it means that apps can now offer trivial yet useful options such as changing a user's profile picture inside the app without needing their Active key. Account_update2 has the same parameters as account_update, but we weren't sure what the rpc operation name is since there isn't another operation that ends with a number. `account_update2` is the function name that was widely used everywhere in the c++ code, but it could be account_update_2 depending on how they interpret `snake_case`. So we went with `account_update2` which seemed like the right choice. Basically, since the parameters are the same, one should be able to take a working test case from `account_update` and just update it slightly to take a posting key instead : const wif = steem.auth.toWif(username, password, 'active'); let ops = []; let account = await steem.api.callAsync('condenser_api.get_accounts', [[username]]); account = account[0]; ops.push([ 'account_update', { 'account': username, memo_key : account.memo_key, posting_key : account.posting.key_auths[0][0], active_key : account.active.key_auths[0][0], owner_key : account.owner.key_auths[0][0], 'json_metadata': "", "posting_json_metadata" : "" }]); let tx = {operations: ops, extensions: []}; const result = await broadcast(tx, wif); assert(result.error); For reference `broadcast` looks like this : function broadcast(tx, wif) { return new Promise(resolve => { steem.broadcast.send(tx, {wif}, async function (err) { if (!err) { return resolve({error : false, err}) } else { return resolve({error : true , err}) } }); }); } Which works perfectly. But if we try to do the same with account_update2 const wif = steem.auth.toWif(username, password, 'posting'); let ops = []; let account = await steem.api.callAsync('condenser_api.get_accounts', [[username]]); account = account[0]; ops.push([ 'account_update2', { 'account': username, memo_key : account.memo_key, posting_key : account.posting.key_auths[0][0], active_key : account.active.key_auths[0][0], owner_key : account.owner.key_auths[0][0], 'json_metadata': "", "posting_json_metadata" : "" }]); let tx = {operations: ops, extensions: []}; const result = await broadcast(tx, wif); assert(result.error); We get `Assert Exception:itr != to_full_tag.end(): Invalid operation name: account_update2` which is odd, because if we remove the parameters memo_key, posting_key, active_key, owner_key it'll tell us that it needs those parameters (which is also odd since the documentation states that they are optional). This means that it does recognizes the operation `account_update2` and it's needed parameters but where it somehow won't work if we include all. > After some back and forth with @justinw and @vanderberg, we found that the current testnet was deployed before `account_update2` was added to `condenser_api`. Which was causing the bug. We then realized that there was an issue with steem-js, namely that it would make the parameter `memo_key` mandatory. I assume that since `account_update2` has almost the same parameters as `account_update`, the same validation was used. The issue is that if you include the`memo_key` parameter, then `account_update2` requires the active key to execute (since you're trying to change your memo key). Which defeats the whole purpose of `account_update2`, an account_update with the posting key. So since this is an actual problem, we've opened an issue here: https://github.com/steemit/steem-js/issues/446 Thanks to @vanderberg a fix was found quickly and we've opened a pull request to fix the problem: https://github.com/steemit/steem-js/pull/447 # create_proposal As the name suggests, this operation allows you to create a proposal to the SPS. It's parameters are: ``` creator: creator of the proposal - receiver: receiver of the daily sbd - start_dat : starting date of the proposal - end_date: end date of the proposal - daily_pay: daily pay (in sbd) - subject: basically a title - permlink: permlink to an existing post describing your proposal ``` These parameters are pretty straightforward. We managed to create a proposal very quickly meaning that the base case works. We then checked the blockchain code to see what kind of verifications had already been done to know if some things were not tested yet. Those validations would be located in /libraries/chain/sps_evaluator.cpp. Then there's validation regarding the types themselves during casting, for instance, dates are verified by the `time_point_sec`. So after reading a bit here's the tests regarding the parameters that are in the blockchain: - end date must be in the future - proposal creator has to exist - proposals receiver has to exist - permlink must lead to existing post exist We went on to test the following cases to give you an idea: create_proposal normal create_proposal ends before today create_proposal negative pay Proposal permlink doesnt exists Proposal daily pay overly large number Proposal daily pay overly large title Proposal start date does not exist (start date was set in -2018) datetime underflow (start date is in 1501) Proposal start date is far in the future (proposal payout is between 2040 and 2041) Proposal duration is less than a day Proposal duration is less than an hour And the chain handled everything very well! The only part we found questionable was the lack of any check to prevent a proposal from being entered that would end before a day has passed. This, however, is not a big problem in itself as it would hurt the user and not the chain and could be handled by and front ends through which most users would submit a proposal. It is worth noting though. # update_proposal_votes There are way fewer parameters to this call and thus there is less to test, it works very much like witness voting. the parameters are the following: ``` voter: Your username proposals_ids: ids of the proposals you want to vote for (array) approve: add or remove votes for the proposals_ids array (true or false) ``` And there were no problems as far as we could tell. Here is nevertheless a list of the tests that we conducted: ``` proposal vote remove votes on one vote with no proposal_id vote nonexistent proposal id vote with an id that overflows vote on a list of existing and nonexisting proposal IDs ``` Side note on the total_votes value of the `find_proposals` operation. One might want to test the result of voting with the find_proposals call. Here's an example from the call:  Even if you vote for a proposal, the total_votes field will stay at 0. This is because vote calculations are not executed instantly but instead calculated during the "maintenance time" of the blockchain. For those who don't know, this is a time where the chain executes computationally intensive tasks and happens roughly once every hour. As @blocktrades puts it: "think of it [the vote operation] like mailing in a vote then waiting for the election time for it to count" # Remove proposal Since this operation only serves to remove a proposal, there are only two parameters, and thus not much to test. These two parameters are: ``` proposal_owner // self explanatory proposal_ids // array of proposals ids ``` our test cases were as follow : ``` remove proposal remove proposal that has already been removed remove a proposal that we do not own remove several proposals that we own remove several proposals including one we don't own remove a proposal that doesn't exist ``` In the end, we found no problems here, except perhaps the fact that one can remove proposals that never existed or that were already removed. While this has no significant consequences, it is still a useless transaction for the chain. # SPS beneficiaries One new feature in HF is the ability to fund the SPS through beneficiaries. However, since the SPS only operates with SBD, there is now a new logic that will automatically convert the STEEM and SP to SBD tha can be used for the SPS. So we tried this out by creating a post with 100% beneficiaries to the SPS: The post went through without any problems and payout happened as expected with the SPS also converting everything properly. # Conclusion In conclusion, the only "real" problem we found did not come from the blockchain but rather the tools above it. Which is a really good thing! If you are interested in seeing our testsuite, here's a gist with all of it: https://gist.github.com/drov0/efb8f0a134851030ac2b434520ba333b. Note that mocha is needed in order to run it. We are continuously performing more tests of HF21 ahead of its release and will let you know if find anything else that is significant. <a href="https://beta.steemconnect.com/sign/account-witness-vote?witness=steempress&approve=1"> </a> We see it as crucial that top witnesses participate in thoroughly testing new hard fork proposals and to also allow the community and stakeholders to know what has been tested in order to minimize potential issues following a fork. If you appreciate our contributions as a technical witness, do consider voting for @steempress through the [witness page](https://steemitwallet.com/~witnesses) or through steemconnect [here](https://beta.steemconnect.com/sign/account-witness-vote?witness=steempress&approve=1).
author | steempress |
---|---|
permlink | steempress-testing-results-of-hf21 |
category | witness-update |
json_metadata | {"tags":["witness-update","witness","steempress","steem","hf21"],"users":["steempress","justinw","vanderberg","blocktrades"],"image":["https://cdn.steemitimages.com/DQmTP7PwtkNjbp7TEc5SRGYvW7qtBzn3JG8cffG9NSYP17o/Fork%20test.png","https://i.imgur.com/Aje0tEw.png","https://cdn.steemitimages.com/DQmUx8rMsaHTqs5YzJMHj16NyTXGkrDo28fqeLXotMSEKXc/vote%20witness.png"],"links":["https://steemitwallet.com/~witnesses","https://steemit.com/hf21/@steemitblog/hf21-release-tagged","https://github.com/steemit/steem/releases/tag/v0.21.0","https://steemit.com/steem/@steemitblog/hf21-sps-and-eip-explained","https://github.com/steemit/steem-js/issues/446","https://github.com/steemit/steem-js/pull/447","https://gist.github.com/drov0/efb8f0a134851030ac2b434520ba333b","https://beta.steemconnect.com/sign/account-witness-vote?witness=steempress&approve=1"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-08-08 13:56:30 |
last_update | 2019-08-08 18:03:42 |
depth | 0 |
children | 36 |
last_payout | 2019-08-15 13:56:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 27.130 HBD |
curator_payout_value | 8.415 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12,013 |
author_reputation | 75,869,703,434,293 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 89,294,296 |
net_rshares | 106,902,841,007,802 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hedge-x | 0 | 235,778,791,323 | 100% | ||
mark-waser | 0 | 591,162,594,887 | 100% | ||
gtg | 0 | 3,720,863,825,121 | 25% | ||
roelandp | 0 | 876,708,679,052 | 100% | ||
stealthtrader | 0 | 26,517,483,785 | 100% | ||
yury-vas | 0 | 577,370,991 | 1% | ||
meesterboom | 0 | 253,264,477,157 | 20% | ||
arcange | 0 | 19,935,229,352 | 2% | ||
pcste | 0 | 7,438,498,000 | 25% | ||
raphaelle | 0 | 550,436,176 | 2% | ||
joythewanderer | 0 | 795,819,445,173 | 100% | ||
sazbird | 0 | 216,258,625 | 10% | ||
steempress | 0 | 509,567,369,250 | 100% | ||
magicmonk | 0 | 852,602,033,311 | 100% | ||
psygambler | 0 | 977,075,028 | 7.5% | ||
riosparada | 0 | 277,890,933,956 | 100% | ||
jphamer1 | 0 | 2,402,910,735,134 | 52% | ||
lemouth | 0 | 387,529,249,882 | 75% | ||
anotherjoe | 0 | 196,014,691,043 | 25% | ||
wisbeech | 0 | 1,508,952,621 | 20% | ||
ffcrossculture | 0 | 43,216,328,142 | 25% | ||
escapeamericanow | 0 | 21,432,344,825 | 50% | ||
etcmike | 0 | 24,565,742,948 | 20% | ||
leoplaw | 0 | 16,727,617,904 | 100% | ||
digital-wisdom | 0 | 9,695,999 | 0.01% | ||
ethical-ai | 0 | 0 | 0.01% | ||
titusfrost | 0 | 546,533,067,550 | 100% | ||
jwaser | 0 | 0 | 0.01% | ||
leunghakkwun | 0 | 167,441,026 | 100% | ||
antonireviews | 0 | 27,841,573,752 | 100% | ||
maarnio | 0 | 18,425,548,968 | 5% | ||
bwaser | 0 | 0 | 0.01% | ||
robertchr | 0 | 2,217,956,116 | 13% | ||
whatsup | 0 | 106,305,834,100 | 23% | ||
justyy | 0 | 75,751,700,037 | 2.94% | ||
ellepdub | 0 | 0 | 0.01% | ||
herpetologyguy | 0 | 0 | 0.01% | ||
fukako | 0 | 239,740,571 | 10% | ||
okean123 | 0 | 7,248,748,580 | 15% | ||
fortinbuff | 0 | 733,966,778 | 50% | ||
handyman | 0 | 0 | 0.01% | ||
strong-ai | 0 | 0 | 0.01% | ||
dresden | 0 | 8,069,223,824 | 15% | ||
expat | 0 | 178,271,385 | 50% | ||
jaki01 | 0 | 2,760,574,334,934 | 100% | ||
alexisvalera | 0 | 1,244,391,619 | 15% | ||
elias15g | 0 | 950,720,499 | 15% | ||
frankches | 0 | 238,174,054 | 15% | ||
redes | 0 | 1,142,091,714,191 | 21% | ||
astral | 0 | 34,700,991,801 | 100% | ||
bukiland | 0 | 326,288,714 | 3.6% | ||
expatembassy | 0 | 197,298,864 | 50% | ||
technoprogressiv | 0 | 0 | 0.01% | ||
teamhumble | 0 | 20,635,366,202 | 20% | ||
justinw | 0 | 437,372,304,470 | 100% | ||
assus | 0 | 1,312,223,043 | 15% | ||
timm | 0 | 314,699,201,725 | 50% | ||
cardboard | 0 | 7,655,045,607 | 100% | ||
lovemetouchme2 | 0 | 13,613,513,541 | 10% | ||
dresden1 | 0 | 344,016,412 | 15% | ||
dresden2 | 0 | 345,098,398 | 15% | ||
dresden3 | 0 | 344,305,472 | 15% | ||
kobold-djawa | 0 | 207,770,220,280 | 100% | ||
serlanvet | 0 | 648,088,968 | 15% | ||
borepstein | 0 | 28,439,110,224 | 100% | ||
shaunmza | 0 | 41,520,934,621 | 100% | ||
tarazkp | 0 | 146,368,076,638 | 35% | ||
steemitboard | 0 | 15,760,638,922 | 1% | ||
hepafast | 0 | 1,379,975,382 | 100% | ||
sudutpandang | 0 | 1,604,730,772 | 100% | ||
siriusgaia | 0 | 1,540,658,644 | 100% | ||
zephyraijunzo | 0 | 22,367,623,531 | 100% | ||
torkot | 0 | 5,024,657,396 | 15% | ||
markkujantunen | 0 | 135,227,814,821 | 100% | ||
evildeathcore | 0 | 8,898,074,594 | 100% | ||
oscarps | 0 | 3,171,075,399 | 15% | ||
diggndeeper.com | 0 | 1,894,834,268,503 | 100% | ||
borislavzlatanov | 0 | 128,360,215,918 | 100% | ||
alexrickard86 | 0 | 441,067,086 | 25% | ||
humoalex | 0 | 248,875,582 | 15% | ||
preparedwombat | 0 | 105,845,537,440 | 42% | ||
prameshtyagi | 0 | 14,573,695,461 | 100% | ||
davidorcamuriel | 0 | 690,312,204,496 | 100% | ||
thecrazygm | 0 | 1,001,065,429 | 25% | ||
arthursen | 0 | 896,049,738 | 100% | ||
mes | 0 | 254,607,447,336 | 50% | ||
irreverent-dan | 0 | 56,103,272,532 | 100% | ||
mikenevitt | 0 | 131,609,503,004 | 100% | ||
clacrax | 0 | 692,497,966 | 15% | ||
steemchiller | 0 | 350,215,907,188 | 100% | ||
fredrikaa | 0 | 387,631,276,385 | 100% | ||
frostyamber | 0 | 8,833,843,535 | 100% | ||
carlagonz | 0 | 610,212,645 | 15% | ||
galberto | 0 | 4,800,530,438 | 15% | ||
juancar347 | 0 | 8,357,374,729 | 15% | ||
introspectiva | 0 | 184,870,905 | 15% | ||
sol25 | 0 | 2,861,926,897 | 15% | ||
rnunez09 | 0 | 74,675,515 | 15% | ||
armonia | 0 | 140,807,875 | 15% | ||
spectrumecons | 0 | 399,214,503,989 | 12% | ||
avisk | 0 | 135,131,856 | 15% | ||
decomoescribir | 0 | 5,748,619,834 | 15% | ||
aleli | 0 | 361,857,813 | 15% | ||
corsica | 0 | 37,073,950,959 | 100% | ||
ficciones | 0 | 193,109,085 | 15% | ||
simnrodrguez | 0 | 11,584,682,865 | 15% | ||
benedict08 | 0 | 27,010,090,019 | 15% | ||
neiraurdaneta | 0 | 923,231,482 | 15% | ||
kiokizz | 0 | 6,556,323,156 | 25% | ||
stefanycaldera | 0 | 191,286,352 | 15% | ||
dojeda | 0 | 1,007,932,790 | 15% | ||
marpa | 0 | 3,430,788,420 | 15% | ||
funnyfaces | 0 | 3,221,172,553 | 100% | ||
negativer | 0 | 43,543,476,717 | 100% | ||
theguruasia | 0 | 3,860,772,979 | 100% | ||
karencarrens | 0 | 361,299,238 | 2.5% | ||
howo | 0 | 30,243,227,572 | 100% | ||
synrg | 0 | 93,533,025,803 | 100% | ||
abnerpantoja | 0 | 1,132,154,121 | 15% | ||
teukumuhas | 0 | 1,559,700,552 | 100% | ||
yoogyart | 0 | 10,132,381,691 | 40% | ||
drmaizo | 0 | 4,503,692,251 | 15% | ||
steemitri | 0 | 144,737,541,516 | 100% | ||
zenkly | 0 | 1,040,179,413 | 15% | ||
bourrbakia | 0 | 233,543,708 | 15% | ||
yulmarasantos | 0 | 122,637,868 | 15% | ||
elinderzambrano | 0 | 583,788,415 | 15% | ||
warwarmyit | 0 | 299,514,475 | 100% | ||
murhadimur | 0 | 297,883,476 | 100% | ||
endracsho | 0 | 3,555,529,282 | 100% | ||
ilyasismail | 0 | 27,680,890,845 | 100% | ||
fionasfavourites | 0 | 17,991,404,945 | 50% | ||
pojan | 0 | 10,082,883,888 | 100% | ||
risckylu | 0 | 1,003,222,114 | 15% | ||
bashadow | 0 | 15,231,671,572 | 25% | ||
ponpase | 0 | 19,558,774,864 | 100% | ||
lyxng | 0 | 856,886,776 | 100% | ||
kaizag | 0 | 537,892,466 | 15% | ||
qilo | 0 | 296,904,503 | 100% | ||
drakbirkenau | 0 | 114,821,242 | 15% | ||
zullyscott | 0 | 422,013,897 | 15% | ||
nameless16 | 0 | 174,657,590 | 3.75% | ||
dragonflyarrow | 0 | 706,622,732 | 15% | ||
miguelfiguera | 0 | 887,780,675 | 15% | ||
fqc | 0 | 104,000,867 | 15% | ||
cesinfenianos | 0 | 474,062,626 | 15% | ||
f1assistance | 0 | 2,469,604,017 | 100% | ||
albanna | 0 | 6,419,926,883 | 100% | ||
pepiflowers | 0 | 369,033,594 | 15% | ||
critic-on | 0 | 1,845,077,332 | 15% | ||
krevasilis | 0 | 468,892,899 | 100% | ||
spellmaker | 0 | 1,761,017,189 | 100% | ||
mrstrange | 0 | 319,108,398 | 15% | ||
m-san | 0 | 2,815,282,614 | 100% | ||
beekart | 0 | 1,946,362,738 | 100% | ||
miti | 0 | 35,605,339,301 | 5% | ||
lukaslife | 0 | 527,185,710 | 100% | ||
fuel4fire | 0 | 0 | 100% | ||
moises-moran | 0 | 2,596,511,924 | 15% | ||
traciyork | 0 | 104,521,529,736 | 50% | ||
carlos84 | 0 | 13,416,025,914 | 100% | ||
lucygarrod | 0 | 20,744,791,613 | 100% | ||
imisstheoldkanye | 0 | 2,330,824,917 | 1% | ||
eonwarped | 0 | 204,379,429,115 | 24% | ||
gabrielamosqueda | 0 | 78,044,107 | 15% | ||
sankysanket18 | 0 | 14,255,385,317 | 100% | ||
poesiaempirica | 0 | 96,347,818 | 15% | ||
joseacabrerav | 0 | 451,141,993 | 15% | ||
etherpunk | 0 | 92,303,689,361 | 50% | ||
ksg | 0 | 7,699,715,471 | 100% | ||
desmond41 | 0 | 26,139,427,990 | 25% | ||
lebin | 0 | 81,498,146,369 | 5% | ||
b00m | 0 | 3,260,740,994 | 16% | ||
salvao | 0 | 2,739,068,795 | 15% | ||
iaberius | 0 | 914,697,097 | 15% | ||
willsaldeno | 0 | 12,233,095,480 | 100% | ||
fabianklauder | 0 | 65,193,049,266 | 38% | ||
hungryhustle | 0 | 162,228,697,709 | 100% | ||
adasq | 0 | 30,787,510,671 | 100% | ||
thedarkvoice | 0 | 545,347,761 | 100% | ||
cpufronz | 0 | 3,119,380,680 | 100% | ||
ervinneb | 0 | 1,194,879,971 | 25% | ||
edjesus | 0 | 70,126,896 | 100% | ||
adncabrera | 0 | 525,767,977 | 15% | ||
pltorres | 0 | 548,625,437 | 100% | ||
alarconr22.arte | 0 | 179,017,009 | 3.75% | ||
hanif09 | 0 | 296,093,877 | 100% | ||
build3-casole | 0 | 89,309,639 | 100% | ||
johannfrare | 0 | 320,973,319 | 15% | ||
oscarina | 0 | 159,866,286 | 10% | ||
midiagam | 0 | 4,319,970,677 | 100% | ||
chejonte | 0 | 218,571,913 | 15% | ||
mermaidvampire | 0 | 24,890,416,095 | 11% | ||
coinchaos | 0 | 12,909,599,483 | 100% | ||
soyrosa | 0 | 146,442,493,437 | 50% | ||
imealien | 0 | 40,534,726,033 | 25% | ||
cfminer | 0 | 1,728,386,921 | 100% | ||
matytan | 0 | 6,291,630,809 | 100% | ||
michaelluchies | 0 | 6,572,937,514 | 100% | ||
icuz | 0 | 1,898,514,471 | 100% | ||
srikandi | 0 | 721,634,905 | 100% | ||
rjguerra | 0 | 559,985,103 | 15% | ||
zeleiracordero | 0 | 1,490,844,047 | 15% | ||
cmad | 0 | 127,588,790 | 100% | ||
lintang | 0 | 856,435,125 | 100% | ||
marlyncabrera | 0 | 1,770,090,565 | 15% | ||
asgarth | 0 | 1,011,314,584,230 | 100% | ||
llfarms | 0 | 41,291,893,425 | 100% | ||
memeitbaby | 0 | 173,864,873 | 30% | ||
froq | 0 | 7,922,892,637 | 100% | ||
backinblackdevil | 0 | 43,400,165,130 | 8% | ||
olimiesma | 0 | 43,524,643,051 | 100% | ||
arcoiris | 0 | 232,944,245 | 15% | ||
steiller | 0 | 299,743,668 | 100% | ||
shela | 0 | 154,773,249 | 100% | ||
blockschrott | 0 | 535,032,096 | 100% | ||
josevas217 | 0 | 1,502,384,028 | 15% | ||
hanki | 0 | 1,764,319,165 | 100% | ||
paulo380 | 0 | 1,125,728,627 | 25% | ||
xinvista | 0 | 310,267,985 | 100% | ||
fangadir | 0 | 1,068,632,107 | 100% | ||
schlafhacking | 0 | 159,420,259,654 | 100% | ||
ezravandi | 0 | 4,048,808,324 | 2.6% | ||
arainetjay | 0 | 151,295,054 | 100% | ||
akitoxavier | 0 | 0 | 100% | ||
ilazramusic | 0 | 894,843,170 | 15% | ||
chuuuckie | 0 | 136,453,651,477 | 100% | ||
elsll | 0 | 80,443,054 | 4.5% | ||
lockout | 0 | 377,342,969 | 100% | ||
sentipark | 0 | 296,171,410 | 100% | ||
burakakdogan | 0 | 0 | 100% | ||
misia1979 | 0 | 9,964,922,563 | 50% | ||
josedelacruz | 0 | 13,573,357,555 | 100% | ||
roinv | 0 | 211,005,712 | 15% | ||
bukfast | 0 | 811,244,511 | 100% | ||
steempress-io | 0 | 40,921,348,169,194 | 100% | ||
saracampero | 0 | 2,126,733,520 | 50% | ||
moserich | 0 | 13,141,193,971 | 100% | ||
no0 | 0 | 297,091,040 | 100% | ||
kendallron | 0 | 502,687,291 | 30% | ||
liquidtravel | 0 | 6,843,507,751 | 100% | ||
maulid | 0 | 297,785,220 | 100% | ||
pcsg-dev | 0 | 21,105,532,995 | 100% | ||
huesos | 0 | 711,598,460 | 100% | ||
quorum4 | 0 | 254,646,757 | 15% | ||
indayclara | 0 | 623,474,874 | 15% | ||
xiox | 0 | 0 | 100% | ||
jasuly | 0 | 961,670,270 | 100% | ||
mariale07 | 0 | 178,567,078 | 15% | ||
edanya | 0 | 104,423,273 | 7.5% | ||
pinas | 0 | 453,382,356 | 50% | ||
mcgarcia | 0 | 0 | 0% | ||
minotaurototal | 0 | 140,408,540 | 15% | ||
pupu93 | 0 | 4,813,739,110 | 100% | ||
mike961 | 0 | 295,909,788 | 4.5% | ||
petrm | 0 | 296,451,039 | 100% | ||
isabelll | 0 | 296,560,042 | 100% | ||
rii | 0 | 299,992,829 | 100% | ||
jester87 | 0 | 301,151,143 | 100% | ||
sp33dygonzales | 0 | 297,088,892 | 100% | ||
sjennifer | 0 | 298,880,351 | 100% | ||
dolleyb | 0 | 300,281,392 | 100% | ||
miggel | 0 | 297,702,557 | 100% | ||
selise | 0 | 296,253,269 | 100% | ||
m3ik3 | 0 | 299,302,447 | 100% | ||
apt-get | 0 | 298,159,453 | 100% | ||
saiyajin | 0 | 298,369,032 | 100% | ||
kleinheim | 0 | 297,977,629 | 100% | ||
badeder | 0 | 300,485,216 | 100% | ||
theryhus | 0 | 236,005,993 | 50% | ||
konso | 0 | 299,162,105 | 100% | ||
mitrin | 0 | 1,302,507,782 | 50% | ||
kraggan | 0 | 298,902,057 | 100% | ||
beissler | 0 | 298,771,972 | 100% | ||
joyrobinson | 0 | 2,860,958,493 | 15% | ||
stevenwsmith | 0 | 296,862,176 | 100% | ||
moneybaby | 0 | 1,209,645,802 | 5% | ||
steemprotect | 0 | 3,246,567,481 | 3% | ||
lumix | 0 | 295,880,639 | 100% | ||
amnlive | 0 | 42,436,381,288 | 100% | ||
roger5120 | 0 | 6,268,703,554 | 2% | ||
ladysculapio | 0 | 97,290,123 | 25% | ||
raybull | 0 | 262,458,578 | 15% | ||
drsensor | 0 | 10,215,743,681 | 60% | ||
talentclub | 0 | 321,658,891,308 | 15% | ||
lazfasia | 0 | 299,221,302 | 100% | ||
narya | 0 | 236,929,745 | 15% | ||
mythologyupvote | 0 | 526,553,794 | 15% | ||
theviberadioshow | 0 | 536,445,471 | 100% | ||
house-targaryen | 0 | 297,023,971 | 100% | ||
royjim | 0 | 299,227,123 | 100% | ||
dacruz.thevibe | 0 | 244,849,298 | 50% | ||
bestofph | 0 | 8,864,475,060 | 30% | ||
mariarosa1 | 0 | 297,420,407 | 100% | ||
aljif7 | 0 | 3,711,559,038 | 100% | ||
cryptoznewb | 0 | 1,560,668,586 | 100% | ||
liberlandpress | 0 | 6,390,620,920 | 12.5% | ||
vicenteajb | 0 | 88,867,450 | 15% | ||
zuerich | 0 | 88,775,051,130 | 20% | ||
irenweiher | 0 | 297,612,018 | 100% | ||
amart29 | 0 | 3,750,806,215 | 15% | ||
abiwi2 | 0 | 296,490,227 | 100% | ||
cryptojerdy | 0 | 295,921,751 | 100% | ||
luc.real | 0 | 226,202,683 | 100% | ||
cryptouno | 0 | 379,333,411 | 6% | ||
witnesspage | 0 | 8,128,619,672 | 27% | ||
karolskco | 0 | 151,318,787 | 100% | ||
stembi | 0 | 324,264,640 | 100% | ||
olasamuel | 0 | 2,907,610,024 | 100% | ||
worldcapture | 0 | 75,113,388,798 | 65% | ||
definethedollar | 0 | 74,616,287,758 | 25% | ||
sunit | 0 | 803,800,872 | 20% | ||
javyeslava.photo | 0 | 299,214,341 | 4.5% | ||
chrisrice | 0 | 6,992,006,592 | 100% | ||
emaferice | 0 | 5,717,589,338 | 100% | ||
b33r | 0 | 299,707,136 | 100% | ||
huber | 0 | 298,010,572 | 100% | ||
laissez-faire | 0 | 71,146,696 | 100% | ||
zaclucasrice | 0 | 5,875,117,417 | 100% | ||
bppc | 0 | 296,126,387 | 100% | ||
humanism | 0 | 380,257,008 | 100% | ||
alexverde | 0 | 69,967,130 | 4.5% | ||
truetinker | 0 | 300,697,886 | 100% | ||
tokyoduck | 0 | 298,079,160 | 100% | ||
potsdam | 0 | 297,368,143 | 100% | ||
piresfa | 0 | 297,444,910 | 100% | ||
redradish | 0 | 297,127,336 | 100% | ||
to-upgrade | 0 | 299,215,895 | 100% | ||
enriquo | 0 | 298,155,625 | 100% | ||
rustyrobert | 0 | 297,896,733 | 100% | ||
fuerza-hispana | 0 | 195,667,278 | 15% | ||
devilotako | 0 | 545,406,804 | 100% | ||
rizalkonoha | 0 | 535,709,401 | 100% | ||
berlidaki | 0 | 545,649,055 | 100% | ||
depaldelta | 0 | 134,265,434 | 100% | ||
dibyte | 0 | 194,544,428 | 100% | ||
krotow1989 | 0 | 491,183,040 | 100% | ||
gameo | 0 | 186,160,081 | 100% | ||
chapaj | 0 | 493,307,366 | 100% | ||
ziomalek | 0 | 491,816,580 | 100% | ||
y2k | 0 | 213,775,223 | 100% | ||
jackmoksha | 0 | 298,895,249 | 100% | ||
giesela | 0 | 296,820,573 | 100% | ||
thevoteproject | 0 | 299,747,268 | 100% | ||
manhat | 0 | 301,131,054 | 100% | ||
n33d | 0 | 299,244,103 | 100% | ||
erihon | 0 | 493,906,111 | 100% | ||
sinistor | 0 | 492,232,446 | 100% | ||
universoperdido | 0 | 1,093,090,277 | 15% | ||
kira32 | 0 | 491,464,694 | 100% | ||
nellon | 0 | 645,445,686 | 50% | ||
auliamadan | 0 | 298,118,916 | 100% | ||
theycallmedan | 0 | 37,078,919,452,528 | 100% | ||
vote-o-mator | 0 | 299,044,507 | 100% | ||
jimmies | 0 | 299,933,418 | 100% | ||
glastar | 0 | 326,435,902,499 | 100% | ||
crowdfunder | 0 | 372,613,629 | 100% | ||
baba99 | 0 | 297,474,479 | 100% | ||
greek.couplegoal | 0 | 548,816,546 | 100% | ||
weight.loss | 0 | 546,289,756 | 100% | ||
hdu | 0 | 4,082,297,134 | 2% | ||
steempush | 0 | 297,815,146 | 100% | ||
curaciones-fh | 0 | 145,764,582 | 15% | ||
aeiou00 | 0 | 129,485,851 | 30% | ||
anmitsu | 0 | 414,810,513,720 | 99% | ||
bluesniper | 0 | 10,237,299,714 | 2.34% | ||
kryptonauta | 0 | 1,223,539,565 | 21% | ||
davaocity | 0 | 372,509,468 | 100% | ||
adap2021 | 0 | 546,162,467 | 100% | ||
circa | 0 | 367,641,051,073 | 100% | ||
topoisomerase | 0 | 1,262,848,209 | 100% | ||
tipu.curator | 0 | 22,074,748,144 | 100% | ||
kassa.network | 0 | 768,158,012 | 100% | ||
andresurrego | 0 | 19,114,563,543 | 100% | ||
tramelibre | 0 | 7,132,755,843 | 100% | ||
maskuncoro | 0 | 1,116,410,513 | 100% | ||
babschnae | 0 | 36,702,874,311 | 27% | ||
sportsteem11 | 0 | 148,515,971 | 100% | ||
scripsio | 0 | 628,299,968,515 | 25% | ||
alexei83 | 0 | 278,531,362 | 100% | ||
steem-queen | 0 | 541,758,946 | 100% | ||
russia-btc | 0 | 55,046,951,484 | 91% | ||
depalalfa | 0 | 25,021,650 | 50% | ||
draconel | 0 | 111,198,280 | 7.5% | ||
herminiaharbo | 0 | 511,452,241 | 100% | ||
bitcoingodmode | 0 | 0 | 100% | ||
joesar | 0 | 7,609,236,920 | 100% | ||
ritch | 0 | 6,455,728,839 | 20% | ||
muhammad-wali | 0 | 785,274,803 | 100% | ||
abello | 0 | 2,173,554,067 | 100% | ||
abojasim880 | 0 | 207,420,851 | 100% | ||
likwid | 0 | 482,022,316,783 | 10% | ||
steemvpn | 0 | 7,819,379,694 | 19% | ||
justineh | 0 | 626,029,026,181 | 100% | ||
dashkb | 0 | 546,602,678 | 100% | ||
renz.rubio | 0 | 2,147,820,551 | 100% | ||
todociencia | 0 | 267,216,277 | 20% | ||
fasolo97 | 0 | 614,065,698 | 100% | ||
mrbullishsail | 0 | 768,539,693 | 50% | ||
koliunia | 0 | 533,998,378 | 100% | ||
the.circle | 0 | 4,731,251,806 | 15% | ||
sanaee | 0 | 47,857,186,705 | 100% | ||
foxm | 0 | 1,347,377,431 | 100% | ||
helping-aj | 0 | 1,143,335,259 | 100% | ||
jagodzianka | 0 | 2,185,064,402 | 100% | ||
tys-project | 0 | 1,158,946,962 | 100% | ||
babytarazkp | 0 | 403,217,476 | 100% | ||
al-aleem | 0 | 477,745,423 | 100% | ||
m0nst3r | 0 | 543,127,796 | 100% | ||
lucacup | 0 | 521,820,235 | 100% | ||
hoarder | 0 | 527,680,043 | 100% | ||
midlet-creates | 0 | 1,499,472,809 | 50% | ||
brainhacks | 0 | 1,369,292,898 | 100% | ||
salihacinar03 | 0 | 215,566,614 | 100% | ||
sepulennto | 0 | 411,751,602 | 100% | ||
alextecno | 0 | 543,881,686 | 100% | ||
hongcai7 | 0 | 540,221,199 | 100% | ||
singhisking1 | 0 | 389,970,122 | 100% | ||
princedinho | 0 | 545,475,641 | 100% | ||
miguelelgordo | 0 | 161,892,321 | 100% | ||
teejay1 | 0 | 466,885,844 | 100% | ||
sbd-steemfree | 0 | 545,392,243 | 100% | ||
pernia05 | 0 | 142,201,203 | 100% | ||
sharoon123 | 0 | 534,747,038 | 100% | ||
youcef18 | 0 | 244,966,626 | 100% | ||
tombrider | 0 | 556,000,000 | 100% | ||
djalfredogomez | 0 | 556,000,000 | 100% | ||
totochen | 0 | 544,060,959 | 100% | ||
haeun | 0 | 556,000,000 | 100% | ||
rkn1g10 | 0 | 556,000,000 | 100% | ||
karnenza | 0 | 556,000,000 | 100% | ||
urieltrianag | 0 | 556,000,000 | 100% | ||
kanotaro123 | 0 | 0 | 100% |
Great! Things were already too complex for the average person and now they are even more complex and we will all earn even less lol... Mainstream adoption here we come!! π
author | alexvanaken |
---|---|
permlink | pwassk |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-15 21:53:09 |
last_update | 2019-08-15 21:53:09 |
depth | 1 |
children | 0 |
last_payout | 2019-08-22 21:53: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 | 171 |
author_reputation | 54,488,628,910,118 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 89,574,450 |
net_rshares | 0 |
It is nice to see test updates, thank you.
author | bashadow |
---|---|
permlink | pvxljl |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 18:47:39 |
last_update | 2019-08-08 18:47:39 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 18:47: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 | 42 |
author_reputation | 100,388,692,638,882 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,303,584 |
net_rshares | 3,836,896,120 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 3,836,896,120 | 1% |
(Revived and Will be Revived, For the Freedom of Speech, Right for Writings to Survive) # [Steem : For Freedom] Let's Down-Vote DownVoting-ManSlaughterers. List Update v.1.1 ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom ) 2019.09.01.Sun.09:52 (utc+9), by @BewareCenterBase, == # For Freedom Of Speech, # _1. Let's Down-Vote DownVoting-ManSlaughterers. List Update v.1.1 The followings are known Content-Nazi and Commie People's Court Bamboo Spear Red Guard Man-Slaughters If you like, select anyone below and # downvote Now and Anytime. . @oldstone =@slowwalker =@wisdomandjustice ! @howo, @steemlsh, @westport, @himapan @patrice=@spaminator=@prowler=@mack-bot=@mack-botjr =@mack-fund # _2. Remove From Witness Support and Down-Vote @patrice, @themarkymark, are the worst witness to drop @clayop, @asbear, @ocd-witness, @ats-witness , @noblewitness=@sircork -- Top Witnesses who are for Down-Vote-Pool HardForks. @roelandp, @yabapmatt, @good-karma, @gtg, @blocktrades, @themarkymark, @someguy123, @cervantes, @aggroed, @smooth.witness, @therealwolf, @anyx, @ocd-witness, @timcliff, @ausbitbank, @curie, @thecryptodrive, @followbtcnews, @clayop, @drakos, @lukestokes.mhth, @jesta, @steempress, ~~@xeldal~~, @emrebeyler, @liondani, @riverhead, @actifit, @busy.witness, @bhuz, And # _2. Write Much More to Dry-Up DownVoting-ManSlaughterers' Power, # _3. Make Much More Accounts to Fight For Freedom. # _4. Automate Resistance Process. # _5. Make Situations Complex, To Kill Man-Slaughtering Bots and Programmers. Vary Self-Vote or Not, Voting %, Voting Time etc. Or If you dislike battle field, # _6. Leave Steem and Never Look Back. == If you want to see more list to Down-Vote, please see below. [steemθ²:HF21] λ¨μμ©λ λ€μ΄λ³΄ν νμλ‘, 무μμ λ€μ΄λ³΄ν ν κ²μΈκ°? [steem:HF21] What to Down-Vote with HF21 Down-Vote Power ? ( https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) ( https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) 2019.08.28.μ.08:45, by @BewareCenterBase, Steem Hard Fork 21 ( μ΄ν HF21) μμλ λ€μ΄λ³΄ν νμκ° λμ λμ΄, κΈ°μ‘΄ HF20 μ΄μ μμ μ 보ν νμλ₯Ό μλͺ¨νμ¬ λ€μ΄λ³΄ν ν μ μλλ‘ ν κ²μμ, λ€μ΄λ³΄ν μ μ 보ν κ³Ό λ³λμ νμλ₯Ό μ¬μ©νμ¬ ν μ μλλ‘ νμλ€. κ΄λ ¨ κΈλ€μ μ΄ κΈμ μλ λͺ©λ‘μμ μ°Ύμ λ³Ό μ μλ€.  https://steemd.com/@accountname μμλ hf21 μμ λμ λ λ€μ΄λ³΄νΈ νμ μλκ³Ό ν볡μ 보ν νμ μ λ§μ°¬κ°μ§λ‘ νμΈν μ μλ€. μ, μ¬κΈ°μ λ¨λ λ¬Έμ . λ¨μμ μμ΄ λκ°λ λ€μ΄λ³΄ν νμλ₯Ό μ΄λμ μΈ κ²μΈκ°? # _1. νμ€μ 맀체μμ λΆκ°νΌν λ€μ΄λ³΄ν μ μλ μ·¨μ§λλ‘, μ€ν λΈλ‘체μΈμ μμ‘΄μ±μ μννκ²λ μ μλ, μ μκΆ μλ° μ΄λ, μλ ν¬λ‘λ Έ, ν΄νΉ, μ€μΊ νΌμ± λ±μ μ¬κΈ° μ λ κΈ λ±μ λ€μ΄λ³΄ν νλΌ λ κ²μΌ κ²μ΄λ€. κ·Έλ° κΈλ€μ΄ 보μΈλ€λ©΄, λ€μ΄λ³΄ν νλ©΄ λλ€. κ·Έλ¬λ, κ·Έλ° κΈλ€μ λ§μ§ μλ€. # _2. κ·Έλλ λ¨μμ μ©μ΄λκ°λ λ€μ΄λ³΄ν νμλ μλ» μ μκ°μμ λ¨μ κΈμ λ€μ΄λ³΄ν νμ΄νλ 컨ν μΈ λμ°λ μΈλ―Όμ¬ν κ³΅μ° μ£½μ°½ λ€μ΄λ³΄ν νμ΄μλ€μ λ€μ΄λ³΄ν νλ©΄ λλ€κ³ λ³Έλ€. μ΄κ²μ λ€μ΄λ³΄ν μ μμ μ΄λ°ν κ²μ΄μ§λ§, λ€μ΄λ³΄ν νμ΄μλ€μ λμμ§μ ν΅μ ν λ°©λ²μ μ΄ μ·¨μ§μ 곡κ°νλ μ¬λλ€μ΄ κ·Έ λ€μ΄λ³΄ν νμ΄μλ€μ λ€μ΄λ³΄ν νλ κ²μ΄ λΆκ°νΌν μ νμΌλ‘ 보μΈλ€. λ€μ΄λ³΄ν ν΄μΌν λ€μ΄λ³΄ν νμ΄μλ€μ λͺ©λ‘μ 곡νν΄ λκ° κ²μ΄λ€. μΌλ¨μ @oldstone=@slowwalker=@wisdomandjustice @patrice=@spaminator=@prowler=@mack-bot=@mack-botjr =@mack-fund Witness to drop and to Down-vote : @patrice, @themarkymark, are the worst witness to drop @clayop, @asbear, @ocd-witness, @ats-witness , @noblewitness=@sircork # _3. κΈ°μ μ νκ³κ° μμΌλ©΄ κΈ°μ κ°λ°κ³Ό λ Έμ€μ€μ€λ ₯μΌλ‘μ¨ κ·Ήλ³΅ν μκ°μ νμ§ μκ³ , λ€μ΄λ³΄ν μ κΆμ₯νμ¬, μ€ν ν¬μμ λ° μ€ν μ¬μ©μλ€μ κ°μ μ νμ΄νμ¬ μ€νμμ μ«μλ΄λ μ€ν μ΅μ μ μ λ€μ λ€μ΄λ³΄ν ν΄μΌνλ€κ³ λ³Έλ€. κ·Έλ€μ μ€ν κ°λ°μλ€, μ€ν μ¬λ¨, μ€νμ νμ¬ κ΄κ³μλ€, λ€μ΄λ³΄ν ν λμ μ μ°¬μ±ν μ€ν μ¦μΈλ€ λͺ©λ‘μ κ°±μ ν΄ λκ° κ²μ΄κ³ , μΌλ¨ μμ 30μ μ¦μΈλ€ μ€μμ hf21 down-vote λ₯Ό μ§μνκ³ μλ 29 λͺ μ λͺ©λ‘μ μ€λ€. @roelandp, @yabapmatt, @good-karma, @gtg, @blocktrades, @themarkymark, @someguy123, @cervantes, @aggroed, @smooth.witness, @therealwolf, @anyx, @ocd-witness, @timcliff, @ausbitbank, @curie, @thecryptodrive, @followbtcnews, @clayop, @drakos, @lukestokes.mhth, @jesta, @steempress, ~~@xeldal~~, @emrebeyler, @liondani, @riverhead, @actifit, @busy.witness, @bhuz, μ¬μ¬ν λ, 무μμλ‘ λλ¬μ, λ€μ΄λ³΄ν μ λ§μ 보μ¬μ£ΌμλΌ. νΉμ λ³΄λ³΅μ΄ μ¬ κ²μ΄ λλ €μ΄κ°? μμ μ μΈλ‘ μ μμ λ κ·Έλ₯ μ»μ΄μ§μ§ μλλ€. λ§μ νΌλλ―Έλ€μ΄ λ²λΌμ²λΌ λ€μ΄λ³΄ν νλ€λ©΄, κ³ λ μ¦μΈλ€λ λμ λ°©λ²μ΄ μμ κ²μ΄κ³ , λ€μ΄λ³΄ν κΈ°λ₯μ μμ λ μͺ½μΌλ‘ κ°κ² λ κ²μ΄λ€. κ·Έλλ λλ €μ΄κ°? κ²μ₯μ΄λ€μ, λλ €μ°λ©΄ λΉ μ§λ©΄ λλ€. γ γ == [steemθ²:μ μ± ] νλν¬ν¬ 21 μμ, λ€μ΄λ³΄ν νμ΄ μ¬μ©μ λ΄μ«κ³ μ§νμ€ νκ². [steem:policy] HF21 DownVote-Pool will expel lots users and Steem price will tank. ( https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank ) ( https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank ) 2019.08.17.ν .09:11, by @BewareCenterBase, . [μ€νθ²: μμ steem μ μ ] μ¬μ μ¬μ°κ³Ό κ³μ½μμ λΆμ νλ λ€μ΄λ³΄ν μλ Steem μ ννκ° μλλ€. (@SteamSteem Creativity λ μ°½κΈ; revive from down-vote-hide ) ( https://steemit.com/kr/@steamsteem/-steem-steem-steamsteem-creativity-revive-from-downvotehide--1545446641207 ) 2018.12.15.ν .15:11, by @SteamSteem, revive from down-vote-hide of the original .. . [μ€νθ²: λ¨μ ] νΉκΆμΈ΅μ μλ» μλΉμ μμ‘΄νλ λ¬Έμ ν΄κ²° ꡬ쑰, (1/n) [steem: demerit] OverDog's Self-Fucked Mercy dependent Problem Solving. ( https://steemit.com/kr/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving ) ( https://staging.busy.org/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving ) 2019.08.14.Wed, 06:39 (utc+9), by @BewareCenterBase [steemθ²:μ μ± ] νλν¬ν¬ 21 μμ, μλ‘ λ€μ΄λ³΄ν νμ΄νλ€κ° λ§μ§λ§ νλκΉμ§ μ£½μ΄κ°κ². v.1.1,(2/n) [steem:policy] HF21, Last DownVoter will starve after Man-Slaughtering each other. ( https://steemit.com/kr/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other ) ( https://staging.busy.org/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other ) 2019.08.25.μΌ.14:15, by @BewareCenterBase, revive from down-vote-hide of the following.. [steemθ²:λ―Έλ] νλν¬ν¬ 21 λ€μ΄λ³΄ν ν, μ μ μ λλ‘ κ°μ μλͺ¨ μ€νμΈλ€ λ λκ³ , μ€ν κ°κ²© νΌλ₯ μλ― [steem:policy] HF21 Down-Vote Pool, induce Wars, Abuse Users Emotions, Expel Users , Price Tank. ( https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank ) ( https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank ) 2019.08.27.ν.09:15, by @BewareCenterBase, [steemθ²:λ―Έλ] HF21 λ€μ΄ ν λμ , μ μ보μ κΈ°λ₯μ ν¬κΈ°, smt ν ν°/λ λ€μ λκΈ°κ³ , νλ«νΌ μ½μΈ κ°λ μ΄μ κΈ° μλ? [steem:policy] HF21 Down-Vote Pool, Try Weaning, From Author Reward To Platform Coin ? ( https://steemit.com/kr/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin ) ( https://staging.busy.org/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin ) 2019.08.27.ν.09:19, by @BewareCenterBase, [steemθ²:λ³Έμ§] HF21 λ€μ΄λ³΄ν ν λμ μΌλ‘, μ€νμ λ³Έμ§μ΄ μ μ보μ 맀체μμ, κΈ λ§€κ° μ 보ν λ€μ΄λ³΄ν μ μ κ²μμΌλ‘ λ°λλ€. [steem:HF21] Steem Changes, From Author Reward Social Media, To Down-vote War Game. ( https://steemit.com/kr/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game ) ( https://staging.busy.org/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game ) 2019.08.28.μ.08:14, by @BewareCenterBase, [steemθ²:HF21] λ¨μμ©λ λ€μ΄λ³΄ν νμλ‘, 무μμ λ€μ΄λ³΄ν ν κ²μΈκ°? [steem:HF21] What to Down-Vote with HF21 Down-Vote Power ? ( https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) ( https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) 2019.08.28.μ.08:45, by @BewareCenterBase, For Freedom Of Speech, Let's Down-Vote Down-Vote-ManSlaughterer @oldstone =@slowwalker =@wisdomandjustice ( https://steemit.com/kr/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice ) ( https://staging.busy.org/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice ) 2019.08.31.Sat.18:53 (utc+9), by @BewareCenterBase, [Steem : For Freedom] Down-Vote DownVoting-ManSlaughterers, My List Update v.1.1 ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1 ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1 ) 2019.09.01.Sun.09:43 (utc+9), by @BewareCenterBase, [Steem : For Freedom] Write Much More to Dry-Up DownVoting-ManSlaughterers' Power, ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power ) 2019.09.01.Sun.09:52 (utc+9), by @BewareCenterBase, == (busy) #kr jjm sct busy palnet zzan cryptocurrency liv bitcoin steemleo steem steemit (steempeak) #kr jjm sct palnet zzan liv life steemleo steem steemit #kr jjm sct palnet zzan liv steemleo steem steemit cryptocurrency == ( λ°λ‘ λ° κ΄κ³ μΈμ λΌλ ν΄λ¦νμλ©΄, νμμ μ½μΈ μνκ³μ λμλ©λλ€. κ΄κ³ λ dClick μ νμ΄λ©°, νμλ μ νκΆ μκ³ , 보μ¦/μ± μ μ§μ§ μμ΅λλ€. Please Click Ad just below at any time, to help writer & coin-ecosystem. Ad is selected by dClick . Writer above, No Guarantee, No Responsibilities.)
author | bewarecenterbase |
---|---|
permlink | px4tv7 |
category | witness-update |
json_metadata | {"tags":["witness-update","kr"],"users":["bewarecenterbase","oldstone","slowwalker","wisdomandjustice","howo","steemlsh","westport","himapan","patrice","spaminator","prowler","mack-bot","mack-botjr","mack-fund","themarkymark","clayop","asbear","ocd-witness","ats-witness","noblewitness","sircork","roelandp","yabapmatt","good-karma","gtg","blocktrades","someguy123","cervantes","aggroed","smooth.witness","therealwolf","anyx","timcliff","ausbitbank","curie","thecryptodrive","followbtcnews","drakos","lukestokes.mhth","jesta","steempress","xeldal","emrebeyler","liondani","riverhead","actifit","busy.witness","bhuz","steamsteem"],"image":["https://ipfs.busy.org/ipfs/QmS6523fGwpkAJV8po5QHPk9YF9Jio9nEJKLufLHLiWrmT"],"links":["https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom","https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power","https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power","https://steemd.com/@accountname","https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank","https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank","https://steemit.com/kr/@steamsteem/-steem-steem-steamsteem-creativity-revive-from-downvotehide--1545446641207","https://steemit.com/kr/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving","https://staging.busy.org/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving","https://steemit.com/kr/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other","https://staging.busy.org/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other","https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank","https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank","https://steemit.com/kr/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin","https://staging.busy.org/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin","https://steemit.com/kr/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game","https://staging.busy.org/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game","https://steemit.com/kr/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice","https://staging.busy.org/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice","https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1","https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power"],"app":"steemit/0.1"} |
created | 2019-09-01 03:04:18 |
last_update | 2019-09-01 03:04:18 |
depth | 1 |
children | 0 |
last_payout | 2019-09-08 03:04: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 | 9,396 |
author_reputation | -93,249,918,891,757 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,158,094 |
net_rshares | -575,949,656,891 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wisdomandjustice | 0 | -575,949,656,891 | -10% |
That a witness has this type of interest, demonstrates responsibility and commitment to steemit, that speaks very well of you, I just hope that the other witnesses take an example and perform tests before the official launch of the HF, and communicate the results of these tests The other important thing that witnesses should mention is to evaluate a projection of: how would the price of steem improve in the not too distant future as a result of the changes that would be experienced with the HF. Greetings and thanks for sharing.
author | carlos84 |
---|---|
permlink | pvxwj8 |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 22:14:30 |
last_update | 2019-08-08 22:14:30 |
depth | 1 |
children | 1 |
last_payout | 2019-08-15 22:14: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 | 533 |
author_reputation | 372,354,664,960,142 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,309,090 |
net_rshares | 56,141,998,506 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 42,452,948,600 | 10% | ||
carlos84 | 0 | 13,689,049,906 | 100% |
(Revived and Will be Revived, For the Freedom of Speech, Right for Writings to Survive) # [Steem : For Freedom] Let's Down-Vote DownVoting-ManSlaughterers. List Update v.1.1 ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom ) 2019.09.01.Sun.09:52 (utc+9), by @BewareCenterBase, == # For Freedom Of Speech, # _1. Let's Down-Vote DownVoting-ManSlaughterers. List Update v.1.1 The followings are known Content-Nazi and Commie People's Court Bamboo Spear Red Guard Man-Slaughters If you like, select anyone below and # downvote Now and Anytime. . @oldstone =@slowwalker =@wisdomandjustice ! @howo, @steemlsh, @westport, @himapan @patrice=@spaminator=@prowler=@mack-bot=@mack-botjr =@mack-fund # _2. Remove From Witness Support and Down-Vote @patrice, @themarkymark, are the worst witness to drop @clayop, @asbear, @ocd-witness, @ats-witness , @noblewitness=@sircork -- Top Witnesses who are for Down-Vote-Pool HardForks. @roelandp, @yabapmatt, @good-karma, @gtg, @blocktrades, @themarkymark, @someguy123, @cervantes, @aggroed, @smooth.witness, @therealwolf, @anyx, @ocd-witness, @timcliff, @ausbitbank, @curie, @thecryptodrive, @followbtcnews, @clayop, @drakos, @lukestokes.mhth, @jesta, @steempress, ~~@xeldal~~, @emrebeyler, @liondani, @riverhead, @actifit, @busy.witness, @bhuz, And # _2. Write Much More to Dry-Up DownVoting-ManSlaughterers' Power, # _3. Make Much More Accounts to Fight For Freedom. # _4. Automate Resistance Process. # _5. Make Situations Complex, To Kill Man-Slaughtering Bots and Programmers. Vary Self-Vote or Not, Voting %, Voting Time etc. Or If you dislike battle field, # _6. Leave Steem and Never Look Back. == If you want to see more list to Down-Vote, please see below. [steemθ²:HF21] λ¨μμ©λ λ€μ΄λ³΄ν νμλ‘, 무μμ λ€μ΄λ³΄ν ν κ²μΈκ°? [steem:HF21] What to Down-Vote with HF21 Down-Vote Power ? ( https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) ( https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) 2019.08.28.μ.08:45, by @BewareCenterBase, Steem Hard Fork 21 ( μ΄ν HF21) μμλ λ€μ΄λ³΄ν νμκ° λμ λμ΄, κΈ°μ‘΄ HF20 μ΄μ μμ μ 보ν νμλ₯Ό μλͺ¨νμ¬ λ€μ΄λ³΄ν ν μ μλλ‘ ν κ²μμ, λ€μ΄λ³΄ν μ μ 보ν κ³Ό λ³λμ νμλ₯Ό μ¬μ©νμ¬ ν μ μλλ‘ νμλ€. κ΄λ ¨ κΈλ€μ μ΄ κΈμ μλ λͺ©λ‘μμ μ°Ύμ λ³Ό μ μλ€.  https://steemd.com/@accountname μμλ hf21 μμ λμ λ λ€μ΄λ³΄νΈ νμ μλκ³Ό ν볡μ 보ν νμ μ λ§μ°¬κ°μ§λ‘ νμΈν μ μλ€. μ, μ¬κΈ°μ λ¨λ λ¬Έμ . λ¨μμ μμ΄ λκ°λ λ€μ΄λ³΄ν νμλ₯Ό μ΄λμ μΈ κ²μΈκ°? # _1. νμ€μ 맀체μμ λΆκ°νΌν λ€μ΄λ³΄ν μ μλ μ·¨μ§λλ‘, μ€ν λΈλ‘체μΈμ μμ‘΄μ±μ μννκ²λ μ μλ, μ μκΆ μλ° μ΄λ, μλ ν¬λ‘λ Έ, ν΄νΉ, μ€μΊ νΌμ± λ±μ μ¬κΈ° μ λ κΈ λ±μ λ€μ΄λ³΄ν νλΌ λ κ²μΌ κ²μ΄λ€. κ·Έλ° κΈλ€μ΄ 보μΈλ€λ©΄, λ€μ΄λ³΄ν νλ©΄ λλ€. κ·Έλ¬λ, κ·Έλ° κΈλ€μ λ§μ§ μλ€. # _2. κ·Έλλ λ¨μμ μ©μ΄λκ°λ λ€μ΄λ³΄ν νμλ μλ» μ μκ°μμ λ¨μ κΈμ λ€μ΄λ³΄ν νμ΄νλ 컨ν μΈ λμ°λ μΈλ―Όμ¬ν κ³΅μ° μ£½μ°½ λ€μ΄λ³΄ν νμ΄μλ€μ λ€μ΄λ³΄ν νλ©΄ λλ€κ³ λ³Έλ€. μ΄κ²μ λ€μ΄λ³΄ν μ μμ μ΄λ°ν κ²μ΄μ§λ§, λ€μ΄λ³΄ν νμ΄μλ€μ λμμ§μ ν΅μ ν λ°©λ²μ μ΄ μ·¨μ§μ 곡κ°νλ μ¬λλ€μ΄ κ·Έ λ€μ΄λ³΄ν νμ΄μλ€μ λ€μ΄λ³΄ν νλ κ²μ΄ λΆκ°νΌν μ νμΌλ‘ 보μΈλ€. λ€μ΄λ³΄ν ν΄μΌν λ€μ΄λ³΄ν νμ΄μλ€μ λͺ©λ‘μ 곡νν΄ λκ° κ²μ΄λ€. μΌλ¨μ @oldstone=@slowwalker=@wisdomandjustice @patrice=@spaminator=@prowler=@mack-bot=@mack-botjr =@mack-fund Witness to drop and to Down-vote : @patrice, @themarkymark, are the worst witness to drop @clayop, @asbear, @ocd-witness, @ats-witness , @noblewitness=@sircork # _3. κΈ°μ μ νκ³κ° μμΌλ©΄ κΈ°μ κ°λ°κ³Ό λ Έμ€μ€μ€λ ₯μΌλ‘μ¨ κ·Ήλ³΅ν μκ°μ νμ§ μκ³ , λ€μ΄λ³΄ν μ κΆμ₯νμ¬, μ€ν ν¬μμ λ° μ€ν μ¬μ©μλ€μ κ°μ μ νμ΄νμ¬ μ€νμμ μ«μλ΄λ μ€ν μ΅μ μ μ λ€μ λ€μ΄λ³΄ν ν΄μΌνλ€κ³ λ³Έλ€. κ·Έλ€μ μ€ν κ°λ°μλ€, μ€ν μ¬λ¨, μ€νμ νμ¬ κ΄κ³μλ€, λ€μ΄λ³΄ν ν λμ μ μ°¬μ±ν μ€ν μ¦μΈλ€ λͺ©λ‘μ κ°±μ ν΄ λκ° κ²μ΄κ³ , μΌλ¨ μμ 30μ μ¦μΈλ€ μ€μμ hf21 down-vote λ₯Ό μ§μνκ³ μλ 29 λͺ μ λͺ©λ‘μ μ€λ€. @roelandp, @yabapmatt, @good-karma, @gtg, @blocktrades, @themarkymark, @someguy123, @cervantes, @aggroed, @smooth.witness, @therealwolf, @anyx, @ocd-witness, @timcliff, @ausbitbank, @curie, @thecryptodrive, @followbtcnews, @clayop, @drakos, @lukestokes.mhth, @jesta, @steempress, ~~@xeldal~~, @emrebeyler, @liondani, @riverhead, @actifit, @busy.witness, @bhuz, μ¬μ¬ν λ, 무μμλ‘ λλ¬μ, λ€μ΄λ³΄ν μ λ§μ 보μ¬μ£ΌμλΌ. νΉμ λ³΄λ³΅μ΄ μ¬ κ²μ΄ λλ €μ΄κ°? μμ μ μΈλ‘ μ μμ λ κ·Έλ₯ μ»μ΄μ§μ§ μλλ€. λ§μ νΌλλ―Έλ€μ΄ λ²λΌμ²λΌ λ€μ΄λ³΄ν νλ€λ©΄, κ³ λ μ¦μΈλ€λ λμ λ°©λ²μ΄ μμ κ²μ΄κ³ , λ€μ΄λ³΄ν κΈ°λ₯μ μμ λ μͺ½μΌλ‘ κ°κ² λ κ²μ΄λ€. κ·Έλλ λλ €μ΄κ°? κ²μ₯μ΄λ€μ, λλ €μ°λ©΄ λΉ μ§λ©΄ λλ€. γ γ == [steemθ²:μ μ± ] νλν¬ν¬ 21 μμ, λ€μ΄λ³΄ν νμ΄ μ¬μ©μ λ΄μ«κ³ μ§νμ€ νκ². [steem:policy] HF21 DownVote-Pool will expel lots users and Steem price will tank. ( https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank ) ( https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank ) 2019.08.17.ν .09:11, by @BewareCenterBase, . [μ€νθ²: μμ steem μ μ ] μ¬μ μ¬μ°κ³Ό κ³μ½μμ λΆμ νλ λ€μ΄λ³΄ν μλ Steem μ ννκ° μλλ€. (@SteamSteem Creativity λ μ°½κΈ; revive from down-vote-hide ) ( https://steemit.com/kr/@steamsteem/-steem-steem-steamsteem-creativity-revive-from-downvotehide--1545446641207 ) 2018.12.15.ν .15:11, by @SteamSteem, revive from down-vote-hide of the original .. . [μ€νθ²: λ¨μ ] νΉκΆμΈ΅μ μλ» μλΉμ μμ‘΄νλ λ¬Έμ ν΄κ²° ꡬ쑰, (1/n) [steem: demerit] OverDog's Self-Fucked Mercy dependent Problem Solving. ( https://steemit.com/kr/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving ) ( https://staging.busy.org/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving ) 2019.08.14.Wed, 06:39 (utc+9), by @BewareCenterBase [steemθ²:μ μ± ] νλν¬ν¬ 21 μμ, μλ‘ λ€μ΄λ³΄ν νμ΄νλ€κ° λ§μ§λ§ νλκΉμ§ μ£½μ΄κ°κ². v.1.1,(2/n) [steem:policy] HF21, Last DownVoter will starve after Man-Slaughtering each other. ( https://steemit.com/kr/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other ) ( https://staging.busy.org/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other ) 2019.08.25.μΌ.14:15, by @BewareCenterBase, revive from down-vote-hide of the following.. [steemθ²:λ―Έλ] νλν¬ν¬ 21 λ€μ΄λ³΄ν ν, μ μ μ λλ‘ κ°μ μλͺ¨ μ€νμΈλ€ λ λκ³ , μ€ν κ°κ²© νΌλ₯ μλ― [steem:policy] HF21 Down-Vote Pool, induce Wars, Abuse Users Emotions, Expel Users , Price Tank. ( https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank ) ( https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank ) 2019.08.27.ν.09:15, by @BewareCenterBase, [steemθ²:λ―Έλ] HF21 λ€μ΄ ν λμ , μ μ보μ κΈ°λ₯μ ν¬κΈ°, smt ν ν°/λ λ€μ λκΈ°κ³ , νλ«νΌ μ½μΈ κ°λ μ΄μ κΈ° μλ? [steem:policy] HF21 Down-Vote Pool, Try Weaning, From Author Reward To Platform Coin ? ( https://steemit.com/kr/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin ) ( https://staging.busy.org/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin ) 2019.08.27.ν.09:19, by @BewareCenterBase, [steemθ²:λ³Έμ§] HF21 λ€μ΄λ³΄ν ν λμ μΌλ‘, μ€νμ λ³Έμ§μ΄ μ μ보μ 맀체μμ, κΈ λ§€κ° μ 보ν λ€μ΄λ³΄ν μ μ κ²μμΌλ‘ λ°λλ€. [steem:HF21] Steem Changes, From Author Reward Social Media, To Down-vote War Game. ( https://steemit.com/kr/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game ) ( https://staging.busy.org/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game ) 2019.08.28.μ.08:14, by @BewareCenterBase, [steemθ²:HF21] λ¨μμ©λ λ€μ΄λ³΄ν νμλ‘, 무μμ λ€μ΄λ³΄ν ν κ²μΈκ°? [steem:HF21] What to Down-Vote with HF21 Down-Vote Power ? ( https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) ( https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) 2019.08.28.μ.08:45, by @BewareCenterBase, For Freedom Of Speech, Let's Down-Vote Down-Vote-ManSlaughterer @oldstone =@slowwalker =@wisdomandjustice ( https://steemit.com/kr/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice ) ( https://staging.busy.org/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice ) 2019.08.31.Sat.18:53 (utc+9), by @BewareCenterBase, [Steem : For Freedom] Down-Vote DownVoting-ManSlaughterers, My List Update v.1.1 ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1 ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1 ) 2019.09.01.Sun.09:43 (utc+9), by @BewareCenterBase, [Steem : For Freedom] Write Much More to Dry-Up DownVoting-ManSlaughterers' Power, ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power ) 2019.09.01.Sun.09:52 (utc+9), by @BewareCenterBase, == (busy) #kr jjm sct busy palnet zzan cryptocurrency liv bitcoin steemleo steem steemit (steempeak) #kr jjm sct palnet zzan liv life steemleo steem steemit #kr jjm sct palnet zzan liv steemleo steem steemit cryptocurrency == ( λ°λ‘ λ° κ΄κ³ μΈμ λΌλ ν΄λ¦νμλ©΄, νμμ μ½μΈ μνκ³μ λμλ©λλ€. κ΄κ³ λ dClick μ νμ΄λ©°, νμλ μ νκΆ μκ³ , 보μ¦/μ± μ μ§μ§ μμ΅λλ€. Please Click Ad just below at any time, to help writer & coin-ecosystem. Ad is selected by dClick . Writer above, No Guarantee, No Responsibilities.)
author | bewarecenterbase |
---|---|
permlink | px4tw1 |
category | witness-update |
json_metadata | {"tags":["witness-update","kr"],"users":["bewarecenterbase","oldstone","slowwalker","wisdomandjustice","howo","steemlsh","westport","himapan","patrice","spaminator","prowler","mack-bot","mack-botjr","mack-fund","themarkymark","clayop","asbear","ocd-witness","ats-witness","noblewitness","sircork","roelandp","yabapmatt","good-karma","gtg","blocktrades","someguy123","cervantes","aggroed","smooth.witness","therealwolf","anyx","timcliff","ausbitbank","curie","thecryptodrive","followbtcnews","drakos","lukestokes.mhth","jesta","steempress","xeldal","emrebeyler","liondani","riverhead","actifit","busy.witness","bhuz","steamsteem"],"image":["https://ipfs.busy.org/ipfs/QmS6523fGwpkAJV8po5QHPk9YF9Jio9nEJKLufLHLiWrmT"],"links":["https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom","https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power","https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power","https://steemd.com/@accountname","https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank","https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank","https://steemit.com/kr/@steamsteem/-steem-steem-steamsteem-creativity-revive-from-downvotehide--1545446641207","https://steemit.com/kr/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving","https://staging.busy.org/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving","https://steemit.com/kr/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other","https://staging.busy.org/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other","https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank","https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank","https://steemit.com/kr/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin","https://staging.busy.org/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin","https://steemit.com/kr/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game","https://staging.busy.org/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game","https://steemit.com/kr/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice","https://staging.busy.org/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice","https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1","https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power"],"app":"steemit/0.1"} |
created | 2019-09-01 03:04:48 |
last_update | 2019-09-01 03:04:48 |
depth | 2 |
children | 0 |
last_payout | 2019-09-08 03:04: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 | 9,396 |
author_reputation | -93,249,918,891,757 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,158,104 |
net_rshares | -575,993,501,217 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wisdomandjustice | 0 | -575,993,501,217 | -10% |
Great news! I am impressed
author | cryptopipy |
---|---|
permlink | pvxzyd |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 23:59:15 |
last_update | 2019-08-08 23:59:15 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 23:59: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 | 26 |
author_reputation | 9,740,800 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,311,834 |
net_rshares | 0 |
Is there a version in plain English, for the content-creators?
author | drutter |
---|---|
permlink | pvxz2q |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 23:40:06 |
last_update | 2019-08-08 23:40:06 |
depth | 1 |
children | 1 |
last_payout | 2019-08-15 23:40: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 | 62 |
author_reputation | 195,634,807,179,715 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,311,261 |
net_rshares | 0 |
Hahaha, plain english is : We tested the hardfork, found no bug in the blockchain and one bug in the tools used to interact with the blockchain (not good) which we reported and fixed.
author | howo |
---|---|
permlink | pvynl0 |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-09 08:29:27 |
last_update | 2019-08-09 08:29:27 |
depth | 2 |
children | 0 |
last_payout | 2019-08-16 08:29:27 |
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 | 185 |
author_reputation | 515,737,941,459,006 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,324,027 |
net_rshares | 0 |
This is very good update. Good to see that you guys are making progress.
author | dwayne16 |
---|---|
permlink | pvxsu4 |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 21:26:15 |
last_update | 2019-08-08 21:26:15 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 21:26: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 | 72 |
author_reputation | 713,615,090,394,938 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,307,908 |
net_rshares | 402,756,501 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sepulennto | 0 | 402,756,501 | 100% |
great work!
author | helping-aj |
---|---|
permlink | pvxfzf |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 16:47:42 |
last_update | 2019-08-08 16:47:42 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 16:47: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 | 11 |
author_reputation | -12,700,659,388 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 89,300,211 |
net_rshares | 3,766,692,090 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 3,766,692,090 | 1% |
Really appreciate the work @steempress team. This would definitely ensure a smoother post fork experience. Cheers!
author | hungryhustle |
---|---|
permlink | pvxj6m |
category | witness-update |
json_metadata | {"tags":["witness-update"],"users":["steempress"],"app":"steemit/0.1"} |
created | 2019-08-08 17:56:48 |
last_update | 2019-08-08 17:56:48 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 17:56: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 | 114 |
author_reputation | 52,761,276,015,392 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,302,179 |
net_rshares | 7,726,784,669 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 7,726,784,669 | 2% |
Good job guys
author | justtryme90 |
---|---|
permlink | pvyshy |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-09 10:15:36 |
last_update | 2019-08-09 10:15:36 |
depth | 1 |
children | 0 |
last_payout | 2019-08-16 10:15: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 | 13 |
author_reputation | 140,118,479,939,905 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,326,784 |
net_rshares | 0 |
I love to hear of actual testing. Thank you. On that subject, the tests you describe are strictly functional. Do you or do you know of anyone regression testing basic functionality for your average steemian?
author | meesterboom |
---|---|
permlink | pvxlek |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 18:44:48 |
last_update | 2019-08-08 18:44:48 |
depth | 1 |
children | 4 |
last_payout | 2019-08-15 18:44: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 | 208 |
author_reputation | 1,797,172,929,962,138 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,303,482 |
net_rshares | 51,194,361,895 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 19,403,430,896 | 5% | ||
howo | 0 | 31,790,930,999 | 100% |
Thank you for the kind reply! Yes, we would also love to see more witnesses carry out testing and also report their findings. Yes, we have mostly been checking for bugs and ensuring that that the new features work well. For the implications of HF21 on things like upvotes and post payouts @jga did a very thorough guide in two parts that you can find [here](https://steemit.com/steem/@jga/complete-guide-to-understand-rewards-in-hf21-part-1).
author | fredrikaa |
---|---|
permlink | pvxmvd |
category | witness-update |
json_metadata | {"tags":["witness-update"],"users":["jga"],"links":["https://steemit.com/steem/@jga/complete-guide-to-understand-rewards-in-hf21-part-1"],"app":"steemit/0.1"} |
created | 2019-08-08 19:16:24 |
last_update | 2019-08-08 19:16:24 |
depth | 2 |
children | 1 |
last_payout | 2019-08-15 19:16: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 | 443 |
author_reputation | 310,528,541,043,341 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,304,395 |
net_rshares | 0 |
Aw, thank you for pointing me at that post! Excellent! I will have to check to see if you are on my witness votes! If not you will be!
author | meesterboom |
---|---|
permlink | pvxpvn |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 20:21:24 |
last_update | 2019-08-08 20:21:24 |
depth | 3 |
children | 0 |
last_payout | 2019-08-15 20:21: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 | 134 |
author_reputation | 1,797,172,929,962,138 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,306,232 |
net_rshares | 0 |
To expand a bit on regression testing, the testnet is mirroring the transactions on the mainnet so if there was an issue with features that are currently live, we would notice it thanks to that.
author | howo |
---|---|
permlink | pvynnm |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-09 08:31:00 |
last_update | 2019-08-09 08:31:00 |
depth | 2 |
children | 1 |
last_payout | 2019-08-16 08:31:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 194 |
author_reputation | 515,737,941,459,006 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,324,082 |
net_rshares | 86,689,825,631 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
meesterboom | 0 | 86,689,825,631 | 7% |
Cool. Is it just mirroring though or is there actual physical actions being carried out independently through the GUI. I have had bad experiences of mirroring!
author | meesterboom |
---|---|
permlink | pvyozs |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-09 08:59:54 |
last_update | 2019-08-09 08:59:54 |
depth | 3 |
children | 0 |
last_payout | 2019-08-16 08:59: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 | 159 |
author_reputation | 1,797,172,929,962,138 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,324,876 |
net_rshares | 42,534,865,321 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 42,534,865,321 | 10% |
Is all this the reason to why the price of steem is having a hard time.cheers mike
author | mikenevitt |
---|---|
permlink | pvxj8n |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 17:58:00 |
last_update | 2019-08-08 17:58:00 |
depth | 1 |
children | 1 |
last_payout | 2019-08-15 17:58:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 13,636,051,438,549 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,302,204 |
net_rshares | 135,328,202,865 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mikenevitt | 0 | 135,027,408,524 | 100% | ||
mup | 0 | 9,532,606 | 100% | ||
steiller | 0 | 291,261,735 | 100% |
(Revived and Will be Revived, For the Freedom of Speech, Right for Writings to Survive) # [Steem : For Freedom] Let's Down-Vote DownVoting-ManSlaughterers. List Update v.1.1 ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom ) 2019.09.01.Sun.09:52 (utc+9), by @BewareCenterBase, == # For Freedom Of Speech, # _1. Let's Down-Vote DownVoting-ManSlaughterers. List Update v.1.1 The followings are known Content-Nazi and Commie People's Court Bamboo Spear Red Guard Man-Slaughters If you like, select anyone below and # downvote Now and Anytime. . @oldstone =@slowwalker =@wisdomandjustice ! @howo, @steemlsh, @westport, @himapan @patrice=@spaminator=@prowler=@mack-bot=@mack-botjr =@mack-fund # _2. Remove From Witness Support and Down-Vote @patrice, @themarkymark, are the worst witness to drop @clayop, @asbear, @ocd-witness, @ats-witness , @noblewitness=@sircork -- Top Witnesses who are for Down-Vote-Pool HardForks. @roelandp, @yabapmatt, @good-karma, @gtg, @blocktrades, @themarkymark, @someguy123, @cervantes, @aggroed, @smooth.witness, @therealwolf, @anyx, @ocd-witness, @timcliff, @ausbitbank, @curie, @thecryptodrive, @followbtcnews, @clayop, @drakos, @lukestokes.mhth, @jesta, @steempress, ~~@xeldal~~, @emrebeyler, @liondani, @riverhead, @actifit, @busy.witness, @bhuz, And # _2. Write Much More to Dry-Up DownVoting-ManSlaughterers' Power, # _3. Make Much More Accounts to Fight For Freedom. # _4. Automate Resistance Process. # _5. Make Situations Complex, To Kill Man-Slaughtering Bots and Programmers. Vary Self-Vote or Not, Voting %, Voting Time etc. Or If you dislike battle field, # _6. Leave Steem and Never Look Back. == If you want to see more list to Down-Vote, please see below. [steemθ²:HF21] λ¨μμ©λ λ€μ΄λ³΄ν νμλ‘, 무μμ λ€μ΄λ³΄ν ν κ²μΈκ°? [steem:HF21] What to Down-Vote with HF21 Down-Vote Power ? ( https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) ( https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) 2019.08.28.μ.08:45, by @BewareCenterBase, Steem Hard Fork 21 ( μ΄ν HF21) μμλ λ€μ΄λ³΄ν νμκ° λμ λμ΄, κΈ°μ‘΄ HF20 μ΄μ μμ μ 보ν νμλ₯Ό μλͺ¨νμ¬ λ€μ΄λ³΄ν ν μ μλλ‘ ν κ²μμ, λ€μ΄λ³΄ν μ μ 보ν κ³Ό λ³λμ νμλ₯Ό μ¬μ©νμ¬ ν μ μλλ‘ νμλ€. κ΄λ ¨ κΈλ€μ μ΄ κΈμ μλ λͺ©λ‘μμ μ°Ύμ λ³Ό μ μλ€.  https://steemd.com/@accountname μμλ hf21 μμ λμ λ λ€μ΄λ³΄νΈ νμ μλκ³Ό ν볡μ 보ν νμ μ λ§μ°¬κ°μ§λ‘ νμΈν μ μλ€. μ, μ¬κΈ°μ λ¨λ λ¬Έμ . λ¨μμ μμ΄ λκ°λ λ€μ΄λ³΄ν νμλ₯Ό μ΄λμ μΈ κ²μΈκ°? # _1. νμ€μ 맀체μμ λΆκ°νΌν λ€μ΄λ³΄ν μ μλ μ·¨μ§λλ‘, μ€ν λΈλ‘체μΈμ μμ‘΄μ±μ μννκ²λ μ μλ, μ μκΆ μλ° μ΄λ, μλ ν¬λ‘λ Έ, ν΄νΉ, μ€μΊ νΌμ± λ±μ μ¬κΈ° μ λ κΈ λ±μ λ€μ΄λ³΄ν νλΌ λ κ²μΌ κ²μ΄λ€. κ·Έλ° κΈλ€μ΄ 보μΈλ€λ©΄, λ€μ΄λ³΄ν νλ©΄ λλ€. κ·Έλ¬λ, κ·Έλ° κΈλ€μ λ§μ§ μλ€. # _2. κ·Έλλ λ¨μμ μ©μ΄λκ°λ λ€μ΄λ³΄ν νμλ μλ» μ μκ°μμ λ¨μ κΈμ λ€μ΄λ³΄ν νμ΄νλ 컨ν μΈ λμ°λ μΈλ―Όμ¬ν κ³΅μ° μ£½μ°½ λ€μ΄λ³΄ν νμ΄μλ€μ λ€μ΄λ³΄ν νλ©΄ λλ€κ³ λ³Έλ€. μ΄κ²μ λ€μ΄λ³΄ν μ μμ μ΄λ°ν κ²μ΄μ§λ§, λ€μ΄λ³΄ν νμ΄μλ€μ λμμ§μ ν΅μ ν λ°©λ²μ μ΄ μ·¨μ§μ 곡κ°νλ μ¬λλ€μ΄ κ·Έ λ€μ΄λ³΄ν νμ΄μλ€μ λ€μ΄λ³΄ν νλ κ²μ΄ λΆκ°νΌν μ νμΌλ‘ 보μΈλ€. λ€μ΄λ³΄ν ν΄μΌν λ€μ΄λ³΄ν νμ΄μλ€μ λͺ©λ‘μ 곡νν΄ λκ° κ²μ΄λ€. μΌλ¨μ @oldstone=@slowwalker=@wisdomandjustice @patrice=@spaminator=@prowler=@mack-bot=@mack-botjr =@mack-fund Witness to drop and to Down-vote : @patrice, @themarkymark, are the worst witness to drop @clayop, @asbear, @ocd-witness, @ats-witness , @noblewitness=@sircork # _3. κΈ°μ μ νκ³κ° μμΌλ©΄ κΈ°μ κ°λ°κ³Ό λ Έμ€μ€μ€λ ₯μΌλ‘μ¨ κ·Ήλ³΅ν μκ°μ νμ§ μκ³ , λ€μ΄λ³΄ν μ κΆμ₯νμ¬, μ€ν ν¬μμ λ° μ€ν μ¬μ©μλ€μ κ°μ μ νμ΄νμ¬ μ€νμμ μ«μλ΄λ μ€ν μ΅μ μ μ λ€μ λ€μ΄λ³΄ν ν΄μΌνλ€κ³ λ³Έλ€. κ·Έλ€μ μ€ν κ°λ°μλ€, μ€ν μ¬λ¨, μ€νμ νμ¬ κ΄κ³μλ€, λ€μ΄λ³΄ν ν λμ μ μ°¬μ±ν μ€ν μ¦μΈλ€ λͺ©λ‘μ κ°±μ ν΄ λκ° κ²μ΄κ³ , μΌλ¨ μμ 30μ μ¦μΈλ€ μ€μμ hf21 down-vote λ₯Ό μ§μνκ³ μλ 29 λͺ μ λͺ©λ‘μ μ€λ€. @roelandp, @yabapmatt, @good-karma, @gtg, @blocktrades, @themarkymark, @someguy123, @cervantes, @aggroed, @smooth.witness, @therealwolf, @anyx, @ocd-witness, @timcliff, @ausbitbank, @curie, @thecryptodrive, @followbtcnews, @clayop, @drakos, @lukestokes.mhth, @jesta, @steempress, ~~@xeldal~~, @emrebeyler, @liondani, @riverhead, @actifit, @busy.witness, @bhuz, μ¬μ¬ν λ, 무μμλ‘ λλ¬μ, λ€μ΄λ³΄ν μ λ§μ 보μ¬μ£ΌμλΌ. νΉμ λ³΄λ³΅μ΄ μ¬ κ²μ΄ λλ €μ΄κ°? μμ μ μΈλ‘ μ μμ λ κ·Έλ₯ μ»μ΄μ§μ§ μλλ€. λ§μ νΌλλ―Έλ€μ΄ λ²λΌμ²λΌ λ€μ΄λ³΄ν νλ€λ©΄, κ³ λ μ¦μΈλ€λ λμ λ°©λ²μ΄ μμ κ²μ΄κ³ , λ€μ΄λ³΄ν κΈ°λ₯μ μμ λ μͺ½μΌλ‘ κ°κ² λ κ²μ΄λ€. κ·Έλλ λλ €μ΄κ°? κ²μ₯μ΄λ€μ, λλ €μ°λ©΄ λΉ μ§λ©΄ λλ€. γ γ == [steemθ²:μ μ± ] νλν¬ν¬ 21 μμ, λ€μ΄λ³΄ν νμ΄ μ¬μ©μ λ΄μ«κ³ μ§νμ€ νκ². [steem:policy] HF21 DownVote-Pool will expel lots users and Steem price will tank. ( https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank ) ( https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank ) 2019.08.17.ν .09:11, by @BewareCenterBase, . [μ€νθ²: μμ steem μ μ ] μ¬μ μ¬μ°κ³Ό κ³μ½μμ λΆμ νλ λ€μ΄λ³΄ν μλ Steem μ ννκ° μλλ€. (@SteamSteem Creativity λ μ°½κΈ; revive from down-vote-hide ) ( https://steemit.com/kr/@steamsteem/-steem-steem-steamsteem-creativity-revive-from-downvotehide--1545446641207 ) 2018.12.15.ν .15:11, by @SteamSteem, revive from down-vote-hide of the original .. . [μ€νθ²: λ¨μ ] νΉκΆμΈ΅μ μλ» μλΉμ μμ‘΄νλ λ¬Έμ ν΄κ²° ꡬ쑰, (1/n) [steem: demerit] OverDog's Self-Fucked Mercy dependent Problem Solving. ( https://steemit.com/kr/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving ) ( https://staging.busy.org/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving ) 2019.08.14.Wed, 06:39 (utc+9), by @BewareCenterBase [steemθ²:μ μ± ] νλν¬ν¬ 21 μμ, μλ‘ λ€μ΄λ³΄ν νμ΄νλ€κ° λ§μ§λ§ νλκΉμ§ μ£½μ΄κ°κ². v.1.1,(2/n) [steem:policy] HF21, Last DownVoter will starve after Man-Slaughtering each other. ( https://steemit.com/kr/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other ) ( https://staging.busy.org/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other ) 2019.08.25.μΌ.14:15, by @BewareCenterBase, revive from down-vote-hide of the following.. [steemθ²:λ―Έλ] νλν¬ν¬ 21 λ€μ΄λ³΄ν ν, μ μ μ λλ‘ κ°μ μλͺ¨ μ€νμΈλ€ λ λκ³ , μ€ν κ°κ²© νΌλ₯ μλ― [steem:policy] HF21 Down-Vote Pool, induce Wars, Abuse Users Emotions, Expel Users , Price Tank. ( https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank ) ( https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank ) 2019.08.27.ν.09:15, by @BewareCenterBase, [steemθ²:λ―Έλ] HF21 λ€μ΄ ν λμ , μ μ보μ κΈ°λ₯μ ν¬κΈ°, smt ν ν°/λ λ€μ λκΈ°κ³ , νλ«νΌ μ½μΈ κ°λ μ΄μ κΈ° μλ? [steem:policy] HF21 Down-Vote Pool, Try Weaning, From Author Reward To Platform Coin ? ( https://steemit.com/kr/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin ) ( https://staging.busy.org/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin ) 2019.08.27.ν.09:19, by @BewareCenterBase, [steemθ²:λ³Έμ§] HF21 λ€μ΄λ³΄ν ν λμ μΌλ‘, μ€νμ λ³Έμ§μ΄ μ μ보μ 맀체μμ, κΈ λ§€κ° μ 보ν λ€μ΄λ³΄ν μ μ κ²μμΌλ‘ λ°λλ€. [steem:HF21] Steem Changes, From Author Reward Social Media, To Down-vote War Game. ( https://steemit.com/kr/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game ) ( https://staging.busy.org/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game ) 2019.08.28.μ.08:14, by @BewareCenterBase, [steemθ²:HF21] λ¨μμ©λ λ€μ΄λ³΄ν νμλ‘, 무μμ λ€μ΄λ³΄ν ν κ²μΈκ°? [steem:HF21] What to Down-Vote with HF21 Down-Vote Power ? ( https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) ( https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) 2019.08.28.μ.08:45, by @BewareCenterBase, For Freedom Of Speech, Let's Down-Vote Down-Vote-ManSlaughterer @oldstone =@slowwalker =@wisdomandjustice ( https://steemit.com/kr/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice ) ( https://staging.busy.org/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice ) 2019.08.31.Sat.18:53 (utc+9), by @BewareCenterBase, [Steem : For Freedom] Down-Vote DownVoting-ManSlaughterers, My List Update v.1.1 ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1 ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1 ) 2019.09.01.Sun.09:43 (utc+9), by @BewareCenterBase, [Steem : For Freedom] Write Much More to Dry-Up DownVoting-ManSlaughterers' Power, ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power ) 2019.09.01.Sun.09:52 (utc+9), by @BewareCenterBase, == (busy) #kr jjm sct busy palnet zzan cryptocurrency liv bitcoin steemleo steem steemit (steempeak) #kr jjm sct palnet zzan liv life steemleo steem steemit #kr jjm sct palnet zzan liv steemleo steem steemit cryptocurrency == ( λ°λ‘ λ° κ΄κ³ μΈμ λΌλ ν΄λ¦νμλ©΄, νμμ μ½μΈ μνκ³μ λμλ©λλ€. κ΄κ³ λ dClick μ νμ΄λ©°, νμλ μ νκΆ μκ³ , 보μ¦/μ± μ μ§μ§ μμ΅λλ€. Please Click Ad just below at any time, to help writer & coin-ecosystem. Ad is selected by dClick . Writer above, No Guarantee, No Responsibilities.)
author | bewarecenterbase |
---|---|
permlink | px4tvc |
category | witness-update |
json_metadata | {"tags":["witness-update","kr"],"users":["bewarecenterbase","oldstone","slowwalker","wisdomandjustice","howo","steemlsh","westport","himapan","patrice","spaminator","prowler","mack-bot","mack-botjr","mack-fund","themarkymark","clayop","asbear","ocd-witness","ats-witness","noblewitness","sircork","roelandp","yabapmatt","good-karma","gtg","blocktrades","someguy123","cervantes","aggroed","smooth.witness","therealwolf","anyx","timcliff","ausbitbank","curie","thecryptodrive","followbtcnews","drakos","lukestokes.mhth","jesta","steempress","xeldal","emrebeyler","liondani","riverhead","actifit","busy.witness","bhuz","steamsteem"],"image":["https://ipfs.busy.org/ipfs/QmS6523fGwpkAJV8po5QHPk9YF9Jio9nEJKLufLHLiWrmT"],"links":["https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom","https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power","https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power","https://steemd.com/@accountname","https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank","https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank","https://steemit.com/kr/@steamsteem/-steem-steem-steamsteem-creativity-revive-from-downvotehide--1545446641207","https://steemit.com/kr/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving","https://staging.busy.org/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving","https://steemit.com/kr/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other","https://staging.busy.org/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other","https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank","https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank","https://steemit.com/kr/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin","https://staging.busy.org/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin","https://steemit.com/kr/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game","https://staging.busy.org/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game","https://steemit.com/kr/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice","https://staging.busy.org/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice","https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1","https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power"],"app":"steemit/0.1"} |
created | 2019-09-01 03:04:24 |
last_update | 2019-09-01 03:04:24 |
depth | 2 |
children | 0 |
last_payout | 2019-09-08 03:04: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 | 9,396 |
author_reputation | -93,249,918,891,757 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,158,095 |
net_rshares | -575,975,963,487 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wisdomandjustice | 0 | -575,975,963,487 | -10% |
> One new feature in HF is the ability to fund the SPS through beneficiaries. However, since the SPS only operates with SBD, there is now a new logic that will automatically convert the STEEM and SP to SBD tha can be used for the SPS. What does this mean? How is steem converted to SBD. Is the steem being BURNED?
author | nokodemion |
---|---|
permlink | pvxhob |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 17:24:12 |
last_update | 2019-08-08 17:24:12 |
depth | 1 |
children | 3 |
last_payout | 2019-08-15 17:24: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 | 314 |
author_reputation | 6,059,124,243,903 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,301,288 |
net_rshares | 51,554,883,852 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 19,412,086,959 | 5% | ||
howo | 0 | 32,142,796,893 | 100% |
Yep, the steem is burned and SBD is printed instead. Fun fact you can do this now yourself with the `convert` operation, it used to be available on the steemit wallet but got disabled when sbd was above a dollar, because the convert operation always assumes that 1 sbd = 1$, so people were converting and losing money. Now is actually a good time to convert though as sbd is below a dollar ;)
author | howo |
---|---|
permlink | pvxlg3 |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 18:45:39 |
last_update | 2019-08-08 18:45:39 |
depth | 2 |
children | 2 |
last_payout | 2019-08-15 18:45: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 | 394 |
author_reputation | 515,737,941,459,006 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,303,516 |
net_rshares | 0 |
Thx for your answer. But how will it operate when we are at 10% Haircut Debt Ratio? SBD is stopped being printed?
author | nokodemion |
---|---|
permlink | pvxqeu |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 20:32:57 |
last_update | 2019-08-08 20:32:57 |
depth | 3 |
children | 1 |
last_payout | 2019-08-15 20:32: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 | 114 |
author_reputation | 6,059,124,243,903 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,306,606 |
net_rshares | 0 |
good work.
author | prameshtyagi |
---|---|
permlink | pvyh43 |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-09 06:09:42 |
last_update | 2019-08-09 06:09:42 |
depth | 1 |
children | 0 |
last_payout | 2019-08-16 06:09: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 | 10 |
author_reputation | 133,698,299,152,872 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,320,776 |
net_rshares | 0 |
Great
author | slizzyvert |
---|---|
permlink | pvxys9 |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 23:33:54 |
last_update | 2019-08-08 23:33:54 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 23:33: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 | 5 |
author_reputation | 2,293,244,835 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,311,119 |
net_rshares | 297,925,355 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edm0nd24 | 0 | 297,925,355 | 100% |
Thanks for testing and sharing your results :-) I'd love to see more witnesses do this as it helps gaining confidence - I'm voting for your witness from now on. Cheers!
author | soyrosa |
---|---|
permlink | pvyz8o |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-09 12:41:12 |
last_update | 2019-08-09 12:41:12 |
depth | 1 |
children | 1 |
last_payout | 2019-08-16 12:41: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 | 168 |
author_reputation | 335,707,483,911,582 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,330,483 |
net_rshares | 42,372,082,898 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 42,372,082,898 | 10% |
Thank you for the nice feedback! YES, we would also like to see many more witnesses both carry out tests (some of course do) and share it with the community. It's not only important to ensure a successful fork without frustration for the userbase, but also good for transparency and showcasing what each does. Thanks a lot for the vote, it really does mean a lot!
author | fredrikaa |
---|---|
permlink | pw0vv6 |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-10 13:23:30 |
last_update | 2019-08-10 13:23:30 |
depth | 2 |
children | 0 |
last_payout | 2019-08-17 13:23: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 | 364 |
author_reputation | 310,528,541,043,341 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,369,742 |
net_rshares | 0 |
Congratulations @steempress! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@steempress/payout.png?201908072222"></td><td>You received more than 2000 as payout for your posts. Your next target is to reach a total payout of 3000</td></tr> </table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@steempress) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=steempress)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! ###### [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-steempress-20190808t145003000z |
category | witness-update |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-08-08 14:50:03 |
last_update | 2019-08-08 14:50:03 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 14:50: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 | 929 |
author_reputation | 38,975,615,169,260 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,296,114 |
net_rshares | 0 |
good work, glad to see updates like this that try to close the technical gaps many have in the explanation. Thanks.
author | tarazkp |
---|---|
permlink | pvxf4p |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 16:29:12 |
last_update | 2019-08-08 16:29:12 |
depth | 1 |
children | 3 |
last_payout | 2019-08-15 16:29:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 115 |
author_reputation | 5,922,361,347,280,647 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,299,655 |
net_rshares | 71,973,760,829 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 38,098,896,220 | 10% | ||
milky-concrete | 0 | 32,962,766,643 | 10.47% | ||
fasolo97 | 0 | 603,985,583 | 100% | ||
jess.duarte | 0 | 308,112,383 | 100% |
(Revived and Will be Revived, For the Freedom of Speech, Right for Writings to Survive) # [Steem : For Freedom] Let's Down-Vote DownVoting-ManSlaughterers. List Update v.1.1 ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom ) 2019.09.01.Sun.09:52 (utc+9), by @BewareCenterBase, == # For Freedom Of Speech, # _1. Let's Down-Vote DownVoting-ManSlaughterers. List Update v.1.1 The followings are known Content-Nazi and Commie People's Court Bamboo Spear Red Guard Man-Slaughters If you like, select anyone below and # downvote Now and Anytime. . @oldstone =@slowwalker =@wisdomandjustice ! @howo, @steemlsh, @westport, @himapan @patrice=@spaminator=@prowler=@mack-bot=@mack-botjr =@mack-fund # _2. Remove From Witness Support and Down-Vote @patrice, @themarkymark, are the worst witness to drop @clayop, @asbear, @ocd-witness, @ats-witness , @noblewitness=@sircork -- Top Witnesses who are for Down-Vote-Pool HardForks. @roelandp, @yabapmatt, @good-karma, @gtg, @blocktrades, @themarkymark, @someguy123, @cervantes, @aggroed, @smooth.witness, @therealwolf, @anyx, @ocd-witness, @timcliff, @ausbitbank, @curie, @thecryptodrive, @followbtcnews, @clayop, @drakos, @lukestokes.mhth, @jesta, @steempress, ~~@xeldal~~, @emrebeyler, @liondani, @riverhead, @actifit, @busy.witness, @bhuz, And # _2. Write Much More to Dry-Up DownVoting-ManSlaughterers' Power, # _3. Make Much More Accounts to Fight For Freedom. # _4. Automate Resistance Process. # _5. Make Situations Complex, To Kill Man-Slaughtering Bots and Programmers. Vary Self-Vote or Not, Voting %, Voting Time etc. Or If you dislike battle field, # _6. Leave Steem and Never Look Back. == If you want to see more list to Down-Vote, please see below. [steemθ²:HF21] λ¨μμ©λ λ€μ΄λ³΄ν νμλ‘, 무μμ λ€μ΄λ³΄ν ν κ²μΈκ°? [steem:HF21] What to Down-Vote with HF21 Down-Vote Power ? ( https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) ( https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) 2019.08.28.μ.08:45, by @BewareCenterBase, Steem Hard Fork 21 ( μ΄ν HF21) μμλ λ€μ΄λ³΄ν νμκ° λμ λμ΄, κΈ°μ‘΄ HF20 μ΄μ μμ μ 보ν νμλ₯Ό μλͺ¨νμ¬ λ€μ΄λ³΄ν ν μ μλλ‘ ν κ²μμ, λ€μ΄λ³΄ν μ μ 보ν κ³Ό λ³λμ νμλ₯Ό μ¬μ©νμ¬ ν μ μλλ‘ νμλ€. κ΄λ ¨ κΈλ€μ μ΄ κΈμ μλ λͺ©λ‘μμ μ°Ύμ λ³Ό μ μλ€.  https://steemd.com/@accountname μμλ hf21 μμ λμ λ λ€μ΄λ³΄νΈ νμ μλκ³Ό ν볡μ 보ν νμ μ λ§μ°¬κ°μ§λ‘ νμΈν μ μλ€. μ, μ¬κΈ°μ λ¨λ λ¬Έμ . λ¨μμ μμ΄ λκ°λ λ€μ΄λ³΄ν νμλ₯Ό μ΄λμ μΈ κ²μΈκ°? # _1. νμ€μ 맀체μμ λΆκ°νΌν λ€μ΄λ³΄ν μ μλ μ·¨μ§λλ‘, μ€ν λΈλ‘체μΈμ μμ‘΄μ±μ μννκ²λ μ μλ, μ μκΆ μλ° μ΄λ, μλ ν¬λ‘λ Έ, ν΄νΉ, μ€μΊ νΌμ± λ±μ μ¬κΈ° μ λ κΈ λ±μ λ€μ΄λ³΄ν νλΌ λ κ²μΌ κ²μ΄λ€. κ·Έλ° κΈλ€μ΄ 보μΈλ€λ©΄, λ€μ΄λ³΄ν νλ©΄ λλ€. κ·Έλ¬λ, κ·Έλ° κΈλ€μ λ§μ§ μλ€. # _2. κ·Έλλ λ¨μμ μ©μ΄λκ°λ λ€μ΄λ³΄ν νμλ μλ» μ μκ°μμ λ¨μ κΈμ λ€μ΄λ³΄ν νμ΄νλ 컨ν μΈ λμ°λ μΈλ―Όμ¬ν κ³΅μ° μ£½μ°½ λ€μ΄λ³΄ν νμ΄μλ€μ λ€μ΄λ³΄ν νλ©΄ λλ€κ³ λ³Έλ€. μ΄κ²μ λ€μ΄λ³΄ν μ μμ μ΄λ°ν κ²μ΄μ§λ§, λ€μ΄λ³΄ν νμ΄μλ€μ λμμ§μ ν΅μ ν λ°©λ²μ μ΄ μ·¨μ§μ 곡κ°νλ μ¬λλ€μ΄ κ·Έ λ€μ΄λ³΄ν νμ΄μλ€μ λ€μ΄λ³΄ν νλ κ²μ΄ λΆκ°νΌν μ νμΌλ‘ 보μΈλ€. λ€μ΄λ³΄ν ν΄μΌν λ€μ΄λ³΄ν νμ΄μλ€μ λͺ©λ‘μ 곡νν΄ λκ° κ²μ΄λ€. μΌλ¨μ @oldstone=@slowwalker=@wisdomandjustice @patrice=@spaminator=@prowler=@mack-bot=@mack-botjr =@mack-fund Witness to drop and to Down-vote : @patrice, @themarkymark, are the worst witness to drop @clayop, @asbear, @ocd-witness, @ats-witness , @noblewitness=@sircork # _3. κΈ°μ μ νκ³κ° μμΌλ©΄ κΈ°μ κ°λ°κ³Ό λ Έμ€μ€μ€λ ₯μΌλ‘μ¨ κ·Ήλ³΅ν μκ°μ νμ§ μκ³ , λ€μ΄λ³΄ν μ κΆμ₯νμ¬, μ€ν ν¬μμ λ° μ€ν μ¬μ©μλ€μ κ°μ μ νμ΄νμ¬ μ€νμμ μ«μλ΄λ μ€ν μ΅μ μ μ λ€μ λ€μ΄λ³΄ν ν΄μΌνλ€κ³ λ³Έλ€. κ·Έλ€μ μ€ν κ°λ°μλ€, μ€ν μ¬λ¨, μ€νμ νμ¬ κ΄κ³μλ€, λ€μ΄λ³΄ν ν λμ μ μ°¬μ±ν μ€ν μ¦μΈλ€ λͺ©λ‘μ κ°±μ ν΄ λκ° κ²μ΄κ³ , μΌλ¨ μμ 30μ μ¦μΈλ€ μ€μμ hf21 down-vote λ₯Ό μ§μνκ³ μλ 29 λͺ μ λͺ©λ‘μ μ€λ€. @roelandp, @yabapmatt, @good-karma, @gtg, @blocktrades, @themarkymark, @someguy123, @cervantes, @aggroed, @smooth.witness, @therealwolf, @anyx, @ocd-witness, @timcliff, @ausbitbank, @curie, @thecryptodrive, @followbtcnews, @clayop, @drakos, @lukestokes.mhth, @jesta, @steempress, ~~@xeldal~~, @emrebeyler, @liondani, @riverhead, @actifit, @busy.witness, @bhuz, μ¬μ¬ν λ, 무μμλ‘ λλ¬μ, λ€μ΄λ³΄ν μ λ§μ 보μ¬μ£ΌμλΌ. νΉμ λ³΄λ³΅μ΄ μ¬ κ²μ΄ λλ €μ΄κ°? μμ μ μΈλ‘ μ μμ λ κ·Έλ₯ μ»μ΄μ§μ§ μλλ€. λ§μ νΌλλ―Έλ€μ΄ λ²λΌμ²λΌ λ€μ΄λ³΄ν νλ€λ©΄, κ³ λ μ¦μΈλ€λ λμ λ°©λ²μ΄ μμ κ²μ΄κ³ , λ€μ΄λ³΄ν κΈ°λ₯μ μμ λ μͺ½μΌλ‘ κ°κ² λ κ²μ΄λ€. κ·Έλλ λλ €μ΄κ°? κ²μ₯μ΄λ€μ, λλ €μ°λ©΄ λΉ μ§λ©΄ λλ€. γ γ == [steemθ²:μ μ± ] νλν¬ν¬ 21 μμ, λ€μ΄λ³΄ν νμ΄ μ¬μ©μ λ΄μ«κ³ μ§νμ€ νκ². [steem:policy] HF21 DownVote-Pool will expel lots users and Steem price will tank. ( https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank ) ( https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank ) 2019.08.17.ν .09:11, by @BewareCenterBase, . [μ€νθ²: μμ steem μ μ ] μ¬μ μ¬μ°κ³Ό κ³μ½μμ λΆμ νλ λ€μ΄λ³΄ν μλ Steem μ ννκ° μλλ€. (@SteamSteem Creativity λ μ°½κΈ; revive from down-vote-hide ) ( https://steemit.com/kr/@steamsteem/-steem-steem-steamsteem-creativity-revive-from-downvotehide--1545446641207 ) 2018.12.15.ν .15:11, by @SteamSteem, revive from down-vote-hide of the original .. . [μ€νθ²: λ¨μ ] νΉκΆμΈ΅μ μλ» μλΉμ μμ‘΄νλ λ¬Έμ ν΄κ²° ꡬ쑰, (1/n) [steem: demerit] OverDog's Self-Fucked Mercy dependent Problem Solving. ( https://steemit.com/kr/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving ) ( https://staging.busy.org/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving ) 2019.08.14.Wed, 06:39 (utc+9), by @BewareCenterBase [steemθ²:μ μ± ] νλν¬ν¬ 21 μμ, μλ‘ λ€μ΄λ³΄ν νμ΄νλ€κ° λ§μ§λ§ νλκΉμ§ μ£½μ΄κ°κ². v.1.1,(2/n) [steem:policy] HF21, Last DownVoter will starve after Man-Slaughtering each other. ( https://steemit.com/kr/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other ) ( https://staging.busy.org/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other ) 2019.08.25.μΌ.14:15, by @BewareCenterBase, revive from down-vote-hide of the following.. [steemθ²:λ―Έλ] νλν¬ν¬ 21 λ€μ΄λ³΄ν ν, μ μ μ λλ‘ κ°μ μλͺ¨ μ€νμΈλ€ λ λκ³ , μ€ν κ°κ²© νΌλ₯ μλ― [steem:policy] HF21 Down-Vote Pool, induce Wars, Abuse Users Emotions, Expel Users , Price Tank. ( https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank ) ( https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank ) 2019.08.27.ν.09:15, by @BewareCenterBase, [steemθ²:λ―Έλ] HF21 λ€μ΄ ν λμ , μ μ보μ κΈ°λ₯μ ν¬κΈ°, smt ν ν°/λ λ€μ λκΈ°κ³ , νλ«νΌ μ½μΈ κ°λ μ΄μ κΈ° μλ? [steem:policy] HF21 Down-Vote Pool, Try Weaning, From Author Reward To Platform Coin ? ( https://steemit.com/kr/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin ) ( https://staging.busy.org/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin ) 2019.08.27.ν.09:19, by @BewareCenterBase, [steemθ²:λ³Έμ§] HF21 λ€μ΄λ³΄ν ν λμ μΌλ‘, μ€νμ λ³Έμ§μ΄ μ μ보μ 맀체μμ, κΈ λ§€κ° μ 보ν λ€μ΄λ³΄ν μ μ κ²μμΌλ‘ λ°λλ€. [steem:HF21] Steem Changes, From Author Reward Social Media, To Down-vote War Game. ( https://steemit.com/kr/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game ) ( https://staging.busy.org/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game ) 2019.08.28.μ.08:14, by @BewareCenterBase, [steemθ²:HF21] λ¨μμ©λ λ€μ΄λ³΄ν νμλ‘, 무μμ λ€μ΄λ³΄ν ν κ²μΈκ°? [steem:HF21] What to Down-Vote with HF21 Down-Vote Power ? ( https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) ( https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power ) 2019.08.28.μ.08:45, by @BewareCenterBase, For Freedom Of Speech, Let's Down-Vote Down-Vote-ManSlaughterer @oldstone =@slowwalker =@wisdomandjustice ( https://steemit.com/kr/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice ) ( https://staging.busy.org/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice ) 2019.08.31.Sat.18:53 (utc+9), by @BewareCenterBase, [Steem : For Freedom] Down-Vote DownVoting-ManSlaughterers, My List Update v.1.1 ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1 ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1 ) 2019.09.01.Sun.09:43 (utc+9), by @BewareCenterBase, [Steem : For Freedom] Write Much More to Dry-Up DownVoting-ManSlaughterers' Power, ( https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power ) ( https://staging.busy.org/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power ) 2019.09.01.Sun.09:52 (utc+9), by @BewareCenterBase, == (busy) #kr jjm sct busy palnet zzan cryptocurrency liv bitcoin steemleo steem steemit (steempeak) #kr jjm sct palnet zzan liv life steemleo steem steemit #kr jjm sct palnet zzan liv steemleo steem steemit cryptocurrency == ( λ°λ‘ λ° κ΄κ³ μΈμ λΌλ ν΄λ¦νμλ©΄, νμμ μ½μΈ μνκ³μ λμλ©λλ€. κ΄κ³ λ dClick μ νμ΄λ©°, νμλ μ νκΆ μκ³ , 보μ¦/μ± μ μ§μ§ μμ΅λλ€. Please Click Ad just below at any time, to help writer & coin-ecosystem. Ad is selected by dClick . Writer above, No Guarantee, No Responsibilities.)
author | bewarecenterbase |
---|---|
permlink | px4tvg |
category | witness-update |
json_metadata | {"tags":["witness-update","kr"],"users":["bewarecenterbase","oldstone","slowwalker","wisdomandjustice","howo","steemlsh","westport","himapan","patrice","spaminator","prowler","mack-bot","mack-botjr","mack-fund","themarkymark","clayop","asbear","ocd-witness","ats-witness","noblewitness","sircork","roelandp","yabapmatt","good-karma","gtg","blocktrades","someguy123","cervantes","aggroed","smooth.witness","therealwolf","anyx","timcliff","ausbitbank","curie","thecryptodrive","followbtcnews","drakos","lukestokes.mhth","jesta","steempress","xeldal","emrebeyler","liondani","riverhead","actifit","busy.witness","bhuz","steamsteem"],"image":["https://ipfs.busy.org/ipfs/QmS6523fGwpkAJV8po5QHPk9YF9Jio9nEJKLufLHLiWrmT"],"links":["https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-make-many-more-accounts-to-fight-for-freedom","https://steemit.com/kr/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power","https://staging.busy.org/@bewarecenterbase/2cbcn-steem-hf21-steem-hf21-what-to-down-vote-with-hf21-down-vote-power","https://steemd.com/@accountname","https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank","https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-downvote-pool-will-expel-lots-users-and-steem-price-will-tank","https://steemit.com/kr/@steamsteem/-steem-steem-steamsteem-creativity-revive-from-downvotehide--1545446641207","https://steemit.com/kr/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving","https://staging.busy.org/@bewarecenterbase/1-n-steem-demerit-overdog-dependent-problem-solving","https://steemit.com/kr/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other","https://staging.busy.org/@bewarecenterbase/3q3edu-steem-21-2-n-steem-policy-hf21-last-downvoter-will-starve-after-man-slaughtering-each-other","https://steemit.com/kr/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank","https://staging.busy.org/@bewarecenterbase/steem-21-steem-policy-hf21-down-vote-pool-induce-wars-abuse-users-emotions-expel-users-price-tank","https://steemit.com/kr/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin","https://staging.busy.org/@bewarecenterbase/steem-hf21-smt-steem-policy-hf21-down-vote-pool-try-weaning-from-author-reward-to-platform-coin","https://steemit.com/kr/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game","https://staging.busy.org/@bewarecenterbase/2nulnq-steem-hf21-steem-hf21-steem-changes-from-author-reward-social-media-to-down-vote-war-game","https://steemit.com/kr/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice","https://staging.busy.org/@bewarecenterbase/for-freedom-of-speech-let-s-down-vote-down-vote-manslaughterer-oldstone-slowwalker-wisdomandjustice","https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-down-vote-downvoteing-manslaughterers-my-list-update-v-1-1","https://steemit.com/kr/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power","https://staging.busy.org/@bewarecenterbase/steem-for-freedom-write-much-more-to-dry-up-downvoting-manslaughterers-power"],"app":"steemit/0.1"} |
created | 2019-09-01 03:04:30 |
last_update | 2019-09-01 03:04:30 |
depth | 2 |
children | 0 |
last_payout | 2019-09-08 03:04: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 | 9,396 |
author_reputation | -93,249,918,891,757 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,158,100 |
net_rshares | -533,884,146,298 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wisdomandjustice | 0 | -633,564,091,208 | -11% | ||
bewarecenterbase | 0 | 99,679,944,910 | 50% |
Γtimo, mas apesar de tudo atualizaΓ§Γ΅es como esta precisarΓ£o estar em constante movimento, jΓ‘ que, por si sΓ³, a metodologias tem se alterado a todo momento.
author | felipefala |
---|---|
permlink | pvxrwy |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 21:05:18 |
last_update | 2019-08-08 21:05:18 |
depth | 2 |
children | 1 |
last_payout | 2019-08-15 21:05: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 | 155 |
author_reputation | 35,469,764 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,307,417 |
net_rshares | 0 |
Que?
author | tarazkp |
---|---|
permlink | pvxsal |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 21:13:30 |
last_update | 2019-08-08 21:13:30 |
depth | 3 |
children | 0 |
last_payout | 2019-08-15 21:13: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 | 4 |
author_reputation | 5,922,361,347,280,647 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,307,607 |
net_rshares | 0 |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/steempress__steempress-testing-results-of-hf21.mp3) Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
author | tts |
---|---|
permlink | re-steempress-testing-results-of-hf21-20190808t142139 |
category | witness-update |
json_metadata | "" |
created | 2019-08-08 14:21:39 |
last_update | 2019-08-08 14:21:39 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 14:21: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 | 356 |
author_reputation | -4,535,154,553,995 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,295,131 |
net_rshares | -23,273,024,596 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
netuoso | 0 | -23,273,024,596 | -100% |
Thank you, not only for testing, but for communicating about what you found.
author | whatsup |
---|---|
permlink | pvxiw9 |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-08 17:50:36 |
last_update | 2019-08-08 17:50:36 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 17:50: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 | 76 |
author_reputation | 519,839,651,581,670 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,301,997 |
net_rshares | 19,344,017,843 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 19,344,017,843 | 5% |
This post has been resteemed by @witnessnews. **Follow @witnessnews** to keep up with active witness updates.
author | witnessnews |
---|---|
permlink | re-steempress-testing-results-of-hf21-20190808t135644z |
category | witness-update |
json_metadata | "{"app": "beem/0.20.22"}" |
created | 2019-08-08 13:56:45 |
last_update | 2019-08-08 13:56:45 |
depth | 1 |
children | 0 |
last_payout | 2019-08-15 13:56:45 |
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 | 112 |
author_reputation | -327,653,346,252 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,294,304 |
net_rshares | 0 |
You guys doing a great job! Highly appreciated!!
author | worldcapture |
---|---|
permlink | pvy3km |
category | witness-update |
json_metadata | {"tags":["witness-update"],"app":"steemit/0.1"} |
created | 2019-08-09 01:17:12 |
last_update | 2019-08-09 01:17:12 |
depth | 1 |
children | 0 |
last_payout | 2019-08-16 01:17: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 | 48 |
author_reputation | 179,527,302,229,235 |
root_title | "SteemPress testing results of HF21" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,313,617 |
net_rshares | 40,721,271,074 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fredrikaa | 0 | 40,721,271,074 | 10% |