<center></center> It’s been some time since Hard Fork 20 was launched. Dust have settled, and the new tools and mechanisms it brought have prompted many developers to implement many new, interesting solutions, which Steem needed. One of the biggest changes that HF20 has brought to us is definitely the new Resource Credits (RC) system (which replaces old bandwith-based system), which now allows people **to create new Steem accounts without waiting and paying anything**. Many people still do not fully undestand how this works, so let's divide this into pices to better understand **why**, **how** and **what**. # Why this is a big deal? Creating a Steem account was for a long time a pain in the... neck. When 11 months ago Steemit Inc. [asked community](https://steemit.com/roadmap2018/@steemitblog/steemit-roadmap-2018-community-input-requested) what changes are needed the most: [](https://steemit.com/roadmap2018/@steemitblog/steemit-roadmap-2018-community-input-requested) majority of Steemians agreed that account creation needs to be addressed. We waited a long time for some improvements in a protocol, but now we have them... # How this works right now ## Claiming a discounted ("free") account Let's first answer a question _what "claiming an account"_ actually means? By claiming an account you **reserve a right** for yourself to create a new account in the future without any extra costs. Thanks to that you can create a 2nd account for yourself, first accounts for your friends or hundrends of accounts for users of your dapp build on top of Steem. ### Does it mean that those accounts are actually free? Nope. By claiming discounted you burn your renewable **Resource Credits**, so basically you temporarly limit yourself to do other things on Steem blockchain (publish posts & comments, make transfers or even vote):  So, if you will not be carefull and you will use all your RC, next time you will try to publish a comment, you can get an error:  and information:  But don't worry. RC regenerates 20% every day. ## What "claiming an account" is not So, if someone will claim 100 accounts, it doesn't mean that this person created 100 new accounts. This mean that tomorrow, in a month or any point in the future this person will be able to create 1, 2 or up to 100 accounts instantly without extra cost. When you claim an account, **you don't have to**: - provide an account name for future account - provide any public keys (claiming does not create an account so password and keys are not needed at this stage) ## What “claiming an account” is Claiming an account is a procedure which require from you to burn some Resource Credits to reserve a slot, so you will be able to create a free account in any point in the future. The cost of the operation is deducted from the user's Resource Credits, in return it receives a value of `pending_claimed_accounts` of its account. The amount of `pending_claimed_accounts` can be checked with steemd.com <center></center> if you never used the operation `claim_account`, it will be 0 *(And maybe it's time to change it?!)* Interestingly, `claim_account` has an optional option `fee`. By inserting the exact value of the current value of `account_creation_fee` (currently 3 STEEM), we will get an account, but we will pay for the operation as for a regular transfer. ## How to utilize **_claimed account_** to create an **acctual account** There are two options for opening accounts - `account_create` and `create_claimed_account`. Both operations are built identically, with only one small difference, namely `create_claimed_account` does not require fee payment, instead it consumes one charge of `pending_claimed_accounts`. The operation `account_create_with_delegation` has been removed with HF20 so it is no longer possible. To sum up, there are two ways to get a Steem account, a standard one (using `account_create`) and a two-step one (using `claim_account` + `create_claimed_account`). In both of these cases, an account will be created, whose Steem Power will be... 0 (in words - zero)! Interestingly, although the account has a 0 SP, it can work. Each account created with these methods will now have an unrivalled Resource Credits resource as if it had 3 Steem Power. This value allows the user to perform only a limited number of operations and their number depends on the amount of free network resources. # Ok, so what should I do to create an account in such a way? ## Checking whether you have enought RC/"mana" First of all, you should check, whether you have enough Resourse Credits to claim at least one account. Current cost of claming and account can be found on https://beempy.com/resource_costs, in first table:  As historic data already showed to us, this value can change very often: <center></center> Later you should check on Steemd.com, whether you have enough RC: <center></center> With current cost of claiming an account, you would need to have at least ~4252 SP and 100% of RC to be able to claim 1 account. ## The process of claiming and creating an account Currently, there are already at least 5 tools which I am aware of which supports new changes in a protocol. You can create discounted accounts and create claimed accounts: #### Using SteemConenct IMO the easiest way for non technical user. 1. Just go to [https://steemconnect.com/sign/claim-account?fee=0.000 STEEM&extensions=[]](https://steemconnect.com/sign/claim-account?fee=0.000%20STEEM&extensions=%5B%5D) 2. Verify that you are on SteemConnect website 3. Authorize and sign a transaction by loging with your _private active key_ (read here [why it is a good idea to not use your Steem master password](https://steemit.com/security/@noisy/what-is-the-difference-between-a-password-and-a-private-key-s-on-steemit-how-to-make-your-account-more-secure-by-using-them)) Unfortunatelly at a time of writing this post, SteemConnect do not have a functionality to create new accounts using claims. I asked @fabien what is estimated time for delivering this feature: <center></center> ##### Using Python Script, with beem library 1. Open [article created by @holger80](https://www.steembr.com/beem/@holger80/claiming-and-creating-a-discounted-account-using-beem) and copy `claim_account.py` script 2. install python `beem` package 3. run `claim_account.py` 4. Provide a private active key of account which you want to use to claim an account: 4.1. During typing/pasting a key, it will not be visible 5. A script will find your steem account using provided key 6. A script will display current cost of claiming an account (in RC) 7. And confirmation if account will be claimed [](https://asciinema.org/a/5wtubtrGjJ9oYp4Zv3oTYUKXD) Creation of an account using claimed discounted account can be done with `create_claimed_account.py` from the same article, and by runing: `python create_claimed_account.py <new_account_name>` script will ask from active key of a creator and password for new account. ##### Using beempy command line tool 1. Install beem python package 2. Create a wallet by `beempy createwallet` 3. Import your private active key by `beempy addkey` or `beempy importaccount` like this: [](https://asciinema.org/a/MlzCfOFrD4LJLXfM05Sn9tB6r) 4. Claim an account by `beempy claimaccount` (you can claim a few discounted account at once by providing an `-n` param) [](https://asciinema.org/a/c4Xyh7EXleTk0GlayPdGght6i) Creation of an account is simple, and can be done via `beempy newaccount`. What is important is... to remember about adding `--create-claimed-account` switch. Example command: `beempy newaccount -a noisy --create-claimed-account johndoe` ##### Using @mcfarhat's html and js code Instructions provided here: https://steemit.com/utopian-io/@mcfarhat/hf20-tutorial-claiming-and-creating-discounted-accounts-1538321171071 Simply demo recorded by me is here: https://youtu.be/Yg5vB0jQGgU ##### Using website @reazuliqbal's website Just go to: https://codebull.github.io/AccountCreate/ 1. claim a discounted account with first form 2. create claimed account with second form  More info about this tool can be found here: https://steemit.com/utopian-io/@reazuliqbal/steem-hf20-discounted-account-claim-and-creation-tool # Summary I think... discounted accounts can help onboard a lot of new users. New tools is going to be build to utilize this feature and I hope it will be much easier to get fast a Steem account. Is new feature of Steem blockchain perfect? Nope :( Personally I don't like the fact that I need to use my active key for claiming an account, I would prefer to use another key for that, like posting. Another problem is, that you cannot transfer claims to other accounts, so for example... utopian cannot use their dedicated @utopian.signup account to register new users, because they have effective SteemPower (and enough RC) only on their main account @utopian-io. ## Is this feature popular? At moment of publication of this post, 405 accounts has claimed at least 1 account. Who claimed the most accounts, you can check here: .png) BTW, do you think it would be a good idea to have a real-time dashboard with such a data? <center> </center> If yes... please follow me, and check my profile Tomorrow ;) ----- This post was created thanks to collaboration with @santarius. I would like to thanks him for all his research about this topic and writing some paragraphs of this post. ----- <center><sup>I'm part of @wise-team witness - check out [what we do](https://wise-team.io/) for Steem community!</sup></center>
author | noisy |
---|---|
permlink | creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system |
category | steem |
json_metadata | {"tags":["steem","steemit","resource-credits","account-creation","claims"],"users":["fabien","mcfarhat","reazuliqbal","utopian.signup","utopian-io","santarius","wise-team"],"image":["https://cdn.steemitimages.com/DQmU36e4nCAyADDesRFzvJtMRd4rMhJivXR6nbkU3XhJ6Sz/claim.png","https://i.imgur.com/ReY0JNa.png","https://i.imgur.com/c77OXeS.png","https://i.imgur.com/9xrYXEQ.png","https://i.imgur.com/wl2QOOf.png","https://i.imgur.com/E8Wz3gq.png","https://i.imgur.com/sfpBD9x.png","https://i.imgur.com/Ut2suaE.png","https://i.imgur.com/rXy2ozf.png","https://i.imgur.com/v2rZuT6.png","https://asciinema.org/a/5wtubtrGjJ9oYp4Zv3oTYUKXD.png","https://asciinema.org/a/MlzCfOFrD4LJLXfM05Sn9tB6r.png","https://asciinema.org/a/c4Xyh7EXleTk0GlayPdGght6i.png","https://img.youtube.com/vi/Yg5vB0jQGgU/0.jpg","https://i.imgur.com/yaHYaJa.png","https://cdn.steemitimages.com/DQmbVHAJnDNGnbfqQfjF16nMCViLUHus9nwkYXVgvRkhwsQ/Selection_999(400).png","https://cdn.steemitimages.com/DQmbYBJ2AFk5wBMazLWnKvWDHqikQvrMVV7U1PDU3AmTsGa/demo.gif"],"links":["https://steemit.com/roadmap2018/@steemitblog/steemit-roadmap-2018-community-input-requested","https://beempy.com/resource_costs","https://steemconnect.com/sign/claim-account?fee=0.000%20STEEM&extensions=%5B%5D","https://steemit.com/security/@noisy/what-is-the-difference-between-a-password-and-a-private-key-s-on-steemit-how-to-make-your-account-more-secure-by-using-them","https://www.steembr.com/beem/@holger80/claiming-and-creating-a-discounted-account-using-beem","https://asciinema.org/a/5wtubtrGjJ9oYp4Zv3oTYUKXD","https://asciinema.org/a/MlzCfOFrD4LJLXfM05Sn9tB6r","https://asciinema.org/a/c4Xyh7EXleTk0GlayPdGght6i","https://steemit.com/utopian-io/@mcfarhat/hf20-tutorial-claiming-and-creating-discounted-accounts-1538321171071","https://youtu.be/Yg5vB0jQGgU","https://codebull.github.io/AccountCreate/","https://steemit.com/utopian-io/@reazuliqbal/steem-hf20-discounted-account-claim-and-creation-tool","https://wise-team.io/"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-10-23 22:08:51 |
last_update | 2018-10-24 00:49:15 |
depth | 0 |
children | 61 |
last_payout | 2018-10-30 22:08:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 78.590 HBD |
curator_payout_value | 24.945 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,496 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,918,891 |
net_rshares | 91,384,877,356,696 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
analisa | 0 | 473,335,744,224 | 12% | ||
blocktrades | 0 | 22,422,838,285,945 | 51% | ||
ajvest | 0 | 110,279,164,202 | 100% | ||
donkeypong | 0 | 1,649,097,727,935 | 12% | ||
chris4210 | 0 | 367,759,275,068 | 100% | ||
noisy | 0 | 1,937,639,903,342 | 100% | ||
full-measure | 0 | 139,462,067,572 | 45% | ||
cryptoctopus | 0 | 4,565,414,800,333 | 100% | ||
nanzo-scoop | 0 | 2,877,096,396,909 | 100% | ||
daycrypter | 0 | 27,460,980,074 | 100% | ||
acidyo | 0 | 10,211,820,991,307 | 81% | ||
dan-atstarlite | 0 | 0 | 100% | ||
mummyimperfect | 0 | 41,337,996,480 | 100% | ||
murh | 0 | 1,557,500,098 | 50% | ||
gniewomir-sotel | 0 | 1,065,598,778 | 50% | ||
ak2020 | 0 | 17,393,763,636 | 100% | ||
thecryptodrive | 0 | 157,548,945,054 | 100% | ||
ola-haukland | 0 | 23,734,361,778 | 100% | ||
grandpere | 0 | 203,906,199,968 | 50% | ||
brett-barth | 0 | 193,562,706 | 100% | ||
emily-cook | 0 | 1,511,753,611 | 100% | ||
gtg | 0 | 6,451,995,783,700 | 100% | ||
shayne | 0 | 30,243,841,284 | 100% | ||
transisto | 0 | 322,807,272,981 | 100% | ||
raymondspeaks | 0 | 18,989,557,700 | 50% | ||
steelman | 0 | 8,198,547,982 | 100% | ||
joshglen | 0 | 1,416,667,961 | 100% | ||
lukmarcus | 0 | 131,295,828,775 | 100% | ||
timcliff | 0 | 629,327,671,845 | 83% | ||
psygambler | 0 | 6,731,037,320 | 50% | ||
dks100 | 0 | 154,687,805 | 100% | ||
oflyhigh | 0 | 1,281,647,554,795 | 50% | ||
anarcist69 | 0 | 3,353,754,831 | 50% | ||
snwolak | 0 | 8,186,260,763 | 90% | ||
bryan-imhoff | 0 | 111,345,551,046 | 50% | ||
mrosenquist | 0 | 74,503,891,469 | 20% | ||
stevescriber | 0 | 133,195,571 | 50% | ||
truconspiracy | 0 | 32,234,877,976 | 50% | ||
levycore | 0 | 118,589,724,364 | 10% | ||
anarcho-andrei | 0 | 6,299,336,564 | 30% | ||
mandibil | 0 | 3,848,561,851 | 100% | ||
themonetaryfew | 0 | 109,262,586,838 | 100% | ||
aaronsuncamacho | 0 | 18,421,876,572 | 100% | ||
jblew | 0 | 0 | 18% | ||
bluehorseshoe | 0 | 34,651,980,016 | 100% | ||
wildmanhowling | 0 | 111,120,154 | 50% | ||
whatsup | 0 | 118,927,857,252 | 28% | ||
t-bot | 0 | 1,115,239,156,782 | 100% | ||
joep | 0 | 58,766,268 | 100% | ||
hql2016 | 0 | 8,656,601,103 | 100% | ||
barton26 | 0 | 10,481,131,519 | 100% | ||
redes | 0 | 1,126,439,758,753 | 22% | ||
astral | 0 | 16,048,717,407 | 25% | ||
dashfit | 0 | 9,443,478,981 | 50% | ||
starrkravenmaf | 0 | 12,641,481,965 | 100% | ||
jamzed | 0 | 34,137,293,489 | 100% | ||
kristine | 0 | 618,601,609 | 50% | ||
edb | 0 | 16,900,171,849 | 100% | ||
kauslevi | 0 | 362,484,397 | 50% | ||
hoboway | 0 | 495,809,699 | 50% | ||
mafeeva | 0 | 52,150,611,908 | 100% | ||
responsive | 0 | 575,709,433 | 100% | ||
chappers | 0 | 296,383,051 | 100% | ||
pedrovillegas96 | 0 | 2,669,141,212 | 75% | ||
cardboard | 0 | 1,165,769,118 | 100% | ||
v4vapid | 0 | 4,875,122,393,539 | 33% | ||
anthonyadavisii | 0 | 20,627,886,587 | 40% | ||
chesatochi | 0 | 19,538,187,954 | 8% | ||
tzimis | 0 | 14,909,372,512 | 100% | ||
steemcenterwiki | 0 | 927,688,417 | 5% | ||
jdevora | 0 | 231,675,580 | 100% | ||
firesteem | 0 | 13,655,962,312 | 100% | ||
titoortiz | 0 | 1,619,629,641 | 100% | ||
theghost1980 | 0 | 21,288,442,560 | 10% | ||
mendezand | 0 | 622,789,878 | 20% | ||
coolthingssite | 0 | 0 | 100% | ||
tarazkp | 0 | 464,341,142,420 | 32% | ||
jgpro | 0 | 220,892,730 | 50% | ||
k0dlaty | 0 | 509,699,114 | 100% | ||
dyancuex | 0 | 171,114,091 | 50% | ||
diggndeeper.com | 0 | 483,418,703,010 | 100% | ||
alexis555 | 0 | 1,364,584,647,606 | 19% | ||
xanadu | 0 | 567,864,151 | 50% | ||
borislavzlatanov | 0 | 2,930,590,583 | 100% | ||
hanjo42 | 0 | 717,154,302 | 50% | ||
michelios | 0 | 243,752,796 | 15% | ||
dhimmel | 0 | 307,231,790,909 | 38% | ||
starkerz | 0 | 16,570,889,064 | 100% | ||
zhangyong | 0 | 17,977,146,656 | 2.4% | ||
cryptophunk | 0 | 225,688,733 | 50% | ||
ajamsport | 0 | 367,798,818 | 100% | ||
geeadams | 0 | 353,487,694 | 50% | ||
herfie | 0 | 127,841,519 | 50% | ||
moksamol | 0 | 12,272,479,475 | 50% | ||
hiroyukikomiya | 0 | 234,077,025 | 50% | ||
ocisly | 0 | 9,433,209,992 | 100% | ||
getrichordie | 0 | 4,054,330,941 | 50% | ||
imperfect-one | 0 | 6,490,883,796 | 5% | ||
passion-fruit | 0 | 2,936,238,604 | 30% | ||
fortune-master | 0 | 2,913,655,876 | 30% | ||
dune69 | 0 | 818,248,081 | 1.5% | ||
mes | 0 | 379,434,046,698 | 100% | ||
redpill | 0 | 6,363,761,666 | 100% | ||
jacalf | 0 | 647,367,831 | 100% | ||
the-eliot | 0 | 4,124,004,778 | 50% | ||
lotfiuser | 0 | 243,741,705 | 50% | ||
bargolis | 0 | 14,812,955,576 | 100% | ||
mobbs | 0 | 105,890,725,233 | 100% | ||
freedomcoin | 0 | 7,728,214,549 | 51% | ||
prateeshp | 0 | 254,152,099 | 50% | ||
laloelectrix | 0 | 5,169,558,497 | 100% | ||
suerisue | 0 | 84,348,333,038 | 50% | ||
mys | 0 | 6,298,182,708 | 5% | ||
jakipatryk | 0 | 62,189,214,812 | 100% | ||
sureshnsnet | 0 | 403,987,549 | 50% | ||
aizulkamal | 0 | 7,348,939,152 | 100% | ||
rishadhaque | 0 | 198,729,289 | 50% | ||
guiltyparties | 0 | 56,586,633,974 | 100% | ||
riteshstark | 0 | 250,050,193 | 50% | ||
malicered | 0 | 81,918,534,737 | 100% | ||
tomosan | 0 | 531,613,474 | 100% | ||
carolynseymour | 0 | 652,838,064 | 50% | ||
goofyu | 0 | 21,789,163,168 | 100% | ||
aditor | 0 | 4,896,068,215 | 100% | ||
pvtrickheaton | 0 | 253,369,677 | 50% | ||
catchawhale | 0 | 3,884,326,289 | 1% | ||
loshombresdepaco | 0 | 38,508,460,613 | 100% | ||
lelon | 0 | 5,395,230,132 | 100% | ||
kisom1 | 0 | 253,983,911 | 50% | ||
steemanator | 0 | 416,261,366 | 100% | ||
smartgeek | 0 | 573,736,541 | 100% | ||
friesennerz | 0 | 2,491,209,206 | 50% | ||
terz17 | 0 | 334,396,833 | 100% | ||
chrispy99 | 0 | 419,776,942 | 1% | ||
fanstaf | 0 | 7,020,249,922 | 85% | ||
othniel | 0 | 324,322,393 | 50% | ||
jayna | 0 | 5,841,807,855 | 15% | ||
beyondthecrypto | 0 | 9,626,606,186 | 100% | ||
saunter | 0 | 48,641,838,342 | 100% | ||
rival | 0 | 7,706,370,943 | 5% | ||
pyrslx | 0 | 480,401,357 | 100% | ||
tensor | 0 | 34,175,175,175 | 100% | ||
roxane | 0 | 2,051,710,429,099 | 100% | ||
zacherybinx | 0 | 794,825,917 | 100% | ||
makrotheblack | 0 | 2,964,853,806 | 50% | ||
kiokizz | 0 | 27,421,457,706 | 100% | ||
flatman | 0 | 20,609,379,847 | 50% | ||
blackmagic | 0 | 385,026,475 | 10% | ||
goga | 0 | 116,793,495 | 100% | ||
nomad0712 | 0 | 406,569,293 | 100% | ||
jacekw | 0 | 101,926,666,055 | 100% | ||
oudekaas | 0 | 29,511,249,725 | 50% | ||
grecki-bazar-ewy | 0 | 10,544,115,455 | 50% | ||
rafalski | 0 | 12,388,996,380 | 30% | ||
ashokcan143 | 0 | 180,147,121 | 100% | ||
nicniezgrublem | 0 | 38,853,212,881 | 100% | ||
msageer | 0 | 107,179,375 | 50% | ||
bloodless | 0 | 552,407,909 | 100% | ||
mseuno | 0 | 389,780,038 | 100% | ||
hellosusu | 0 | 419,968,131 | 100% | ||
pixelfan | 0 | 1,090,504,047 | 0.54% | ||
baladod | 0 | 83,479,812 | 22% | ||
poetarojo | 0 | 8,271,408,633 | 50% | ||
brazilijus | 0 | 171,531,300 | 50% | ||
kona | 0 | 7,323,993,722 | 100% | ||
mhel | 0 | 490,809,197 | 20% | ||
patriciareyes | 0 | 158,535,862 | 50% | ||
jarendesta | 0 | 266,789,655,635 | 50% | ||
patriciangela | 0 | 213,515,042 | 100% | ||
colmedwardsphoto | 0 | 5,434,425,837 | 100% | ||
sanderdieryck | 0 | 1,195,715,544 | 50% | ||
vimukthi | 0 | 1,247,330,885 | 1% | ||
finanzasid | 0 | 573,349,693 | 50% | ||
alcik | 0 | 16,461,856,325 | 100% | ||
fujiwara | 0 | 165,112,800 | 100% | ||
tomcruse | 0 | 254,550,285 | 50% | ||
life.goals | 0 | 391,269,178 | 100% | ||
tradeownsystems | 0 | 375,635,628 | 100% | ||
odibezeking | 0 | 74,547,107 | 50% | ||
danielakreher | 0 | 125,857,464 | 30% | ||
mustika | 0 | 254,268,996 | 50% | ||
shippou95 | 0 | 581,854,741 | 50% | ||
viralfever | 0 | 176,836,769 | 50% | ||
derz | 0 | 8,451,033,136 | 100% | ||
dunsky | 0 | 602,009,784,805 | 100% | ||
my451r | 0 | 3,694,468,448 | 100% | ||
wuzupin | 0 | 253,738,446 | 50% | ||
flight-87 | 0 | 112,020,175 | 50% | ||
jcmansah | 0 | 101,507,107 | 25% | ||
project7 | 0 | 316,043,370,098 | 100% | ||
rizalmahrez | 0 | 553,041,492 | 100% | ||
nanwaiwaimyint | 0 | 173,878,365 | 50% | ||
tipu | 0 | 17,497,622,545,677 | 50% | ||
trilldollardad | 0 | 490,225,239 | 100% | ||
steemengines | 0 | 53,971,409,187 | 10% | ||
olayemzeecool | 0 | 250,862,558 | 50% | ||
safril21 | 0 | 253,708,040 | 50% | ||
evolutionnow | 0 | 254,881,749 | 50% | ||
sukro | 0 | 152,729,059 | 50% | ||
steemwija | 0 | 4,240,867,915 | 100% | ||
juny21c | 0 | 88,136,996,844 | 50% | ||
profnuhu | 0 | 359,840,682 | 50% | ||
brandongiesing | 0 | 275,567,542 | 50% | ||
scorer | 0 | 40,427,187,793 | 100% | ||
ckbahdon | 0 | 292,656,713 | 50% | ||
oscardavid | 0 | 254,546,531 | 50% | ||
ace69 | 0 | 2,565,194,990 | 50% | ||
flountown | 0 | 301,467,950 | 10% | ||
derekvonzarovich | 0 | 1,414,135,007 | 50% | ||
minloulou | 0 | 4,156,291,901 | 9% | ||
collennes | 0 | 398,837,555 | 100% | ||
mcfarhat | 0 | 42,669,659,144 | 34% | ||
gotgame | 0 | 4,313,342,550 | 50% | ||
marcin648 | 0 | 555,585,720 | 100% | ||
sku77-poprocks | 0 | 17,350,150,448 | 100% | ||
preetisingh1993 | 0 | 305,300,047 | 50% | ||
poodai | 0 | 4,211,839,647 | 50% | ||
jacobkaled | 0 | 211,443,736 | 50% | ||
cryptocommand | 0 | 7,256,973,097 | 50% | ||
markmorbidity | 0 | 172,117,110 | 50% | ||
bobtucks | 0 | 211,391,082 | 50% | ||
mundharmonika | 0 | 887,830,853 | 28% | ||
yazannew | 0 | 235,368,833 | 50% | ||
pinkyshah | 0 | 2,020,685,363 | 1% | ||
happychild | 0 | 1,739,102,975 | 50% | ||
samdman | 0 | 223,812,329 | 50% | ||
kranich | 0 | 338,973,286 | 20% | ||
pierlave | 0 | 1,503,979,761 | 100% | ||
peaceandwar | 0 | 14,003,378,403 | 50% | ||
maaz23 | 0 | 1,651,182,189 | 100% | ||
silasvogt | 0 | 221,423,140 | 50% | ||
bartosz546 | 0 | 7,862,159,777 | 100% | ||
macmaniac77 | 0 | 10,503,531,818 | 50% | ||
gardeningabc | 0 | 5,618,913,667 | 100% | ||
spacesheep | 0 | 3,393,937,568 | 100% | ||
joendegz | 0 | 1,897,407,322 | 50% | ||
hrovat66 | 0 | 166,402,638 | 50% | ||
elear | 0 | 9,135,558,684 | 100% | ||
lwih.eiei | 0 | 249,046,459 | 50% | ||
kimchi-king | 0 | 1,226,627,010 | 50% | ||
untaljames | 0 | 1,260,062,948 | 70% | ||
caladan | 0 | 411,177,901 | 1.5% | ||
gauttam | 0 | 86,080,429 | 10% | ||
hasim5164 | 0 | 165,059,638 | 50% | ||
normbond | 0 | 552,954,917 | 100% | ||
alcy | 0 | 2,587,842,129 | 50% | ||
bridgetdaniels | 0 | 373,615,918 | 100% | ||
edmundang | 0 | 263,750,787 | 20% | ||
mdsaifultop | 0 | 252,774,677 | 50% | ||
underworld24 | 0 | 248,207,452 | 50% | ||
silverlining1 | 0 | 1,203,782,999 | 50% | ||
masud222 | 0 | 276,072,479 | 50% | ||
cryptonik | 0 | 728,554,336 | 52% | ||
pipo092281 | 0 | 207,118,229 | 50% | ||
aniafx1 | 0 | 23,675,225,000 | 100% | ||
dbddv01 | 0 | 236,692,611 | 20% | ||
parag | 0 | 233,204,296 | 50% | ||
kimaben | 0 | 467,064,594 | 25% | ||
nirgf | 0 | 8,019,884,654 | 100% | ||
jetto | 0 | 253,922,746 | 50% | ||
bocik | 0 | 12,841,219,564 | 100% | ||
ghostiee | 0 | 379,984,882 | 50% | ||
jacktan | 0 | 678,076,096 | 100% | ||
amanpathak | 0 | 683,669,000 | 50% | ||
engineeringfeed | 0 | 173,081,929 | 50% | ||
prazxs | 0 | 553,375,042 | 100% | ||
rozioo | 0 | 49,862,921,637 | 100% | ||
abrahman5 | 0 | 252,885,187 | 50% | ||
eleonardo | 0 | 135,077,200 | 10% | ||
zerin.tahmid | 0 | 254,230,957 | 50% | ||
noyon696 | 0 | 937,512,997 | 50% | ||
zohaib715 | 0 | 280,686,051 | 50% | ||
fidel66 | 0 | 178,047,503 | 50% | ||
klizo | 0 | 299,743,382 | 50% | ||
humaira | 0 | 100,264,115 | 50% | ||
motivatorjoshua | 0 | 1,712,251,522 | 100% | ||
vipin99 | 0 | 1,502,917,922 | 100% | ||
dpalash124 | 0 | 251,277,632 | 50% | ||
wallacecarranza | 0 | 134,338,836 | 50% | ||
abbykane | 0 | 71,160,180 | 20% | ||
astromaniak | 0 | 12,798,192,190 | 30% | ||
studytext | 0 | 250,637,970 | 50% | ||
saharia | 0 | 254,060,492 | 50% | ||
kwabena1995 | 0 | 101,798,264 | 25% | ||
caesar2341 | 0 | 235,535,372 | 50% | ||
damdap | 0 | 163,754,239 | 50% | ||
xanderslee | 0 | 5,766,210,888 | 100% | ||
buti95 | 0 | 231,804,109 | 50% | ||
egotheist | 0 | 7,187,086,620 | 100% | ||
chullbull | 0 | 253,349,033 | 50% | ||
steempsych | 0 | 9,343,981,379 | 50% | ||
enjoyy | 0 | 421,364,091 | 50% | ||
fabiocola | 0 | 780,351,520 | 100% | ||
markusgruber | 0 | 252,728,574 | 50% | ||
hoothoot | 0 | 446,476,758 | 100% | ||
hasan086 | 0 | 418,556,120 | 50% | ||
rojinstha13 | 0 | 249,921,220 | 50% | ||
ilovekrys | 0 | 251,084,591 | 50% | ||
andisantos | 0 | 584,638,366 | 50% | ||
naymur | 0 | 186,794,956 | 50% | ||
sachiewerk | 0 | 138,246,177 | 50% | ||
klaratoth | 0 | 463,284,217 | 50% | ||
bibekstha75 | 0 | 264,673,099 | 100% | ||
sohailahmed | 0 | 3,063,338,974 | 50% | ||
adasq | 0 | 239,154,913 | 100% | ||
daglo99 | 0 | 293,706,174 | 50% | ||
thedolphin | 0 | 418,594,036 | 30% | ||
argentoescribe | 0 | 515,465,553 | 100% | ||
godlovermel25 | 0 | 197,443,357 | 50% | ||
harkushi | 0 | 166,760,668 | 50% | ||
michaelangello | 0 | 234,026,159 | 50% | ||
empato365 | 0 | 23,070,532,823 | 100% | ||
akumar | 0 | 1,276,578,775 | 50% | ||
barbarossastudio | 0 | 16,345,575,592 | 100% | ||
duranc | 0 | 205,658,101 | 100% | ||
hakanlama | 0 | 164,396,819 | 100% | ||
e-gaucho | 0 | 450,324,907 | 100% | ||
matiasmenarguez | 0 | 2,872,225,175 | 100% | ||
hermansanchezg | 0 | 84,028,198 | 50% | ||
fayamba | 0 | 102,075,349 | 25% | ||
neexal | 0 | 179,909,748 | 50% | ||
gaozben | 0 | 179,495,865 | 50% | ||
esl | 0 | 191,964,983 | 100% | ||
catalincernat | 0 | 2,085,452,366 | 30% | ||
thedrewshow | 0 | 596,447,279 | 100% | ||
camillius | 0 | 387,900,531 | 50% | ||
monoindustrias | 0 | 242,260,643 | 100% | ||
ariffashraff | 0 | 72,361,763 | 50% | ||
salahudeen | 0 | 188,048,459 | 50% | ||
creatrixity | 0 | 3,532,198,636 | 50% | ||
ocn | 0 | 253,156,769 | 50% | ||
bartheek | 0 | 879,254,492 | 100% | ||
tijani | 0 | 414,464,484 | 100% | ||
mkmk | 0 | 369,975,185 | 50% | ||
smanuels | 0 | 94,322,890 | 50% | ||
intrepidphotos | 0 | 34,344,910,802 | 14% | ||
layanmarissa | 0 | 228,549,935 | 50% | ||
irisworld | 0 | 364,363,265 | 50% | ||
chemistry0 | 0 | 392,906,240 | 100% | ||
kryptojanusz | 0 | 1,987,333,537 | 100% | ||
biffybirdcam | 0 | 649,471,629 | 25% | ||
remizer | 0 | 337,817,791 | 50% | ||
terrenox1 | 0 | 529,460,404 | 100% | ||
smjn | 0 | 32,189,308,781 | 25% | ||
dolphinscute | 0 | 420,557,745 | 50% | ||
technocracy | 0 | 5,651,644,246 | 100% | ||
santarius | 0 | 44,201,952,320 | 100% | ||
annaburska | 0 | 50,102,654,380 | 100% | ||
sijobe | 0 | 542,128,126 | 100% | ||
acronyms | 0 | 238,045,529 | 100% | ||
tissuesurgeon | 0 | 101,139,463 | 25% | ||
leslierevales | 0 | 400,022,967 | 50% | ||
thecreatorx | 0 | 514,879,841 | 100% | ||
patricklancaster | 0 | 6,044,753,747 | 50% | ||
okekemmichael | 0 | 232,062,143 | 100% | ||
meansunlare | 0 | 222,558,339 | 100% | ||
mariaputri17 | 0 | 376,953,943 | 100% | ||
dioscelle | 0 | 165,331,763 | 50% | ||
cryptospreads | 0 | 253,574,114 | 50% | ||
deveshsinghtomar | 0 | 254,516,820 | 50% | ||
jayfamous | 0 | 376,913,107 | 100% | ||
pareshnakar | 0 | 415,908,336 | 100% | ||
eddieboo | 0 | 376,420,159 | 100% | ||
pauloliverpino | 0 | 216,510,644 | 50% | ||
haseebkhan13 | 0 | 254,190,449 | 50% | ||
canburaksimsek | 0 | 1,104,051,123 | 25% | ||
sanyjaya | 0 | 377,430,824 | 100% | ||
strings | 0 | 735,111,961 | 50% | ||
cfminer | 0 | 3,886,708,805 | 100% | ||
fher | 0 | 470,418,024 | 100% | ||
bazooka | 0 | 131,740,269 | 30% | ||
voltagrou | 0 | 999,077,888 | 10% | ||
pboss123 | 0 | 238,888,979 | 50% | ||
cheesom | 0 | 235,341,944 | 50% | ||
ttinytony1989 | 0 | 253,276,791 | 50% | ||
indrajeet | 0 | 256,152,219 | 50% | ||
efepng | 0 | 312,533,556 | 50% | ||
lesshorrible | 0 | 16,720,681,137 | 50% | ||
kvngcreamy | 0 | 552,566,146 | 100% | ||
magnus19 | 0 | 1,316,785,227 | 100% | ||
creatisa | 0 | 1,120,646,284 | 100% | ||
will12 | 0 | 93,527,990 | 25% | ||
cool08 | 0 | 311,405,959 | 50% | ||
andrewclk | 0 | 254,366,386 | 50% | ||
greenvago | 0 | 22,570,456,392 | 100% | ||
rionpistorius | 0 | 138,585,756 | 50% | ||
jan.kretschmer | 0 | 914,893,411 | 50% | ||
betesda | 0 | 254,326,761 | 50% | ||
agyapong | 0 | 146,838,221 | 50% | ||
waku | 0 | 527,019,974 | 100% | ||
yadah04 | 0 | 4,891,447,262 | 50% | ||
heajin | 0 | 79,154,473 | 25% | ||
lukmad | 0 | 348,216,984 | 100% | ||
holger80 | 0 | 109,114,454,759 | 57% | ||
cryptosludge | 0 | 13,214,914,032 | 90% | ||
taimark | 0 | 32,092,954 | 100% | ||
kamilala125 | 0 | 232,423,741 | 100% | ||
marson | 0 | 543,572,315 | 100% | ||
saifannur-mzy | 0 | 253,770,945 | 50% | ||
kaking | 0 | 193,491,213 | 50% | ||
darltasie | 0 | 554,606,192 | 100% | ||
marcon | 0 | 17,864,836,922 | 100% | ||
modernmclaire | 0 | 239,812,902 | 50% | ||
carol1990 | 0 | 543,569,328 | 100% | ||
oduduokopide | 0 | 248,915,822 | 50% | ||
steemassistant | 0 | 553,993,148 | 100% | ||
warmcracklesound | 0 | 696,002,727 | 50% | ||
kwabeedat | 0 | 99,049,321 | 25% | ||
breezieblack | 0 | 162,935,997 | 50% | ||
squares | 0 | 283,651,085 | 100% | ||
gio6 | 0 | 666,513,717 | 50% | ||
rittens | 0 | 1,667,150,893 | 50% | ||
stimeet | 0 | 556,429,453 | 100% | ||
hmctrasher | 0 | 1,189,198,234 | 30% | ||
green77 | 0 | 480,523,544 | 50% | ||
emilysengmein | 0 | 551,770,112 | 100% | ||
binarycounter | 0 | 401,682,810 | 100% | ||
sheldrick5 | 0 | 2,088,877,264 | 50% | ||
haggislove | 0 | 253,503,023 | 50% | ||
yooerlyn | 0 | 1,050,657,837 | 80% | ||
freshenstine | 0 | 233,840,679 | 50% | ||
adalhelm | 0 | 1,196,704,237 | 40% | ||
tdogvoid | 0 | 387,480,452 | 100% | ||
value2 | 0 | 207,776,434 | 50% | ||
victoriakorol | 0 | 269,902,340 | 50% | ||
sunlit7 | 0 | 1,348,560,723 | 100% | ||
mikeblize | 0 | 377,681,095 | 100% | ||
fjoddel | 0 | 241,866,752 | 50% | ||
bernardalejandro | 0 | 430,211,796 | 100% | ||
lokiamfire | 0 | 253,540,035 | 50% | ||
romeaiden03 | 0 | 252,900,448 | 50% | ||
maritagirl | 0 | 254,020,766 | 50% | ||
sn0w-fox | 0 | 445,173,155 | 50% | ||
lovetouch | 0 | 253,339,748 | 50% | ||
benleemusic | 0 | 10,177,733,395 | 5% | ||
rulilesmana | 0 | 253,737,095 | 50% | ||
fullabeans | 0 | 230,336,939 | 50% | ||
kalejandra | 0 | 576,004,822 | 50% | ||
yellthway | 0 | 191,656,371 | 50% | ||
ehtishamjadoon | 0 | 216,693,438 | 50% | ||
christianunger | 0 | 337,122,316 | 20% | ||
h0rn3t | 0 | 497,252,150 | 100% | ||
mindtrap | 0 | 32,458,252,456 | 20% | ||
mariogiancini | 0 | 403,141,110 | 75% | ||
edinsoo | 0 | 178,124,663 | 50% | ||
jhesus | 0 | 253,377,569 | 50% | ||
ablaire | 0 | 1,358,550,836 | 70% | ||
metalhero | 0 | 253,552,517 | 50% | ||
basir92 | 0 | 196,639,604 | 50% | ||
julianalpanta | 0 | 214,820,675 | 50% | ||
sampath94 | 0 | 224,210,040 | 50% | ||
annamighty | 0 | 185,531,549 | 50% | ||
henrysblog | 0 | 71,337,538 | 20% | ||
thienduc | 0 | 238,662,565 | 50% | ||
m-ssed-t | 0 | 10,518,255,799 | 100% | ||
benjaspa | 0 | 251,609,522 | 50% | ||
harvhat | 0 | 296,118,274 | 60% | ||
arkkart | 0 | 253,407,725 | 50% | ||
wrpx | 0 | 696,442,912 | 50% | ||
fai.zul | 0 | 254,010,135 | 50% | ||
martinasari | 0 | 191,156,306 | 50% | ||
frozia | 0 | 233,491,275 | 50% | ||
shawnycx | 0 | 401,494,190 | 100% | ||
kulin12 | 0 | 192,250,644 | 50% | ||
mahmuliadi | 0 | 166,151,591 | 50% | ||
richmanoloriegbe | 0 | 376,194,414 | 100% | ||
jacintoelbarouki | 0 | 196,916,052 | 50% | ||
pahrtenope | 0 | 225,672,074 | 50% | ||
fanariba | 0 | 520,088,053 | 100% | ||
atjehsteemit | 0 | 642,191,351 | 50% | ||
vlogger56 | 0 | 176,590,266 | 50% | ||
lilkufalli | 0 | 254,221,238 | 50% | ||
choku | 0 | 253,830,500 | 50% | ||
jopjk | 0 | 417,713,364 | 100% | ||
steemdragon | 0 | 249,691,489 | 50% | ||
markoslaw | 0 | 13,002,774,930 | 100% | ||
angeluswins | 0 | 215,787,901 | 80% | ||
emmasumner | 0 | 556,465,974 | 100% | ||
carloseduardogil | 0 | 131,317,929 | 30% | ||
ldanielgmz | 0 | 245,133,009 | 50% | ||
nickiechua | 0 | 254,169,342 | 50% | ||
monwalker | 0 | 251,674,142 | 50% | ||
tranghuyen | 0 | 425,114,588 | 50% | ||
zombieslayer | 0 | 168,295,291 | 50% | ||
abuhasan | 0 | 252,900,448 | 50% | ||
the-doubled | 0 | 214,403,123 | 50% | ||
leoo | 0 | 389,746,171 | 50% | ||
cryptogeee | 0 | 233,313,978 | 50% | ||
sonofgod87 | 0 | 253,947,502 | 50% | ||
mchandra | 0 | 1,175,931,806 | 5% | ||
e-troubled | 0 | 540,571,943 | 100% | ||
beni96 | 0 | 196,786,941 | 50% | ||
lovlu2 | 0 | 165,503,452 | 100% | ||
mahendran7418 | 0 | 254,508,705 | 50% | ||
yarinergonzalez | 0 | 462,567,226 | 85% | ||
zygibo | 0 | 9,285,309,296 | 100% | ||
zeshanjaved | 0 | 249,361,567 | 50% | ||
romualdd | 0 | 7,546,859,764 | 100% | ||
gustanak | 0 | 253,975,042 | 50% | ||
maribelanzola | 0 | 230,390,074 | 50% | ||
beleg | 0 | 7,866,234,583 | 100% | ||
partyheld | 0 | 189,269,393 | 50% | ||
jaicyjarc | 0 | 175,652,935 | 50% | ||
galione | 0 | 719,645,400 | 50% | ||
rikilb | 0 | 219,771,638 | 50% | ||
hugo4u | 0 | 8,975,008,976 | 50% | ||
toyosiartdiy | 0 | 224,189,254 | 50% | ||
bushu | 0 | 253,707,004 | 50% | ||
pari | 0 | 557,564,957 | 100% | ||
kutrulaju | 0 | 896,517,128 | 50% | ||
har5h | 0 | 254,264,947 | 50% | ||
fruitarianism | 0 | 8,589,869,477 | 50% | ||
mizej | 0 | 646,015,076 | 100% | ||
chillingotter | 0 | 1,005,136,057 | 50% | ||
leviathan101 | 0 | 554,819,611 | 100% | ||
oguylmz | 0 | 245,244,193 | 50% | ||
hobish | 0 | 132,512,327 | 30% | ||
donjyde | 0 | 197,407,825 | 50% | ||
ippai | 0 | 147,776,566 | 50% | ||
novabluegoji | 0 | 252,597,773 | 50% | ||
fr4mer | 0 | 551,936,497 | 100% | ||
showoverview | 0 | 315,805,141 | 50% | ||
agusriandi | 0 | 252,900,448 | 50% | ||
glorimar | 0 | 153,218,527 | 50% | ||
bittrex12 | 0 | 203,317,955 | 50% | ||
crispycoinboys | 0 | 304,596,372 | 5% | ||
carloniere | 0 | 499,126,005 | 100% | ||
cjunros | 0 | 2,636,733,791 | 50% | ||
makney | 0 | 4,218,528,137 | 100% | ||
allinduesseldorf | 0 | 457,144,292 | 100% | ||
mujiarreza | 0 | 171,257,848 | 50% | ||
mrgranville | 0 | 439,665,155 | 100% | ||
kennytu | 0 | 323,878,170 | 50% | ||
mohamedsabry | 0 | 162,933,183 | 50% | ||
khairulfahmi92 | 0 | 379,855,271 | 100% | ||
asqalan | 0 | 252,900,448 | 50% | ||
spycenter | 0 | 249,171,312 | 50% | ||
maryjohnson | 0 | 249,760,288 | 50% | ||
omairqazi | 0 | 176,212,748 | 50% | ||
mylittlestar | 0 | 236,755,007 | 50% | ||
dixiesilverminer | 0 | 1,178,399,380 | 50% | ||
herbacianymag | 0 | 3,173,956,132 | 100% | ||
alftheboss | 0 | 520,716,718 | 100% | ||
bdshakib | 0 | 251,496,545 | 50% | ||
gabrielperez0411 | 0 | 250,444,100 | 50% | ||
demondantv | 0 | 8,260,267,857 | 100% | ||
devangbuch | 0 | 226,614,501 | 50% | ||
harris2017 | 0 | 253,155,126 | 50% | ||
adriamguillen | 0 | 238,540,835 | 50% | ||
haunting | 0 | 130,805,524 | 50% | ||
boristy | 0 | 144,059,180 | 50% | ||
darlingomaet | 0 | 284,940,814 | 50% | ||
bcfriday | 0 | 317,810,829 | 75% | ||
dexter24 | 0 | 238,571,688 | 50% | ||
reynoriega | 0 | 235,864,098 | 50% | ||
abdane | 0 | 134,335,220 | 50% | ||
gadrian | 0 | 32,097,702,195 | 100% | ||
neilrichmond | 0 | 245,448,958 | 50% | ||
animecollection | 0 | 417,320,572 | 100% | ||
busytime | 0 | 254,222,876 | 50% | ||
cryptomint | 0 | 71,789,977 | 20% | ||
haikalisifa | 0 | 238,120,730 | 50% | ||
aaquilk10 | 0 | 410,865,711 | 100% | ||
arrahman90 | 0 | 279,669,281 | 50% | ||
szymonwsieci | 0 | 520,535,466 | 100% | ||
hulya.rtk.krsn | 0 | 254,208,236 | 50% | ||
chachikho123 | 0 | 202,796,185 | 50% | ||
lartist-zen | 0 | 168,727,047 | 10% | ||
gifty-e | 0 | 191,237,855 | 50% | ||
gregjava | 0 | 410,496,265 | 50% | ||
steemaniax | 0 | 194,546,168 | 50% | ||
deltor | 0 | 8,083,972,529 | 100% | ||
barutundefteri | 0 | 254,079,834 | 50% | ||
capt.kili | 0 | 523,818,272 | 95% | ||
adamdo | 0 | 818,302,312 | 100% | ||
agrestic | 0 | 379,392,249 | 50% | ||
estg1 | 0 | 254,341,352 | 50% | ||
jarosalawszafran | 0 | 617,233,088 | 20% | ||
mrjokar | 0 | 189,968,828 | 50% | ||
bgmuna | 0 | 179,174,657 | 50% | ||
kurator-polski | 0 | 44,667,547,570 | 100% | ||
bravofer | 0 | 246,726,590 | 50% | ||
reinmar | 0 | 13,099,376,808 | 100% | ||
bloghumberto | 0 | 252,019,174 | 50% | ||
ahmad097 | 0 | 193,540,381 | 50% | ||
dodolzk | 0 | 258,594,697 | 50% | ||
norvicgarcia | 0 | 209,659,317 | 50% | ||
mbahtutorial | 0 | 237,623,501 | 50% | ||
sjs90 | 0 | 373,341,446 | 100% | ||
belvajarandilla | 0 | 235,624,939 | 50% | ||
kelvo | 0 | 131,358,757 | 30% | ||
animesukidesu | 0 | 173,218,263 | 50% | ||
technotroll | 0 | 1,009,650,738 | 50% | ||
trustyourpath | 0 | 252,900,448 | 50% | ||
taywilkins | 0 | 291,413,090 | 50% | ||
outtheshellvlog | 0 | 1,851,448,856 | 50% | ||
beshooo | 0 | 189,781,897 | 50% | ||
cryptobeginner | 0 | 194,322,481 | 50% | ||
budika | 0 | 252,434,084 | 50% | ||
gleidyscegarra | 0 | 254,192,054 | 50% | ||
santarius2 | 0 | 518,850,572 | 100% | ||
yoitsme | 0 | 320,074,995 | 50% | ||
kevinwalton | 0 | 554,477,923 | 100% | ||
herdi.steemit | 0 | 254,545,536 | 50% | ||
khan45 | 0 | 552,276,876 | 100% | ||
bdyabot1 | 0 | 552,144,486 | 100% | ||
missninaholy | 0 | 253,420,175 | 50% | ||
wealth4good | 0 | 245,810,295 | 5% | ||
kaestel | 0 | 253,191,729 | 50% | ||
samantha16 | 0 | 253,591,395 | 50% | ||
mcastre | 0 | 374,619,744 | 100% | ||
jahidul74 | 0 | 256,160,746 | 50% | ||
travelerjoe | 0 | 253,339,748 | 50% | ||
mdeyasin | 0 | 254,100,798 | 50% | ||
rechellomataro | 0 | 249,358,052 | 50% | ||
lykia | 0 | 250,209,929 | 50% | ||
alexverge | 0 | 474,580,514 | 100% | ||
msearles | 0 | 558,469,487 | 50% | ||
deep.blue | 0 | 1,355,047,736 | 100% | ||
rizkiadi | 0 | 248,891,119 | 50% | ||
blogyourlife | 0 | 253,404,359 | 50% | ||
flagawhale | 0 | 20,357,932,293 | 52% | ||
kacperski | 0 | 528,170,567 | 100% | ||
dynet | 0 | 206,190,454 | 50% | ||
giddensk7 | 0 | 101,578,408 | 25% | ||
k4v2n | 0 | 253,125,059 | 50% | ||
altogo | 0 | 325,327,106 | 10% | ||
irelandscape | 0 | 13,849,629,490 | 100% | ||
opluke | 0 | 249,259,087 | 50% | ||
mirazbd365 | 0 | 253,429,634 | 50% | ||
realredimi2 | 0 | 254,227,757 | 50% | ||
glodniwiedzy | 0 | 19,184,816,208 | 100% | ||
paulove | 0 | 253,273,630 | 50% | ||
altcoinfantasy | 0 | 162,157,122 | 10% | ||
lianbloog | 0 | 226,067,802 | 50% | ||
dinaislamdina | 0 | 253,632,207 | 50% | ||
benkweller | 0 | 17,020,597,520 | 10% | ||
ernoldlvb | 0 | 73,637,343 | 50% | ||
suchy | 0 | 1,313,406,657 | 100% | ||
i-have-tested | 0 | 542,135,022 | 100% | ||
grwd | 0 | 1,616,683,920 | 100% | ||
muhammad.iqbal | 0 | 167,806,557 | 50% | ||
kaplat | 0 | 213,286,991 | 50% | ||
stefansv | 0 | 236,460,391 | 50% | ||
ill-esha | 0 | 1,397,131,873 | 50% | ||
crazyluv | 0 | 310,934,296 | 50% | ||
leeyen23 | 0 | 347,362,584 | 50% | ||
abbasi1986 | 0 | 160,639,521 | 50% | ||
catherinemds | 0 | 182,580,363 | 50% | ||
ilmondoditea | 0 | 292,116,782 | 50% | ||
anwar21 | 0 | 98,226,941 | 50% | ||
albarransama | 0 | 189,721,588 | 50% | ||
oliens | 0 | 252,975,150 | 50% | ||
thanatospharos | 0 | 371,154,326 | 85% | ||
nessaur | 0 | 254,272,554 | 50% | ||
ryan12 | 0 | 242,914,728 | 50% | ||
erhanulusoy | 0 | 453,581,487 | 100% | ||
meme-nexus | 0 | 1,435,779,958 | 50% | ||
rosenderevies | 0 | 215,467,548 | 50% | ||
candnbradley | 0 | 102,125,782 | 25% | ||
smer | 0 | 274,204,368 | 50% | ||
egheprincez | 0 | 234,385,426 | 50% | ||
achrafo | 0 | 446,999,314 | 50% | ||
samcofy | 0 | 251,152,372 | 50% | ||
dubbio | 0 | 254,099,201 | 50% | ||
aikee | 0 | 204,636,109 | 50% | ||
polyhistor | 0 | 552,284,343 | 100% | ||
the-tourist | 0 | 541,111,928 | 100% | ||
coingump | 0 | 228,105,083 | 50% | ||
tekeliferhat | 0 | 181,319,540 | 50% | ||
ikkelins | 0 | 101,805,486 | 25% | ||
winkandwoo | 0 | 254,348,542 | 50% | ||
jsolon | 0 | 252,309,826 | 50% | ||
sazid36 | 0 | 222,102,040 | 50% | ||
mayorhero | 0 | 251,716,478 | 50% | ||
deus-vult | 0 | 264,856,000 | 100% | ||
dacosta | 0 | 102,162,599 | 25% | ||
nahin9 | 0 | 191,536,419 | 50% | ||
jaber-hossain70 | 0 | 189,444,032 | 50% | ||
neutralizer | 0 | 2,263,505,350 | 100% | ||
randohealer | 0 | 2,823,770,498 | 100% | ||
putra01 | 0 | 265,072,010 | 50% | ||
loosely-lucid | 0 | 542,316,723 | 90% | ||
vigna | 0 | 728,686,976 | 5% | ||
johnsonlai | 0 | 213,330,129 | 50% | ||
susantabinod | 0 | 4,286,401,508 | 25% | ||
iammitchell | 0 | 212,655,790 | 50% | ||
japasep16 | 0 | 195,476,413 | 50% | ||
geekmind | 0 | 243,354,759 | 50% | ||
atacapella | 0 | 1,327,539,929 | 50% | ||
akram7 | 0 | 178,832,441 | 50% | ||
vinothkanna | 0 | 254,649,878 | 50% | ||
izzymiyake | 0 | 253,369,677 | 50% | ||
gnaimul | 0 | 166,248,101 | 50% | ||
krasnalek | 0 | 2,597,436,939 | 100% | ||
steempeak | 0 | 20,012,403,716 | 66% | ||
kengtong | 0 | 248,639,322 | 50% | ||
dulce.amor | 0 | 253,155,126 | 50% | ||
alexander28hrnz | 0 | 102,118,743 | 25% | ||
sonidourbanobers | 0 | 252,666,005 | 50% | ||
omegakane | 0 | 247,482,161 | 50% | ||
gpwebers | 0 | 236,168,947 | 50% | ||
hakan1988 | 0 | 163,966,736 | 50% | ||
romanleopold | 0 | 2,923,572,755 | 50% | ||
jakecrypto | 0 | 263,893,451 | 50% | ||
crypt0bear | 0 | 174,061,557 | 50% | ||
rewardsonly | 0 | 442,923,192 | 100% | ||
genesis171 | 0 | 247,472,340 | 50% | ||
siul.joar | 0 | 254,312,905 | 50% | ||
chiqui03 | 0 | 180,433,175 | 50% | ||
bikeitjohn | 0 | 238,831,168 | 50% | ||
zephyr119 | 0 | 223,558,155 | 50% | ||
devitech | 0 | 177,033,258 | 50% | ||
supernews | 0 | 164,988,802 | 50% | ||
rainbowrachel | 0 | 1,112,021,543 | 22% | ||
ahsanabdullah | 0 | 214,157,381 | 50% | ||
mittalamit284 | 0 | 216,675,516 | 50% | ||
alejandro99 | 0 | 161,776,529 | 50% | ||
milayosawa | 0 | 199,205,383 | 30% | ||
theryhus | 0 | 239,498,090 | 50% | ||
annnaa | 0 | 341,702,299 | 50% | ||
disruptivas | 0 | 1,808,908,704 | 50% | ||
madonna2018 | 0 | 253,952,696 | 50% | ||
steemitarcher | 0 | 253,656,161 | 50% | ||
steemitgunner | 0 | 454,766,076 | 85% | ||
steemitmagician | 0 | 452,936,683 | 85% | ||
fredrick4u | 0 | 102,109,017 | 25% | ||
johntravis | 0 | 551,188,047 | 100% | ||
firman2908 | 0 | 174,851,588 | 50% | ||
the2nubgroup | 0 | 186,196,288 | 50% | ||
umut1905 | 0 | 170,520,970 | 50% | ||
marzuki-r | 0 | 248,335,032 | 50% | ||
rucy | 0 | 101,857,078 | 25% | ||
atheology | 0 | 454,284,368 | 50% | ||
vellotinna | 0 | 253,926,295 | 50% | ||
nullahnung | 0 | 107,601,015 | 26% | ||
honshu | 0 | 90,482,084 | 30% | ||
myoha7 | 0 | 209,624,289 | 50% | ||
effortless | 0 | 193,163,259 | 50% | ||
amristeemit | 0 | 195,504,982 | 50% | ||
broadcaster | 0 | 248,929,865 | 50% | ||
qaiserali | 0 | 254,166,418 | 50% | ||
konradxxx3 | 0 | 1,045,067,618 | 100% | ||
theminnowhelper | 0 | 254,161,753 | 50% | ||
firdauz | 0 | 253,165,191 | 50% | ||
starhamzat | 0 | 252,693,593 | 50% | ||
tahera | 0 | 251,897,946 | 50% | ||
celebritypoet | 0 | 245,609,640 | 50% | ||
alexander38 | 0 | 551,188,945 | 100% | ||
smartmeme | 0 | 324,218,619 | 20% | ||
fitat40 | 0 | 59,782,936,309 | 100% | ||
grisvian | 0 | 437,948,438 | 100% | ||
the2nubmemes | 0 | 184,078,703 | 50% | ||
brainchild | 0 | 553,057,565 | 100% | ||
bathijp | 0 | 253,947,378 | 50% | ||
artcreator | 0 | 182,281,400 | 50% | ||
banglun | 0 | 164,935,018 | 50% | ||
jumpup | 0 | 253,947,378 | 50% | ||
mojacko | 0 | 419,985,895 | 50% | ||
flowerfairy | 0 | 88,393,378 | 10% | ||
syahrin | 0 | 209,572,403 | 50% | ||
gormogon | 0 | 11,701,290,135 | 5% | ||
vhorvath | 0 | 253,947,378 | 50% | ||
sagor94 | 0 | 251,274,931 | 49.49% | ||
drfrankensence | 0 | 253,947,378 | 50% | ||
toninoti | 0 | 177,725,895 | 50% | ||
allenblue405 | 0 | 221,720,729 | 50% | ||
gabriela2010 | 0 | 455,004,684 | 85% | ||
tysir | 0 | 248,985,186 | 50% | ||
nazmul79 | 0 | 225,051,422 | 50% | ||
remind-me | 0 | 1,614,457,504 | 100% | ||
blogbooster | 0 | 238,274,903 | 15% | ||
techupdate | 0 | 285,743,006 | 50% | ||
miracle24 | 0 | 139,244,282 | 50% | ||
prosistem | 0 | 103,011,802 | 30% | ||
xhevat | 0 | 254,613,388 | 50% | ||
mafou23 | 0 | 253,496,928 | 50% | ||
golden-man | 0 | 191,585,188 | 50% | ||
victor-andah | 0 | 252,900,448 | 50% | ||
rarcenal | 0 | 197,330,279 | 50% | ||
mwamin7 | 0 | 251,166,522 | 50% | ||
mindbuilder-sc | 0 | 214,007,775 | 50% | ||
jpgalih | 0 | 248,714,154 | 50% | ||
galihtruff | 0 | 195,362,149 | 50% | ||
freakout-pl | 0 | 831,413,301 | 100% | ||
babalsilau | 0 | 253,385,340 | 50% | ||
mzh.hamim | 0 | 254,470,333 | 50% | ||
juanguillen | 0 | 254,168,455 | 50% | ||
dexvid | 0 | 253,322,372 | 50% | ||
cringytv | 0 | 254,480,379 | 50% | ||
mahmudulhassan | 0 | 1,637,132,884 | 50% | ||
selinnball | 0 | 415,702,510 | 100% | ||
whyken | 0 | 239,555,593 | 50% | ||
lenifty | 0 | 253,908,727 | 50% | ||
boyaceh | 0 | 236,446,777 | 50% | ||
femidada | 0 | 165,858,687 | 50% | ||
payinstant | 0 | 229,050,063 | 50% | ||
wakanda | 0 | 1,309,151,882 | 50% | ||
reungkhoem | 0 | 193,838,830 | 50% | ||
ar6467784 | 0 | 252,900,448 | 50% | ||
arianto71 | 0 | 208,122,028 | 50% | ||
mvoalevine | 0 | 240,550,721 | 50% | ||
veteransoffgrid | 0 | 199,690,333 | 50% | ||
princezico | 0 | 250,549,666 | 50% | ||
kcdca96 | 0 | 231,460,777 | 50% | ||
veggie-sloth | 0 | 10,783,421,795 | 100% | ||
oezixxx | 0 | 1,907,975,214 | 100% | ||
leviatan7 | 0 | 6,481,443,083 | 100% | ||
ashfaaaq | 0 | 1,883,021,519 | 50% | ||
johngoad | 0 | 254,517,566 | 100% | ||
caxton | 0 | 101,806,116 | 25% | ||
hawaj2137 | 0 | 203,069,554 | 50% | ||
foxesal | 0 | 327,273,999 | 75% | ||
ziaaa | 0 | 253,607,510 | 50% | ||
lexcreativz | 0 | 253,604,438 | 50% | ||
earnstech | 0 | 253,683,472 | 50% | ||
that.bass.guy | 0 | 530,844,121 | 50% | ||
vtechifie | 0 | 254,450,565 | 50% | ||
teknoteksogutma | 0 | 228,426,666 | 50% | ||
theviberadioshow | 0 | 252,900,448 | 50% | ||
niknik20 | 0 | 253,641,998 | 50% | ||
aleecnavarro | 0 | 254,204,376 | 50% | ||
mechyz12 | 0 | 239,132,117 | 50% | ||
icoshooter | 0 | 225,677,185 | 50% | ||
carlosjaviertl | 0 | 248,406,006 | 50% | ||
dacruz.thevibe | 0 | 102,024,440 | 25% | ||
bertoandes | 0 | 248,593,294 | 50% | ||
freiver | 0 | 246,145,592 | 50% | ||
aceofsteem | 0 | 140,440,872 | 100% | ||
chinwengozi | 0 | 210,541,195 | 50% | ||
xara | 0 | 156,002,381 | 100% | ||
helmimemes | 0 | 481,741,750 | 100% | ||
steemitbamboo | 0 | 137,519,370 | 50% | ||
dgameshop | 0 | 2,125,340,675 | 100% | ||
badman-crypto | 0 | 244,172,712 | 50% | ||
altcoingamer | 0 | 85,171,727 | 50% | ||
newforyou | 0 | 242,083,617 | 100% | ||
cryptoisfun | 0 | 724,329,652 | 50% | ||
seventhsun | 0 | 481,770,051 | 50% | ||
momimalhi | 0 | 843,690,275 | 50% | ||
ekafao | 0 | 217,903,828 | 50% | ||
okangultekin | 0 | 623,029,779 | 100% | ||
rockinggameworld | 0 | 196,221,824 | 50% | ||
adebits | 0 | 169,418,827 | 50% | ||
wallyt | 0 | 365,847,258 | 100% | ||
betoviiil | 0 | 253,955,721 | 50% | ||
nicole24 | 0 | 193,460,427 | 50% | ||
sutda | 0 | 443,020,742 | 100% | ||
masaitv | 0 | 768,947,651 | 20% | ||
toroo | 0 | 101,408,419 | 25% | ||
jazzyon | 0 | 101,407,618 | 25% | ||
huncey | 0 | 253,463,431 | 50% | ||
samsonite18654 | 0 | 167,047,307 | 50% | ||
cerentryn | 0 | 551,158,941 | 100% | ||
pasokon | 0 | 246,494,557 | 50% | ||
invictusxl | 0 | 225,401,287 | 50% | ||
ipally | 0 | 253,282,983 | 50% | ||
elius2289 | 0 | 228,038,592 | 50% | ||
radioboots | 0 | 253,276,791 | 50% | ||
steeming-ali | 0 | 152,391,096 | 50% | ||
bradondamyx12345 | 0 | 195,089,048 | 50% | ||
truthly | 0 | 157,495,732 | 100% | ||
juniorromero | 0 | 418,439,060 | 100% | ||
dayosoyinka | 0 | 225,092,851 | 50% | ||
sayeedrock | 0 | 252,900,448 | 50% | ||
cryptobl4ck | 0 | 253,259,751 | 50% | ||
gio.vanne | 0 | 248,652,298 | 50% | ||
merlinmagic | 0 | 552,693,583 | 100% | ||
withbristy | 0 | 247,186,881 | 50% | ||
cryptouno | 0 | 1,462,529,513 | 100% | ||
digital-aster | 0 | 522,147,999 | 100% | ||
steemstudy | 0 | 551,497,185 | 100% | ||
steem.love | 0 | 551,492,978 | 100% | ||
sakil99 | 0 | 163,047,091 | 50% | ||
thedoubleace123 | 0 | 173,782,066 | 50% | ||
foley | 0 | 184,694,320 | 50% | ||
rosemary4u | 0 | 101,450,224 | 25% | ||
thefauceteer | 0 | 447,768,585 | 100% | ||
ifykiki | 0 | 142,253,142 | 50% | ||
venustory | 0 | 215,161,524 | 50% | ||
untungsiaga | 0 | 253,923,079 | 50% | ||
voxmortis | 0 | 3,627,803,168 | 50% | ||
batuhantastekin | 0 | 234,971,656 | 50% | ||
dong-a | 0 | 213,789,385 | 50% | ||
chavo001 | 0 | 252,900,448 | 50% | ||
nieker | 0 | 254,365,866 | 50% | ||
wideoprezentacje | 0 | 0 | 100% | ||
denkeicui | 0 | 228,489,856 | 50% | ||
scottallen | 0 | 249,971,566 | 50% | ||
henry.englert | 0 | 169,383,085 | 50% | ||
gredetinac | 0 | 553,108,548 | 100% | ||
naayren | 0 | 235,134,634 | 50% | ||
platyrhodon | 0 | 2,681,107,500 | 100% | ||
kelvinikke | 0 | 101,205,012 | 25% | ||
ethanvanderbuilt | 0 | 71,447,300,288 | 100% | ||
sshowoff | 0 | 77,079,490 | 50% | ||
t1050108 | 0 | 191,647,286 | 50% | ||
abdelkrim2015 | 0 | 536,403,878 | 50% | ||
juanl11 | 0 | 254,180,356 | 50% | ||
freshstreetfits | 0 | 374,524,869 | 50% | ||
bluengel | 0 | 655,407,569 | 75% | ||
mrunderstood | 0 | 1,912,261,369 | 50% | ||
whispersit | 0 | 101,585,864 | 25% | ||
rosy1606 | 0 | 254,322,232 | 50% | ||
eddymania | 0 | 101,425,650 | 25% | ||
samaz0r | 0 | 253,957,622 | 50% | ||
synthtology | 0 | 5,397,245,818 | 50% | ||
cheko9 | 0 | 252,849,675 | 50% | ||
regina80 | 0 | 252,256,441 | 50% | ||
aaaaaa-aaaaaakay | 0 | 101,450,224 | 25% | ||
viralasia | 0 | 252,144,905 | 50% | ||
ingpablojosue | 0 | 200,010,530 | 50% | ||
idiongo | 0 | 234,802,218 | 50% | ||
attorneyatlawl | 0 | 245,319,884 | 50% | ||
muhschi4u | 0 | 246,596,425 | 50% | ||
korkorjkk15 | 0 | 98,722,360 | 25% | ||
alim264 | 0 | 253,687,800 | 50% | ||
sugarpie | 0 | 250,832,676 | 50% | ||
akineton | 0 | 679,658,747 | 50% | ||
cryptoaussie | 0 | 254,580,010 | 50% | ||
mamun1237 | 0 | 252,734,704 | 50% | ||
choobymaverick | 0 | 162,864,944 | 50% | ||
korkorjkk | 0 | 101,124,066 | 25% | ||
theinr2inr | 0 | 514,104,983 | 50% | ||
steemfounders | 0 | 3,240,277,838 | 100% | ||
savannahvan | 0 | 11,454,463,967 | 50% | ||
alucian | 0 | 154,276,018 | 100% | ||
majidse | 0 | 113,106,352 | 30% | ||
wolfsniper | 0 | 370,370,337 | 70% | ||
onurjones | 0 | 253,872,941 | 50% | ||
aiberg | 0 | 195,935,776 | 50% | ||
christinebeauty | 0 | 102,317,872 | 25% | ||
lepllach | 0 | 254,465,521 | 50% | ||
raghao | 0 | 1,593,291,116 | 50% | ||
rajesh1000 | 0 | 195,274,857 | 50% | ||
odgbomar | 0 | 253,161,823 | 50% | ||
feederr | 0 | 253,496,928 | 50% | ||
meowcliver | 0 | 859,283,594 | 100% | ||
saifulhuri | 0 | 163,836,714 | 50% | ||
aarush89 | 0 | 253,263,908 | 50% | ||
predict-crypto | 0 | 4,312,773,611 | 2% | ||
alpha-today | 0 | 545,239,480 | 50% | ||
nithin7237 | 0 | 226,817,201 | 50% | ||
saghir | 0 | 146,319,688 | 50% | ||
dktrending341 | 0 | 207,584,974 | 50% | ||
antisocialian | 0 | 249,195,213 | 50% | ||
hitesh0898 | 0 | 253,888,673 | 50% | ||
sanama2z | 0 | 213,858,545 | 50% | ||
korincarvajal | 0 | 253,652,296 | 50% | ||
darwindelacruz | 0 | 555,362,590 | 100% | ||
ancgci | 0 | 174,352,145 | 50% | ||
stone1010 | 0 | 101,966,168 | 25% | ||
yudithluz | 0 | 249,941,004 | 50% | ||
kamtasia | 0 | 133,203,943 | 50% | ||
frimpz | 0 | 87,622,669 | 25% | ||
pandina | 0 | 183,143,206 | 50% | ||
sol.ahmad | 0 | 217,941,531 | 50% | ||
nituanuj786 | 0 | 747,073,715 | 50% | ||
mudassarhussain | 0 | 228,249,267 | 50% | ||
pradumngaur | 0 | 253,583,501 | 50% | ||
sabamalik | 0 | 303,111,646 | 50% | ||
godofredo | 0 | 416,075,853 | 50% | ||
josemaria | 0 | 72,204,997 | 50% | ||
chriswilson | 0 | 248,635,947 | 50% | ||
cyrusik | 0 | 2,240,627,310 | 100% | ||
shahrukh89 | 0 | 254,421,692 | 50% | ||
funtown | 0 | 408,898,645 | 30% | ||
keremkoz | 0 | 104,789,292 | 30% | ||
esteemapp.rus | 0 | 14,916,668,107 | 100% | ||
guard-of-gamers | 0 | 551,318,846 | 100% | ||
dreamfirefly | 0 | 290,733,874 | 50% | ||
adamaslam | 0 | 2,143,284,809 | 50% | ||
letzsteem | 0 | 235,271,619 | 50% | ||
mamun05 | 0 | 225,975,540 | 50% | ||
princezakir | 0 | 237,783,289 | 50% | ||
abhay.singh | 0 | 281,336,710 | 100% | ||
mikofs31 | 0 | 254,324,582 | 50% | ||
tanvir.mysterio | 0 | 254,507,790 | 50% | ||
alatomz | 0 | 408,939,825 | 50% | ||
mrpritam | 0 | 248,569,335 | 50% | ||
shtefand | 0 | 253,382,190 | 50% | ||
jhonnfreiny | 0 | 166,242,017 | 50% | ||
minnowwboster | 0 | 190,550,224 | 50% | ||
socynical | 0 | 241,407,901 | 50% | ||
nanyiveliz | 0 | 252,473,671 | 50% | ||
gameeit | 0 | 4,730,715,717 | 100% | ||
bitcoinmee | 0 | 190,008,033 | 50% | ||
semtroneum | 0 | 3,120,712,125 | 30% | ||
sohelsarowar | 0 | 218,046,253 | 50% | ||
anarcist | 0 | 362,648,890 | 50% | ||
andydream | 0 | 90,787,545 | 50% | ||
santiagoguillen | 0 | 252,809,753 | 50% | ||
kaczynski | 0 | 125,282,600 | 100% | ||
manimani | 0 | 235,596,418 | 1% | ||
juankrk4 | 0 | 253,442,802 | 50% | ||
jusbe | 0 | 254,456,177 | 50% | ||
nirob44 | 0 | 253,963,958 | 50% | ||
silent678 | 0 | 403,468,734 | 100% | ||
wikiaan | 0 | 550,430,148 | 100% | ||
angelcg22 | 0 | 252,835,978 | 50% |
Great write up. I’ve been using [Steeminvite.com](https://steeminvite.com) by @pharesim, which now supports account claiming, and think it deserves some love as a tool too! It also incorporates sending invite emails etc. to help with the promotional process.
author | bryan-imhoff |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t225838300z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1","users":["pharesim"],"links":["https://steeminvite.com"]} |
created | 2018-10-23 22:58:39 |
last_update | 2018-10-23 23:06:27 |
depth | 1 |
children | 3 |
last_payout | 2018-10-30 22:58:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.346 HBD |
curator_payout_value | 0.105 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 258 |
author_reputation | 71,780,425,099,152 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,920,955 |
net_rshares | 403,738,693,987 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 390,335,860,795 | 10% | ||
edb | 0 | 8,173,624,245 | 50% | ||
tomosan | 0 | 518,167,775 | 100% | ||
santarius | 0 | 4,294,321,827 | 10% | ||
davidpatrick | 0 | 416,719,345 | 100% |
You are right! I didn't knew that SteemInvite also added a support for claimed accounts: .png)
author | noisy |
---|---|
permlink | re-bryan-imhoff-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t231133016z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://cdn.steemitimages.com/DQmV6MeA6NLXVTiXZYHDAof9HLAUvd1JQZWWe8EFQ5xPXfp/Selection_999(402).png"],"app":"steemit/0.1"} |
created | 2018-10-23 23:11:33 |
last_update | 2018-10-23 23:11:33 |
depth | 2 |
children | 0 |
last_payout | 2018-10-30 23:11:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 218 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,473 |
net_rshares | 0 |
I recently wrote this post: https://steemit.com/steem/@santarius/available-registration-methods-on-steem However, I have the impression that with the new tools that blockchain offers, it will quickly become outdated :P
author | santarius |
---|---|
permlink | re-bryan-imhoff-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t230124048z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steem/@santarius/available-registration-methods-on-steem"],"app":"steemit/0.1"} |
created | 2018-10-23 23:01:24 |
last_update | 2018-10-23 23:15:51 |
depth | 2 |
children | 0 |
last_payout | 2018-10-30 23:01: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 | 220 |
author_reputation | 13,346,463,584,839 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,078 |
net_rshares | 12,977,320,810 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edb | 0 | 12,977,320,810 | 80% |
Tried to use it with 4400+ SP available. Had something like 9.1 TRC. Tough luck, discounted account was 9.4 TRC. Tried again with 4700+ SP Tough luck, discounted account price had climbed to 10.1 TRC. "The system" doesn't want me inviting people to steem it would seem. So I just delegated my SP to for-profit bid-bots and started focusing on other opportunities. Because obviously for-profit bid-bots are the Darwinian winners in the steem system. Survival of the fittest. It's obvious for-profit bid-bots are the fittest "organism" in the steem eco-system and no amount of idealism from @pharesim and other well-intentioned people is going to change that. Memento communism - a very humanistic ideology ... until it leads in practice to survival of the fittest: Stalin
author | sorin.cristescu |
---|---|
permlink | re-bryan-imhoff-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t105248297z |
category | steem |
json_metadata | {"tags":["steem"],"users":["pharesim"],"app":"steemit/0.1"} |
created | 2018-10-24 10:52:51 |
last_update | 2018-10-24 10:52:51 |
depth | 2 |
children | 0 |
last_payout | 2018-10-31 10:52:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.094 HBD |
curator_payout_value | 0.030 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 772 |
author_reputation | 256,819,409,712,090 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,951,642 |
net_rshares | 110,068,299,069 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sorin.cristescu | 0 | 44,132,252,027 | 100% | ||
ressolid | 0 | 65,936,047,042 | 100% |
Hi @noisy, I'm @checky ! While checking the mentions made in this post I noticed that @holer80 doesn't exist on Steem. Did you mean to write @<em></em>hol<strong>g</strong>er80 ? ###### If you found this comment useful, consider upvoting it to help keep this bot running. You can see a list of all available commands by replying with `!help`.
author | checky |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system |
category | steem |
json_metadata | "{"app":"checky/0.2.4","details":{"holer80":["> this feature:\n> \n> <center></center>\n> \n> \n> ##### Using Python Script, with beem library\n> \n> \n> 1. Open [article created by <strong>@<em></em>holer80</strong>](https://www.steembr.com/beem/@holger80/claiming-and-creating-a-discounted-account-using-beem) and copy `claim_account.py` script\n> 2. install python `beem` package\n> 3. run `claim_account.py`\n> 4. Provide a"]},"format":"markdown","tags":["mentions","bot","checky"]}" |
created | 2018-10-23 22:09:06 |
last_update | 2018-10-23 22:09:06 |
depth | 1 |
children | 1 |
last_payout | 2018-10-30 22:09:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.063 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 343 |
author_reputation | 933,802,853,502 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,918,902 |
net_rshares | 73,420,143,464 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
noisy | 0 | 18,125,211,702 | 1% | ||
edb | 0 | 8,255,996,708 | 50% | ||
sorin.cristescu | 0 | 14,439,540,138 | 51% | ||
smjn | 0 | 32,345,606,555 | 25% | ||
newforyou | 0 | 253,788,361 | 100% |
that was helpful! Thank you! :)
author | noisy |
---|---|
permlink | re-checky-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t221150304z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-23 22:11:51 |
last_update | 2018-10-23 22:11:51 |
depth | 2 |
children | 0 |
last_payout | 2018-10-30 22:11:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 73,919,046 |
net_rshares | 0 |
Great post, I will bookmark this post and try to make an alt account this way!
author | chesatochi |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t013722022z |
category | steem |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem"],"users":[],"links":[],"image":[]} |
created | 2018-10-24 01:37:21 |
last_update | 2018-10-24 01:37:21 |
depth | 1 |
children | 0 |
last_payout | 2018-10-31 01:37:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 235,233,928,560,443 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,927,306 |
net_rshares | 0 |
I didn't try claiming an account yet... Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | cloudspyder |
---|---|
permlink | cloudspyder-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t140256479z |
category | steem |
json_metadata | {"app":"partiko"} |
created | 2018-10-24 14:02:57 |
last_update | 2018-10-24 14:02:57 |
depth | 1 |
children | 0 |
last_payout | 2018-10-31 14:02: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 | 109 |
author_reputation | 8,281,689,777,163 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,962,083 |
net_rshares | 0 |
Hello @noisy! Posted using [Partiko Messaging](https://steemit.com/@partiko)
author | crypto.talk |
---|---|
permlink | crypto-talk-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181109t134348501z |
category | steem |
json_metadata | {"app":"partiko","from_partiko_messaging":true} |
created | 2018-11-09 13:43:51 |
last_update | 2018-11-09 13:43:51 |
depth | 1 |
children | 2 |
last_payout | 2018-11-16 13:43:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 5,672,582,596,884 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,977,181 |
net_rshares | 0 |
hello! :)
author | noisy |
---|---|
permlink | re-cryptotalk-crypto-talk-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181114t103644472z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-11-14 10:36:45 |
last_update | 2018-11-14 10:36:45 |
depth | 2 |
children | 1 |
last_payout | 2018-11-21 10:36: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 | 9 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 75,266,836 |
net_rshares | 0 |
Amazing job on Wise! Let us know when we can help! Posted using [Partiko Messaging](https://steemit.com/@partiko)
author | crypto.talk |
---|---|
permlink | crypto-talk-re-noisy-re-cryptotalk-crypto-talk-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181114t155624231z |
category | steem |
json_metadata | {"app":"partiko","from_partiko_messaging":true} |
created | 2018-11-14 15:56:24 |
last_update | 2018-11-14 15:56:24 |
depth | 3 |
children | 0 |
last_payout | 2018-11-21 15:56: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 | 114 |
author_reputation | 5,672,582,596,884 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,282,731 |
net_rshares | 0 |
What a well written article, BRAVO, keep it up
author | davidpatrick |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t230657822z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-23 23:07:06 |
last_update | 2018-10-23 23:09:30 |
depth | 1 |
children | 0 |
last_payout | 2018-10-30 23:07: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 | 47 |
author_reputation | 1,451,725,763,658 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,295 |
net_rshares | 445,658,858 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davidpatrick | 0 | 445,658,858 | 100% |
Just claimed an account in https://steemd.com/tx/8ca5e2da402ea620b40e2a120adcfe19be3729ba! Thanks for the tutorial of sorts. Also asciinema is awesome.
author | dhimmel |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t002045150z |
category | steem |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem"],"users":[],"links":["https://steemd.com/tx/8ca5e2da402ea620b40e2a120adcfe19be3729ba!"],"image":[]} |
created | 2018-10-24 00:20:45 |
last_update | 2018-10-24 00:20:45 |
depth | 1 |
children | 3 |
last_payout | 2018-10-31 00:20:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.698 HBD |
curator_payout_value | 0.228 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 39,788,295,023,882 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,924,192 |
net_rshares | 813,098,487,229 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
norbu | 0 | 25,169,527,513 | 20% | ||
dhimmel | 0 | 787,107,982,799 | 100% | ||
jadabug | 0 | 536,785,072 | 2.5% | ||
cheneats | 0 | 284,191,845 | 60% |
yeah. I love it! : )
author | noisy |
---|---|
permlink | re-dhimmel-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t002443560z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 00:24:42 |
last_update | 2018-10-24 00:24:42 |
depth | 2 |
children | 2 |
last_payout | 2018-10-31 00:24: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 | 20 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 73,924,328 |
net_rshares | 756,656,259,092 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dhimmel | 0 | 756,656,259,092 | 100% |
Haha yeah, I recently created a [tutorial](https://asciinema.org/a/205085?speed=2) for our manubot software and exported it to GIF and [animated SVG](https://raw.githubusercontent.com/greenelab/manubot/master/media/terminal-recordings/manubot-cite-cast.svg?sanitize=true).  I gotta get back to [my PR](https://github.com/marionebl/svg-term-cli/pull/37) to add a `--speed` option to `svg-term-cli`, which is the utility for exporting asciicasts to SVGs.
author | dhimmel |
---|---|
permlink | re-noisy-re-dhimmel-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t221918892z |
category | steem |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem"],"users":[],"links":["https://asciinema.org/a/205085?speed=2","https://raw.githubusercontent.com/greenelab/manubot/master/media/terminal-recordings/manubot-cite-cast.svg?sanitize=true","https://github.com/marionebl/svg-term-cli/pull/37"],"image":["https://github.com/greenelab/manubot/raw/a008126b39e3bd4b80ebaa5af9f9fa2f30b3a670/media/terminal-recordings/manubot-cite-cast.gif"]} |
created | 2018-10-24 22:19:18 |
last_update | 2018-10-24 22:19:18 |
depth | 3 |
children | 1 |
last_payout | 2018-10-31 22:19:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.750 HBD |
curator_payout_value | 0.245 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 588 |
author_reputation | 39,788,295,023,882 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,986,534 |
net_rshares | 873,344,567,366 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
k0dlaty | 0 | 498,540,113 | 100% | ||
dhimmel | 0 | 871,783,047,136 | 100% | ||
giesela | 0 | 457,178,422 | 100% | ||
hdu | 0 | 605,801,695 | 5% |
Wanted to make you aware of this option for getting accounts from bid-bot operators. Awaiting further interest. [Request discounted account from bidbot](https://staging.busy.org/@disregardfiat/solutions-for-hf20)
author | dlux-io |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181025t035456893z |
category | steem |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem"],"users":["disregardfiat"],"links":["https://staging.busy.org/@disregardfiat/solutions-for-hf20"],"image":[]} |
created | 2018-10-25 03:54:57 |
last_update | 2018-10-25 03:54:57 |
depth | 1 |
children | 0 |
last_payout | 2018-11-01 03:54: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 | 214 |
author_reputation | 119,095,558,103,977 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,000,480 |
net_rshares | 0 |
Thanks for a great overview!
author | donkeypong |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t004142848z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 00:41:45 |
last_update | 2018-10-24 00:41:45 |
depth | 1 |
children | 0 |
last_payout | 2018-10-31 00:41: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 | 28 |
author_reputation | 431,667,636,679,304 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,925,061 |
net_rshares | 0 |
Alright I think I will begin the account claiming process right away > So, if someone will claim 100 accounts, it doesn't mean that this person created 100 new accounts. This mean that tomorrow, in a month or any point in the future this person will be able to create 1, 2 or up to 100 accounts instantly without extra cost. *without extra cost* in waiting time or money/steem?
author | empato365 |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t230714122z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-23 23:07:00 |
last_update | 2018-10-23 23:07:00 |
depth | 1 |
children | 1 |
last_payout | 2018-10-30 23:07:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 379 |
author_reputation | 24,028,324,704,929 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,293 |
net_rshares | 0 |
without waiting or money/steem. Claims costs Resource Credits... but if you already have pending claims, then this is free.
author | noisy |
---|---|
permlink | re-empato365-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t233404600z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-23 23:34:06 |
last_update | 2018-10-23 23:34:06 |
depth | 2 |
children | 0 |
last_payout | 2018-10-30 23:34: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 | 123 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 73,922,420 |
net_rshares | 21,492,202,007 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
empato365 | 0 | 21,492,202,007 | 100% |
Hi. That steemconect link gives me an error?
author | intrepidphotos |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t230043141z |
category | steem |
json_metadata | {"tags":["steem"],"community":"steempeak","app":"steempeak"} |
created | 2018-10-23 23:00:45 |
last_update | 2018-10-23 23:00:45 |
depth | 1 |
children | 2 |
last_payout | 2018-10-30 23:00: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 | 45 |
author_reputation | 583,698,312,014,318 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,040 |
net_rshares | 12,398,519,592 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edb | 0 | 11,972,447,224 | 75% | ||
davidpatrick | 0 | 426,072,368 | 100% |
Thank you. There was a typo (a missing `space` (or encoded space as `%20`) between `0.000` and `STEEM`). Should be ok now.
author | noisy |
---|---|
permlink | re-intrepidphotos-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t230932737z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-23 23:09:33 |
last_update | 2018-10-23 23:09:33 |
depth | 2 |
children | 1 |
last_payout | 2018-10-30 23:09:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,390 |
net_rshares | 0 |
Thanks. I will check it out again.
author | intrepidphotos |
---|---|
permlink | re-noisy-re-intrepidphotos-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t231620517z |
category | steem |
json_metadata | {"tags":["steem"],"community":"steempeak","app":"steempeak"} |
created | 2018-10-23 23:16:21 |
last_update | 2018-10-23 23:16:21 |
depth | 3 |
children | 0 |
last_payout | 2018-10-30 23:16:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 583,698,312,014,318 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,665 |
net_rshares | 0 |
4252 SP!?!?
author | irelandscape |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t084743989z |
category | steem |
json_metadata | {"tags":["steem"],"community":"steempeak","app":"steempeak"} |
created | 2018-10-24 08:47:45 |
last_update | 2018-10-24 08:47:45 |
depth | 1 |
children | 3 |
last_payout | 2018-10-31 08:47: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 | 12 |
author_reputation | 15,380,678,988,494 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,945,797 |
net_rshares | 0 |
Witnesses can change variables `account_subsidy_budget` and `account_subsidy_decay` and influence how much new claims could be made: https://github.com/steemit/steem/blob/master/doc/witness_parameters.md#account_subsidy_budget
author | noisy |
---|---|
permlink | re-irelandscape-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t091012228z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://github.com/steemit/steem/blob/master/doc/witness_parameters.md#account_subsidy_budget"],"app":"steemit/0.1"} |
created | 2018-10-24 09:10:12 |
last_update | 2018-10-24 09:10:12 |
depth | 2 |
children | 2 |
last_payout | 2018-10-31 09:10: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 | 227 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 73,946,966 |
net_rshares | 0 |
OK. Because at the moment I would suspect that less than 1% of users are able to claim a free account.
author | irelandscape |
---|---|
permlink | re-noisy-re-irelandscape-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t094718528z |
category | steem |
json_metadata | {"tags":["steem"],"community":"steempeak","app":"steempeak"} |
created | 2018-10-24 09:47:18 |
last_update | 2018-10-24 09:47:18 |
depth | 3 |
children | 1 |
last_payout | 2018-10-31 09:47: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 | 102 |
author_reputation | 15,380,678,988,494 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,948,696 |
net_rshares | 0 |
Hello from Partiko chat at Partiko round table session #SteemFest Posted using [Partiko Messaging](https://steemit.com/@partiko)
author | jblew |
---|---|
permlink | jblew-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181109t133200918z |
category | steem |
json_metadata | {"app":"partiko","from_partiko_messaging":true} |
created | 2018-11-09 13:32:03 |
last_update | 2018-11-09 13:32:03 |
depth | 1 |
children | 0 |
last_payout | 2018-11-16 13:32: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 | 129 |
author_reputation | 235,650,801,538 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,976,637 |
net_rshares | 0 |
I see the cost has come down a bit... I am trying to claim as many as I can but have been limited given the increased cost lately. Will try later! Thanks for the information!
author | newageinv |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t231503445z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-23 23:15:03 |
last_update | 2018-10-23 23:15:03 |
depth | 1 |
children | 0 |
last_payout | 2018-10-30 23:15: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 | 176 |
author_reputation | 265,254,588,985,810 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,613 |
net_rshares | 0 |
Very helpful post! Thank you.
author | oflyhigh |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t235057686z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-23 23:50:57 |
last_update | 2018-10-23 23:50:57 |
depth | 1 |
children | 1 |
last_payout | 2018-10-30 23:50: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 | 29 |
author_reputation | 6,424,331,868,582,728 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,923,093 |
net_rshares | 0 |
Big Brother O, are you going to claim a lot of account? lol?
author | shenchensucc |
---|---|
permlink | re-oflyhigh-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t001505106z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 00:15:06 |
last_update | 2018-10-24 00:15:06 |
depth | 2 |
children | 0 |
last_payout | 2018-10-31 00:15: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 | 60 |
author_reputation | 100,205,759,373,709 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,924,001 |
net_rshares | 0 |
So let's have a critical look at what we are talking about here. Before HF20 I have embarked 8 friends using create_account_with_delegation. Basically, almost anyone with 23 SP or more was able to onboard a new user by using steemconnect to "gift" 0.1 SP and delegate 20 SP ... temporarily ... as soon as I hade created that account I was "undelegating" (claiming back, pending a 1 month wait time) 17 SP because a new account with 3 SP can do almost anything a newbie on Steemit wants to do After HF20, with between 4400 and 4700 SP I was unable to claim any (none, zero, nada, zilch) discounted accounts - each time I looked (and no, I don't have the time and inclination to track the price change of discounted accounts), claiming one required more RC than I had. When I had 4700 SP for instance I was at about 9 TRC but the price was above 10 TRC for an account ... Now of course I could have paid straight from the pocket the 3 SP (burned) in order to onboard someone (which was available before as well and I've used it also). Except that my experience showed that when something is offered "for free" most people tend not to value it. So not knowing in advance whether a given friend would take to steem with relish or will simply ignore his new account ... I became unwilling to risk 3 steem to pay straightaway ... but I was willing to take a chance by paying 0.1 STEEM and using delegation (recoverable) for the rest ... That second path is closed now. Which means that, all things being equal (forget paying, already possible before), anyone with less than 5000 SP is now unable to onboard a friend whenever he has the opportunity, whereas before anyone from 24 SP upward was able to do it. Now we look at the data you published and who has claimed discounted accounts ... And what do we see ? **From the top 10, 6 are ... bid-bots!** smartsteem, buildawhale, postpromoter, appreciator, rocky1, upme are bid bots ! So please do tell me: should we be celebrating that HF 20 has made user onboarding harder for normal steemians (those below 5000 SP) while allowing the bid-bot operators the ability to hoard discounted accounts ? **This was the goal of HF20 ? Allow bid-bot operators to claim free discounted accounts ?** Of course criticizing is easy when one doesn't offer an alternative. I believe that resources in this eco-system (and as it happens, Steemit Inc holds most of those resources) should be focused on creating and bringing to the market a product that allows "normies" (as @ned nicely calls them) to get as smooth an experience as possible up to the point they even forget there's a blockchain behind. Whoever has enough resources should rather deploy product development and marketing dollars to create a true competitor to Medium and/or Quora and/or other such web applications that make "the heart of the web beat" "Steem moon" won't come from convincing crypto people to sell TRX, XVG, INS or whatever coin they fancy today and buy STEEM instead. Moon will come when we'll have not 1 000 000 but 10 000 000 or 100 000 000 tx/day done predominantly by actual people active on the network. And to have those, we first need to onboard those people who are going to transact ... **Are the bid-bot operators who are currently hoarding subsidized accounts going to on-board those normies?** Anyone out there believes that ? I hope I'm wrong to be distrustful HF 20 just made onboarding costlier and harder. The exact opposite of what steem needed.
author | sorin.cristescu |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t230549343z |
category | steem |
json_metadata | {"tags":["steem"],"users":["ned"],"app":"steemit/0.1"} |
created | 2018-10-23 23:05:51 |
last_update | 2018-10-23 23:05:51 |
depth | 1 |
children | 16 |
last_payout | 2018-10-30 23:05:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.260 HBD |
curator_payout_value | 0.075 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,491 |
author_reputation | 256,819,409,712,090 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,248 |
net_rshares | 303,666,928,133 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ats-david | 0 | 28,974,904,152 | 100% | ||
jaki01 | 0 | 117,556,187,602 | 5% | ||
edb | 0 | 15,740,580,693 | 100% | ||
anthonyadavisii | 0 | 26,529,688,278 | 51% | ||
mys | 0 | 1,185,524,730 | 1% | ||
loshombresdepaco | 0 | 19,228,992,902 | 51% | ||
pixelfan | 0 | 1,112,955,345 | 0.54% | ||
misterakpan | 0 | 9,810,285,210 | 100% | ||
sorin.cristescu | 0 | 27,894,019,214 | 100% | ||
wieske | 0 | 167,488,918 | 100% | ||
smjn | 0 | 32,502,441,536 | 25% | ||
santarius | 0 | 4,297,615,089 | 10% | ||
stimeet | 0 | 544,793,588 | 100% | ||
mindtrap | 0 | 16,223,084,840 | 10% | ||
grwd | 0 | 1,650,597,978 | 100% | ||
newforyou | 0 | 247,768,058 | 100% |
I registered for a 2nd Steem account some weeks ago and I'm still working. I'm feeling like I was denied. Should I continue to wait? Is it possible that Steemit will not approve a 2nd account? Perhaps, I should just pay for a 2nd account.
author | joeyarnoldvn |
---|---|
permlink | ptwip1 |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-06-30 07:41:24 |
last_update | 2019-06-30 07:41:24 |
depth | 2 |
children | 0 |
last_payout | 2019-07-07 07:41: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 | 238 |
author_reputation | 51,914,802,064,074 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 87,560,271 |
net_rshares | 0 |
just a quick comment regarding account creation options: account creating using delegation is still a valid option AFAIK
author | mcfarhat |
---|---|
permlink | re-sorincristescu-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t092102510z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 09:21:12 |
last_update | 2018-10-24 09:21:12 |
depth | 2 |
children | 4 |
last_payout | 2018-10-31 09:21: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 | 120 |
author_reputation | 150,672,349,167,341 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,947,493 |
net_rshares | 0 |
I am not sure about that... I would need to double check that.
author | noisy |
---|---|
permlink | re-mcfarhat-re-sorincristescu-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t094208014z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 09:42:09 |
last_update | 2018-10-24 09:42:09 |
depth | 3 |
children | 1 |
last_payout | 2018-10-31 09:42: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 | 62 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 73,948,420 |
net_rshares | 0 |
Unfortunately not. create_account_with_delegation() has been deprecated with HF20. I'm not clear why but it has.
author | sorin.cristescu |
---|---|
permlink | re-mcfarhat-re-sorincristescu-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t104112586z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 10:41:15 |
last_update | 2018-10-24 10:41:15 |
depth | 3 |
children | 1 |
last_payout | 2018-10-31 10:41:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 256,819,409,712,090 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,951,166 |
net_rshares | 43,249,546,222 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sorin.cristescu | 0 | 43,249,546,222 | 100% |
I share a lot of your concerns... not only about bidbots.. but also about @steem account: .png) I was asking this question earlier in few places. I actually started to work on account-creation dashboard to have a possibility to analyze who claimed the most accounts. In theory one potential solution would be... to make Recourse Credits non-linear. It should be more expensive for whales to claim and create accounts and it should be cheaper for minnows. Is that would be ideal? Nope... because there would be then a strong incentive to an abuser to spread SP among 1000 accounts. After reading your comment I realized that my post may seem to be too optimistic. But the truth is... we decided to take a look on this topic because we were afraid of potential abuse. But to prevent an abuse, first we all need to understand how everything works. Also... I believe that it is in best interest of whole community to learn how whales and bit-bots are claiming those accounts, so other people could also do this to equalize this situation somehow...
author | noisy |
---|---|
permlink | re-sorincristescu-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t233241886z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steem"],"image":["https://cdn.steemitimages.com/DQmc5N4nw1euE2bAck2wtMj2cYUEpjaaG5wf4JSnRoo5Y4s/Selection_999(403).png"],"app":"steemit/0.1"} |
created | 2018-10-23 23:32:42 |
last_update | 2018-10-23 23:32:42 |
depth | 2 |
children | 9 |
last_payout | 2018-10-30 23:32: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 | 1,172 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 73,922,364 |
net_rshares | 0 |
I registered for a 2nd account. Will it be approved?
author | joeyarnoldvn |
---|---|
permlink | ptwiql |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-06-30 07:42:21 |
last_update | 2019-06-30 07:42:21 |
depth | 3 |
children | 0 |
last_payout | 2019-07-07 07:42:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 51,914,802,064,074 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 87,560,290 |
net_rshares | 0 |
>But to prevent an abuse, first we all need to understand how everything works. The problem with this being, Steem understood what's going on way, way before it was even public. As is demonstrated by their 18,000 account advantage
author | mobbs |
---|---|
permlink | re-noisy-re-sorincristescu-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t075703701z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 07:57:06 |
last_update | 2018-10-24 07:57:06 |
depth | 3 |
children | 0 |
last_payout | 2018-10-31 07:57: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 | 231 |
author_reputation | 390,553,010,457,151 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,943,480 |
net_rshares | 0 |
The solution I was thinking about is that there would be a maximum number of claimed accounts depending on SP. In this way accounts that do not create accounts cannot claim too many of them. ...or this could simply work like a mana, but how much of it is regenerated globally every day would be decided by Witnesses...
author | santarius |
---|---|
permlink | re-noisy-re-sorincristescu-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t234059086z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-23 23:41:00 |
last_update | 2018-10-23 23:41:12 |
depth | 3 |
children | 2 |
last_payout | 2018-10-30 23:41:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 320 |
author_reputation | 13,346,463,584,839 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,922,713 |
net_rshares | 10,350,362,850 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mobbs | 0 | 10,350,362,850 | 10% |
Actually @steem claiming accounts was the whole point. Previously the only way to on-board was through delegation and for most users that delegated SP came from steem. 100000 new users costed steem 1.5 Million SP in delegation. But steem could do many interesting things with 1.5 Million SP such as supporting projects like fundition or steempress or Utopian. So there was an unhelpful competition between onboarding new users and supporting projects. With RC steem can embark new users with discounted accounts without locking precious SP up. That is a good thing. However I'm not clear why create_account_with_delegation had to be deprecated ...
author | sorin.cristescu |
---|---|
permlink | re-noisy-re-sorincristescu-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t104157619z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 10:42:00 |
last_update | 2018-10-24 10:42:00 |
depth | 3 |
children | 2 |
last_payout | 2018-10-31 10:42:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.085 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 650 |
author_reputation | 256,819,409,712,090 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,951,207 |
net_rshares | 99,389,632,731 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sorin.cristescu | 0 | 28,459,476,044 | 100% | ||
ressolid | 0 | 70,930,156,687 | 100% |
Another thing that Steemit Inc. could and should have directed resources to : bringing great voices to the steem blockchain. If I had been @andrarchy, I would have done whatever it takes to bring Caitlin Long to blog on the steem blockchain rather than on [caitlin-long.com](https://caitlin-long.com/2018/10/23/the-world-needs-more-systemic-thinkers/)
author | sorin.cristescu |
---|---|
permlink | re-noisy-re-sorincristescu-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t105658968z |
category | steem |
json_metadata | {"tags":["steem"],"users":["andrarchy"],"links":["https://caitlin-long.com/2018/10/23/the-world-needs-more-systemic-thinkers/"],"app":"steemit/0.1"} |
created | 2018-10-24 10:57:03 |
last_update | 2018-10-24 10:57:03 |
depth | 3 |
children | 0 |
last_payout | 2018-10-31 10:57:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.084 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 353 |
author_reputation | 256,819,409,712,090 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,951,859 |
net_rshares | 96,938,658,862 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sorin.cristescu | 0 | 27,392,754,205 | 100% | ||
ressolid | 0 | 69,545,904,657 | 100% |
Thank you for taking the time to explain this. This is a great follow up read to the post on RC's that steemitblog just posted.
author | steemengines |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t004701828z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 00:47:03 |
last_update | 2018-10-24 00:47:03 |
depth | 1 |
children | 0 |
last_payout | 2018-10-31 00:47: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 | 127 |
author_reputation | 13,895,357,660,648 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,925,300 |
net_rshares | 0 |
It was an honest mistake. Apologised for the inconvenient caused.
author | steemexpress |
---|---|
permlink | re-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t223754 |
category | steem |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem"],"users":[],"links":[],"image":[]} |
created | 2018-10-23 22:37:54 |
last_update | 2018-10-24 08:33:33 |
depth | 1 |
children | 0 |
last_payout | 2018-10-30 22:37: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 | 65 |
author_reputation | 1,639,324,752,318 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,920,071 |
net_rshares | -17,337,755,033 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
noisy | 0 | -17,773,525,978 | -1% | ||
tomosan | 0 | 0 | 0% | ||
davidpatrick | 0 | 435,770,945 | 100% |
Congratulations @noisy! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@noisy/votes.png?201811070023</td><td>You made more than 13000 upvotes. Your next target is to reach 14000 upvotes.</td></tr> </table> <sub>_[Click here to view your Board of Honor](https://steemitboard.com/@noisy)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/uk1parhd"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmSz7NTFn1sazJvocuqkN7uZFHxAUTJrVYz7zqYEEExXfY/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/uk1parhd">SteemFest³ - SteemitBoard Contest Teaser</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-award-is-ready"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeEYkuDHNp3c9dC6Q5s8Wysi8DrXR89FHAFiu5XoQW8Vr/SteemitBoard_header_Krakow2018.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-award-is-ready">The new Steemfest³ Award is ready!</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-noisy-20181107t013713000z |
category | steem |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-07 01:37:12 |
last_update | 2018-11-07 01:37:12 |
depth | 1 |
children | 0 |
last_payout | 2018-11-14 01:37:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,549 |
author_reputation | 38,975,615,169,260 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,822,461 |
net_rshares | 0 |
Congratulations @noisy! You have received a personal award! [](http://steemitboard.com/@noisy) SteemFest 3 Attendee <sub>_Click on the badge to view your Board of Honor._</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/uk1parhd"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmSz7NTFn1sazJvocuqkN7uZFHxAUTJrVYz7zqYEEExXfY/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/uk1parhd">SteemFest³ - SteemitBoard Contest Teaser</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-award-is-ready"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeEYkuDHNp3c9dC6Q5s8Wysi8DrXR89FHAFiu5XoQW8Vr/SteemitBoard_header_Krakow2018.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/the-new-steemfest-award-is-ready">The new Steemfest³ Award is ready!</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-noisy-20181107t162447000z |
category | steem |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-07 16:24:48 |
last_update | 2018-11-07 16:24:48 |
depth | 1 |
children | 0 |
last_payout | 2018-11-14 16:24: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 | 1,275 |
author_reputation | 38,975,615,169,260 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,862,856 |
net_rshares | 0 |
Congratulations @noisy! You received a personal award! <table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@noisy/msc2018.png</td><td>Thank you for your participation in the "Meet The Steemians" contest in Kraków. We hope you enjoyed it and made lots of new friends. See you at SteemFest4!</td></tr></table> <sub>_[Click here to view your Board of Honor](https://steemitboard.com/@noisy)_</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes">Meet the Steemians Contest - The results, the winners and the prizes</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed">Meet the Steemians Contest - Special attendees revealed</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-noisy-20181119t143811000z |
category | steem |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-19 14:38:12 |
last_update | 2018-11-19 14:38:12 |
depth | 1 |
children | 0 |
last_payout | 2018-11-26 14:38: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 | 2,029 |
author_reputation | 38,975,615,169,260 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,558,597 |
net_rshares | 0 |
Congratulations @noisy! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@noisy/commented.png?201811201050</td><td>You got more than 3750 replies. Your next target is to reach 4000 replies.</td></tr> </table> <sub>_[Click here to view your Board of Honor](https://steemitboard.com/@noisy)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes">Meet the Steemians Contest - The results, the winners and the prizes</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed">Meet the Steemians Contest - Special attendees revealed</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-noisy-20181120t142711000z |
category | steem |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-20 14:27:09 |
last_update | 2018-11-20 14:27:09 |
depth | 1 |
children | 0 |
last_payout | 2018-11-27 14:27: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 | 2,150 |
author_reputation | 38,975,615,169,260 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,619,128 |
net_rshares | 0 |
Thanks for the article... bookmarked.
author | steempeak |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t225723359z |
category | steem |
json_metadata | {"tags":["steem"],"community":"steempeak","app":"steempeak"} |
created | 2018-10-23 22:57:24 |
last_update | 2018-10-23 22:57:24 |
depth | 1 |
children | 4 |
last_payout | 2018-10-30 22:57: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 | 37 |
author_reputation | 175,130,396,955,416 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,920,903 |
net_rshares | 4,299,563,318 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santarius | 0 | 4,299,563,318 | 10% |
Cant wait account creation is part of steempeak!
author | intrepidphotos |
---|---|
permlink | re-steempeak-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t231846799z |
category | steem |
json_metadata | {"tags":["steem"],"community":"steempeak","app":"steempeak"} |
created | 2018-10-23 23:18:48 |
last_update | 2018-10-23 23:18:48 |
depth | 2 |
children | 0 |
last_payout | 2018-10-30 23:18: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 | 49 |
author_reputation | 583,698,312,014,318 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,778 |
net_rshares | 0 |
Is steempeak going to create Steem accounts for users as well? I am asking, because I have one almost finished project which could help with that: .png) it's going to be open-source. It will allow to authenticate users with over 100 different services, score them... and allow for manual, semi-manual or manual account verification: https://python-social-auth.readthedocs.io/en/latest/backends/index.html#social-backends :)
author | noisy |
---|---|
permlink | re-steempeak-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181023t230359158z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://cdn.steemitimages.com/DQmVDEsXamZzkmSMC2KgfZmApCHQ9q9kkzEp6R7yMMnDDqj/Selection_999(372).png"],"links":["https://python-social-auth.readthedocs.io/en/latest/backends/index.html#social-backends"],"app":"steemit/0.1"} |
created | 2018-10-23 23:04:00 |
last_update | 2018-10-23 23:04:00 |
depth | 2 |
children | 2 |
last_payout | 2018-10-30 23:04:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 550 |
author_reputation | 59,974,373,499,600 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 73,921,175 |
net_rshares | 31,515,372,861 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mcfarhat | 0 | 31,515,372,861 | 25% |
As @actifit, that's a key concerning point for new signups as we plan to kick this off. We would definitely be interested in your work on this !
author | mcfarhat |
---|---|
permlink | re-noisy-re-steempeak-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t092225845z |
category | steem |
json_metadata | {"tags":["steem"],"users":["actifit"],"app":"steemit/0.1"} |
created | 2018-10-24 09:22:36 |
last_update | 2018-10-24 09:22:36 |
depth | 3 |
children | 0 |
last_payout | 2018-10-31 09:22: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 | 144 |
author_reputation | 150,672,349,167,341 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,947,567 |
net_rshares | 0 |
Yes we'll be working on a very extensive ON-BOARDING project @noisy And yes Account Creation will be part of it. Sorry we didn't see this until now. Feel free to message us on Discord or Slack anytime - @jarvie
author | steempeak |
---|---|
permlink | re-noisy-re-steempeak-re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181025t170904913z |
category | steem |
json_metadata | {"tags":["steem"],"community":"steempeak","app":"steempeak"} |
created | 2018-10-25 17:09:06 |
last_update | 2018-10-25 17:09:06 |
depth | 3 |
children | 0 |
last_payout | 2018-11-01 17:09: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 | 213 |
author_reputation | 175,130,396,955,416 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,039,251 |
net_rshares | 0 |
Sound good create new accounts without waiting.
author | vipin99 |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181024t055932537z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-10-24 05:59:36 |
last_update | 2018-10-24 05:59:36 |
depth | 1 |
children | 0 |
last_payout | 2018-10-31 05:59:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.048 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 3,763,037,093,676 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,938,186 |
net_rshares | 57,892,747,720 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheneats | 0 | 245,967,400 | 70% | ||
shabaperween | 0 | 57,646,780,320 | 100% |
thanks for your great support. love your work
author | ykdesign |
---|---|
permlink | re-noisy-creation-of-new-steem-accounts-without-waiting-and-paying-anything-with-new-resource-credits-system-20181122t130549552z |
category | steem |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem"],"users":[],"links":[],"image":[]} |
created | 2018-11-22 13:05:45 |
last_update | 2018-11-22 13:05:45 |
depth | 1 |
children | 0 |
last_payout | 2018-11-29 13:05: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 | 45 |
author_reputation | 244,217,860,979,883 |
root_title | "Creation of new Steem accounts without waiting and paying anything (with new Resource Credits system)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,730,958 |
net_rshares | 0 |