<center> \ </center> <center>*Image created by myself via CC images*</center> #### What Will I Learn? Creating an account with Steemit and waiting for its approval can prove too time consuming. At times, approvals can extend up to 7 days, which could definitely cause a loss of interest for the person attempting to join in. Yet, we can code our way out of it and make the process instantaneous as long as we have another existing steemit account to use for the creation. In fact, [steemjs](https://github.com/steemit/steem-js) the famous steemit API provides just what is needed to allow instantaneous creation of steemit accounts, yet the lack of documentation to the parameters and the process makes the task a bit difficult to accomplish without proper research and experimentation. Let's document and go through the process to create a script that allows us to just do that! #### Requirements To be able to follow this tutorial, you would need some basic coding knowledge, particularly in javascript. #### Difficulty The tutorial is essentially an intermediate level for anyone who wants to learn the intricacies of the process, but also a complete version of the code is provided for you to use. #### The Process ##### Loading steemjs As highlighted above, steemjs library allows us to overcome the limitations of waiting for account creation/approval on steemit via using some built-in API calls. To include steemjs, it only requires a single line of code into your HTML document, as follows: ```<script src="https://cdn.steemjs.com/lib/latest/steem.min.js"></script>``` ##### Account Creation Function(s) Now the key function to create accounts provided via the steemjs library comes under two shapes: ```steem.broadcast.accountCreate``` and ```steem.broadcast.accountCreateWithDelegation``` The first allows direct account creation, while the second clearly adds the option to create the account while delegating vests (Steem Power) onto it. An account does need a minimum amount of SP to be able to properly function, this being at the moment and AFAIK in the amount of 15 SP. We will use the second method then to perform this process, which has the full signature as per below: ` steem.broadcast.accountCreateWithDelegation(wif, fee, delegation, creator, newAccountName, owner, active, posting, memoKey, jsonMetadata, extensions, function(err, result) { console.log(err, result); }); ` ##### Parameters Explanation So there is a multitude of parameters (values ) that need to be sent to the function for it to properly work. Some are straightforward, while others **might seem so, yet aren't and could cause errors in the process**, and the explanation is below: * **wif**: the new account's wif/password/private key used to access it. The longer the password, the better (I for one would recommend at least 50 character passwords, and preferably generated via http://passwordsgenerator.net/ - Just make sure you DO NOT INCLUDE symbols as those are invalid for steemit passwords and would yield an error. * **fee**: the amount in **STEEM** which will be sent from the creator account to the new account. This comes in the format of XXX.XXX STEEM. * **delegation**: the amount of delegated vests/steem power in **VESTS** units that will be delegated from the creator account to the new account. This comes in the format XXXXX.XXXXX VESTS. A standard amount would be "30663.815330 VESTS" equating to 15 SP. * **creator**: the account creator name * **newAccountName**: the new account name * **owner, active, posting, and memoKey**: the relevant keys for the new account * **jsonMetadata and extensions**: any additional meta data and/or extensions that need to be passed over to the new account ##### Testing for proper account name format Before proceeding with calling out the account creation function, it is advisable to test out whether the account name follows the standards required by steem. To do so, we will perform a call to another function `steem.utils.validateAccountName(new_account)` The function will check if the format is valid, and if so, will return null, otherwise it will return the relevant error message. So comparing the return value of the function against null would allow us to make sure the account is actually valid and to move on. _console log below_ <center> </center> ##### Checking if account already exists Another step before the actual account creation is ensuring the account is available. This can also be performed via calling the following function `steem.api.getAccounts([new_account], function(err, result) {` which basically would return the account **if it exists**. So we are actually also looking for an empty result set to make sure it doesn't! Hence, the proper test for moving forward would be `if (result.length==0){` _console log below_ <center>  </center> ##### Key generation While we are able to create our own password for the account, yet keys cannot and need to be properly generated and passed along in a format understandable to the function and steem. Here again, we can rely on the generateKeys function: `steem.auth.generateKeys(new_account, wif, ['owner', 'active', 'posting', 'memo'])` To which we pass the new account name, wif/password, and require for it to generate all 4 keys components which will be utilized in the account creation ('owner', 'active', 'posting', 'memo') The function would return an object with those 4 variations of keys, and can then be used as params for the creation function ``` var publicKeys = steem.auth.generateKeys(new_account, wif, ['owner', 'active', 'posting', 'memo']); var owner = { weight_threshold: 1, account_auths: [], key_auths: [[publicKeys.owner, 1]] }; var active = { weight_threshold: 1, account_auths: [], key_auths: [[publicKeys.active, 1]] }; var posting = { weight_threshold: 1, account_auths: [], key_auths: [[publicKeys.posting, 1]] }; ``` And then eventually, after all this preparation, we are now ready to call our core function as follows `steem.broadcast.accountCreateWithDelegation(owner_wif, fee, delegation, owner_account, new_account, owner, active, posting, publicKeys.memo, jsonMetadata, extensions, function(err, result) { console.log(err, result); }); ` ##### Full Code Wrapping the whole code together, we will end up with the below code. For ease of access and usability, I have created a gist with the full code which can be [found here](https://gist.github.com/mcfarhat/e23f729309b34a7b3e7409b4baa0eef9) ``` <html> <head> <!-- including steemjs library for performing calls --> <script src="https://cdn.steemjs.com/lib/latest/steem.min.js"></script> <script> create_steemit_user(); function create_steemit_user(){ //set the proper steemit node to be used, otherwise default steem-js node will fail steem.api.setOptions({ url: 'https://api.steemit.com' }); //variable containing the new password . Suggest to use http://passwordsgenerator.net/ and set a min size of 50 chars, and DO NOT INCLUDE symbols as those are invalid var wif = ""; //WIF of the user creating the account var owner_wif = ""; //name of user creating the account var owner_account = ""; //new user account name var new_account = ""; //the fee to be used when creating the account. Make sure the value is set according to this template. I haven't used a lower value and eventually the amount will be sent over to the receiving new account var fee = "0.200 STEEM"; //set the amount of SP to delegate to this account. This is the min value being 15 STEEM for an account to be properly functional var delegation = "30663.815330 VESTS"; //meta data and extensions can be left blank for now var jsonMetadata = ""; var extensions = ""; /********************** process ****************************/ console.log('attempting creation of account:'+new_account); //make sure account name is valid var account_invalid = steem.utils.validateAccountName(new_account); if (account_invalid == null){ //make sure account does not already exist steem.api.getAccounts([new_account], function(err, result) { console.log(err, result); //no matches found if (result.length==0){ /* if the code doesn't work, you might need to uncomment this, and change the wif at the top to password */ //var wif = steem.auth.toWif(new_account, pass, 'owner'); //generate the keys based on the account name and password var publicKeys = steem.auth.generateKeys(new_account, wif, ['owner', 'active', 'posting', 'memo']); var owner = { weight_threshold: 1, account_auths: [], key_auths: [[publicKeys.owner, 1]] }; var active = { weight_threshold: 1, account_auths: [], key_auths: [[publicKeys.active, 1]] }; var posting = { weight_threshold: 1, account_auths: [], key_auths: [[publicKeys.posting, 1]] }; //console.log(posting); steem.broadcast.accountCreateWithDelegation(owner_wif, fee, delegation, owner_account, new_account, owner, active, posting, publicKeys.memo, jsonMetadata, extensions, function(err, result) { console.log(err, result); }); /*steem.broadcast.accountCreate(owner_wif, fee, owner_account, new_account, owner, active, posting, publicKeys.memo, jsonMetadata, function(err, result) { console.log(err, result); });*/ }else{ console.log('account already exists'); } }); }else{ console.log(account_invalid); } } </script> </head> </html> ``` Upon success of the account creation, you will receive in the console a confirmation of the transaction, as follows: <center>  </center> _New account created_ <center> </center> There you go, we successfully and instantaneously created the new account. Hoping this comes in handy to you guys, and feel free to ask any questions or provide suggestions in the comments below! <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@mcfarhat/instantaneous-steemit-account-creation-script">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | mcfarhat | ||||||
---|---|---|---|---|---|---|---|
permlink | instantaneous-steemit-account-creation-script | ||||||
category | utopian-io | ||||||
json_metadata | {"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":63857882,"name":"steem-js","full_name":"steemit/steem-js","html_url":"https://github.com/steemit/steem-js","fork":false,"owner":{"login":"steemit"}},"pullRequests":[],"platform":"github","type":"tutorials","tags":["utopian-io","steemstem","steemdev","promo-steem","arab"],"links":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1519082809/icodztsvfanzg3veeamb.png","https://github.com/steemit/steem-js","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519080766/fxryojdfe8hgycdsc8nl.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519080727/wqebdaq7lchqhfllywwr.png","https://gist.github.com/mcfarhat/e23f729309b34a7b3e7409b4baa0eef9","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519081325/pqf7snj5tl1cptqlew9q.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519082179/vktynhkwzopopyjxjaef.png"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1519082809/icodztsvfanzg3veeamb.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519080766/fxryojdfe8hgycdsc8nl.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519080727/wqebdaq7lchqhfllywwr.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519081325/pqf7snj5tl1cptqlew9q.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519082179/vktynhkwzopopyjxjaef.png"],"moderator":{"account":"creon","time":"2018-02-20T01:28:25.956Z","reviewed":true,"pending":false,"flagged":false},"questions":[],"score":0} | ||||||
created | 2018-02-19 23:29:45 | ||||||
last_update | 2018-02-20 01:28:33 | ||||||
depth | 0 | ||||||
children | 36 | ||||||
last_payout | 2018-02-26 23:29:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 19.580 HBD | ||||||
curator_payout_value | 6.872 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 10,442 | ||||||
author_reputation | 150,651,671,367,256 | ||||||
root_title | "Instantaneous Steemit Account Creation Script" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 38,908,841 | ||||||
net_rshares | 5,913,145,243,898 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berkah | 0 | 2,939,075,582 | 3% | ||
pharesim | 0 | 77,376,637,823 | 0.02% | ||
mrs.agsexplorer | 0 | 11,463,453,102 | 2% | ||
pnc | 0 | 9,293,426,115 | 3% | ||
teamsteem | 0 | 428,089,284,357 | 3% | ||
grandpere | 0 | 8,624,560,663 | 5% | ||
ausbitbank | 0 | 82,084,894,002 | 1% | ||
bitcoiner | 0 | 1,370,732,691 | 3% | ||
timsaid | 0 | 5,130,673,987 | 1% | ||
lemouth | 0 | 16,116,384,508 | 4% | ||
steemstem | 0 | 119,706,272,585 | 5% | ||
jamhuery | 0 | 955,631,004 | 5% | ||
greenstar | 0 | 2,488,977,368 | 3% | ||
kubbyelizabeth | 0 | 9,229,359,090 | 5% | ||
helo | 0 | 3,523,761,516 | 100% | ||
trumpman | 0 | 29,360,631,382 | 20% | ||
doctorcrypto | 0 | 20,367,215,604 | 100% | ||
drakos | 0 | 403,485,074,312 | 100% | ||
alexander.alexis | 0 | 271,341,286 | 1% | ||
corsica | 0 | 38,792,132,595 | 100% | ||
beautifulbullies | 0 | 8,656,949,572 | 15% | ||
ovij | 0 | 484,874,901 | 5% | ||
kharrazi | 0 | 11,207,647,782 | 20% | ||
aek081969 | 0 | 3,620,726,143 | 100% | ||
somethingburger | 0 | 322,909,169 | 5% | ||
cifer | 0 | 2,939,979,496 | 80% | ||
tormiwah | 0 | 382,780,542 | 3% | ||
arie.steem | 0 | 6,352,012,510 | 20% | ||
mcfarhat | 0 | 115,908,655,693 | 100% | ||
nationall | 0 | 748,893,301 | 50% | ||
alfamano | 0 | 486,245,291 | 50% | ||
loshcat | 0 | 1,364,076,520 | 100% | ||
bobdos | 0 | 380,772,855 | 5% | ||
paulmcclure | 0 | 603,122,747 | 100% | ||
ehabfox | 0 | 794,680,371 | 12.5% | ||
mirahu | 0 | 245,372,075 | 100% | ||
hsynterkr | 0 | 4,885,234,921 | 100% | ||
muhammadrizki96 | 0 | 70,633,155 | 50% | ||
utopian-io | 0 | 4,414,218,549,584 | 2.94% | ||
kedi | 0 | 669,562,912 | 2.5% | ||
promo-steem | 0 | 601,643,382 | 100% | ||
cryptonik | 0 | 8,274,800,135 | 100% | ||
mokh-tar | 0 | 661,843,131 | 50% | ||
khaled-dz | 0 | 4,743,171,339 | 50% | ||
arabsteem | 0 | 25,096,531,973 | 50% | ||
steemitstats | 0 | 2,059,699,654 | 5% | ||
geekpowered | 0 | 2,062,120,740 | 1% | ||
robotics101 | 0 | 119,714,394 | 3.5% | ||
aherbil | 0 | 1,147,323,643 | 50% | ||
cryptonewsly | 0 | 188,430,199 | 100% | ||
rabihfarhat | 0 | 614,886,102 | 50% | ||
ydavgonzalez | 0 | 0 | 100% | ||
mathowl | 0 | 3,701,765,841 | 100% | ||
steemstem-bot | 0 | 1,943,043,214 | 15% | ||
slhladkovant | 0 | 553,015,352 | 100% | ||
nuridin | 0 | 467,961,920 | 10% | ||
yashwanthkambala | 0 | 0 | 100% | ||
regenin | 0 | 1,017,720,389 | 100% | ||
accro | 0 | 3,284,170,814 | 100% | ||
ali.awada | 0 | 1,104,471,899 | 50% | ||
jholvherth | 0 | 276,152,322 | 100% | ||
carol1990 | 0 | 435,746,359 | 50% | ||
chelsea.bear | 0 | 2,058,561,528 | 5% | ||
libanista | 0 | 306,983,772 | 50% | ||
blervin | 0 | 1,876,006,857 | 100% | ||
fatimamortada | 0 | 307,581,298 | 50% | ||
elameen | 0 | 306,940,571 | 50% | ||
claraquarius | 0 | 1,871,112,938 | 5% | ||
walidaltruistic | 0 | 308,067,729 | 50% | ||
cement3 | 0 | 346,617,125 | 100% | ||
nournajjar | 0 | 1,156,548,141 | 50% | ||
abedkhalfeh | 0 | 307,232,517 | 50% | ||
arabpromo | 0 | 621,453,321 | 100% | ||
vevita | 0 | 310,726,187 | 50% |
Beautiful job @mcfarhat on all your posts, thanks so much for all the nice work👍🏻
author | aek081969 |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t194615532z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"} |
created | 2018-02-20 19:46:00 |
last_update | 2018-02-20 19:46:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 19:46: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 | 81 |
author_reputation | 1,254,205,740,033 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,150,874 |
net_rshares | 3,421,586,206 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aek081969 | 0 | 3,421,586,206 | 100% |
You got a 100.00% upvote from @arabpromo courtesy of @mcfarhat!
author | arabpromo |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180221t220745652z |
category | utopian-io |
json_metadata | {"app":"arabpromobot/0.1.0"} |
created | 2018-02-21 22:07:45 |
last_update | 2018-02-21 22:07:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-28 22:07: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 | 64 |
author_reputation | 22,219,918,260 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,447,799 |
net_rshares | 0 |
Hi @mcfarhat, I'm struggling to get this script to run, I've filled in the wif, the owner_wif and the new_account and left everything else as is... and keep getting the message: >k.AssertionError {name: "AssertionError", actual: 128, expected: 149, > >operator: "==", message: "Expected version 128, instead got 149", …}>actual: 128expected: 149generatedMessage: falsemessage: "Expected >version 128, instead got >149"name: "AssertionError"operator: "=="stack: "AssertionError: >Expected version 128, instead got 149↵ at Function.value >(https://cdn.steemjs.com/lib/latest/steem.min.js:12:12470)↵ at p >(https://cdn.steemjs.com/lib/latest/steem.min.js:12:15470)↵ at >Function.value >(https://cdn.steemjs.com/lib/latest/steem.min.js:12:14884)↵ at >Function.value >(https://cdn.steemjs.com/lib/latest/steem.min.js:12:14727)↵ at >Object.d.signTransaction >(https://cdn.steemjs.com/lib/latest/steem.min.js:16:11426)↵ at >https://cdn.steemjs.com/lib/latest/steem.min.js:16:12249↵ at i >(https://cdn.steemjs.com/lib/latest/steem.min.js:1:25484)↵ at o._settlePromiseFromHandler (https://cdn.steemjs.com/lib/latest/steem.min.js:1:19894)↵ at o._settlePromise (https://cdn.steemjs.com/lib/latest/steem.min.js:1:20697)↵ at o._settlePromise0 (https://cdn.steemjs.com/lib/latest/steem.min.js:1:21398)↵ at o._settlePromises (https://cdn.steemjs.com/lib/latest/steem.min.js:1:22728)↵ at o._fulfill (https://cdn.steemjs.com/lib/latest/steem.min.js:1:21769)↵ at o._resolveCallback (https://cdn.steemjs.com/lib/latest/steem.min.js:1:18630)↵ at o._settlePromiseFromHandler (https://cdn.steemjs.com/lib/latest/steem.min.js:1:20049)↵ at o._settlePromise (https://cdn.steemjs.com/lib/latest/steem.min.js:1:20697)↵ at o._settlePromise0 (https://cdn.steemjs.com/lib/latest/steem.min.js:1:21398)"__proto__: Error undefined (Sorry for the mess). I've tried both your code in this post and the code in GitHub with no luck. The user definitely doesn't exist before or after running this code. I've got other HTML scripts on Steem-js to work okay, but this one is a struggle. Do you know where I might be going wrong?
author | aussieninja |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180302t045230866z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mcfarhat"],"links":["https://cdn.steemjs.com/lib/latest/steem.min.js:12:12470","https://cdn.steemjs.com/lib/latest/steem.min.js:12:15470","https://cdn.steemjs.com/lib/latest/steem.min.js:12:14884","https://cdn.steemjs.com/lib/latest/steem.min.js:12:14727","https://cdn.steemjs.com/lib/latest/steem.min.js:16:11426","https://cdn.steemjs.com/lib/latest/steem.min.js:16:12249↵","https://cdn.steemjs.com/lib/latest/steem.min.js:1:25484","https://cdn.steemjs.com/lib/latest/steem.min.js:1:19894","https://cdn.steemjs.com/lib/latest/steem.min.js:1:20697","https://cdn.steemjs.com/lib/latest/steem.min.js:1:21398","https://cdn.steemjs.com/lib/latest/steem.min.js:1:22728","https://cdn.steemjs.com/lib/latest/steem.min.js:1:21769","https://cdn.steemjs.com/lib/latest/steem.min.js:1:18630","https://cdn.steemjs.com/lib/latest/steem.min.js:1:20049"],"app":"steemit/0.1"} |
created | 2018-03-02 04:51:12 |
last_update | 2018-03-02 04:51:12 |
depth | 1 |
children | 6 |
last_payout | 2018-03-09 04:51: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,140 |
author_reputation | 115,491,060,643,590 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,549,851 |
net_rshares | 0 |
Hey @aussieninja, Yea I've had that error at some point in time. You've got an issue with the WIF you are using. Try using the private active key for the owner, i believe this could fix it. Let me know how that goes.
author | mcfarhat |
---|---|
permlink | re-aussieninja-re-mcfarhat-instantaneous-steemit-account-creation-script-20180302t090002128z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["aussieninja"],"app":"steemit/0.1"} |
created | 2018-03-02 09:00:09 |
last_update | 2018-03-02 09:00:09 |
depth | 2 |
children | 5 |
last_payout | 2018-03-09 09:00: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 | 217 |
author_reputation | 150,651,671,367,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,589,266 |
net_rshares | 0 |
Hi @mcfarhat! Thanks so much for your reply! I wasn't sure if commenting on an older post would work or not. The private active key? I tried a randomly generated WIF, my own WIF, but never thought of my active key... genius... okay, I'll try that and let you know.
author | aussieninja |
---|---|
permlink | re-mcfarhat-re-aussieninja-re-mcfarhat-instantaneous-steemit-account-creation-script-20180302t145617437z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"} |
created | 2018-03-02 14:56:15 |
last_update | 2018-03-02 14:56:15 |
depth | 3 |
children | 0 |
last_payout | 2018-03-09 14:56:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 267 |
author_reputation | 115,491,060,643,590 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,654,730 |
net_rshares | 0 |
Hi @mcfarhat! That was amazing advice.... and totally worked, thank you. I might have totally stuffed up though... to be on the safe side, I used my private active key in owner_wif and since I knew it was a valid key, I used the exact same for wif as well. The account created fine... but trying to log in with the new account and my private active key as the password isn't working. I'm just getting the error message 'Incorrect Password'. Did I break it?
author | aussieninja |
---|---|
permlink | re-mcfarhat-re-aussieninja-re-mcfarhat-instantaneous-steemit-account-creation-script-20180302t151236702z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"} |
created | 2018-03-02 15:12:33 |
last_update | 2018-03-02 15:12:33 |
depth | 3 |
children | 3 |
last_payout | 2018-03-09 15:12: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 | 461 |
author_reputation | 115,491,060,643,590 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,657,801 |
net_rshares | 0 |
@mcfarhat One of my friends signed up a week ago. He has not got confirmation letter yet. This might be good news to him. Thanks you. Followed, resteemed.
author | bikkichhantyal |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180219t235041726z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"} |
created | 2018-02-19 23:50:42 |
last_update | 2018-02-19 23:50:42 |
depth | 1 |
children | 1 |
last_payout | 2018-02-26 23:50: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 | 155 |
author_reputation | 1,065,860,215,227 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,912,510 |
net_rshares | 0 |
I hear you. Glad to be of help
author | mcfarhat |
---|---|
permlink | re-bikkichhantyal-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t085851831z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-20 08:58:54 |
last_update | 2018-02-20 08:58:54 |
depth | 2 |
children | 0 |
last_payout | 2018-02-27 08:58: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 | 30 |
author_reputation | 150,651,671,367,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,017,287 |
net_rshares | 0 |
Wow. I just started reading. But is mind blowing...
author | cement3 |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180219t233055705z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-19 23:30:54 |
last_update | 2018-02-19 23:30:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-26 23:30:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.075 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 18,857,759,623 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,909,050 |
net_rshares | 18,169,464,946 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mcfarhat | 0 | 18,169,464,946 | 15% |
author | corsica |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t003054169z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.3.0"} |
created | 2018-02-20 00:31:06 |
last_update | 2018-02-20 00:31:06 |
depth | 1 |
children | 1 |
last_payout | 2018-02-27 00:31:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.098 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 13,151,899,596,395 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,919,830 |
net_rshares | 24,434,797,686 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mcfarhat | 0 | 24,434,797,686 | 20% | ||
abexuv | 0 | 0 | 100% |
Thank you Christel ! :)
author | mcfarhat |
---|---|
permlink | re-corsica-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t085753255z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-20 08:57:57 |
last_update | 2018-02-20 08:57:57 |
depth | 2 |
children | 0 |
last_payout | 2018-02-27 08:57: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 | 23 |
author_reputation | 150,651,671,367,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,017,077 |
net_rshares | 0 |
Thank you for the contribution. It has been approved. You can contact us on [Discord](https://discord.gg/uTyJkNm). **[[utopian-moderator]](https://utopian.io/moderators)**
author | creon |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t013103694z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-20 01:31:06 |
last_update | 2018-02-20 01:31:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 01:31: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 | 172 |
author_reputation | 2,792,252,766,467 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,931,080 |
net_rshares | 0 |
Awesome stuff @mcfarhat I will use this !!!
author | cryptonik |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180223t233826735z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"} |
created | 2018-02-23 23:38:27 |
last_update | 2018-02-23 23:38:27 |
depth | 1 |
children | 1 |
last_payout | 2018-03-02 23:38:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.061 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 2,299,620,450,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,979,401 |
net_rshares | 15,470,714,657 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mcfarhat | 0 | 15,470,714,657 | 20% |
Thank you, glad to hear ! :)
author | mcfarhat |
---|---|
permlink | re-cryptonik-re-mcfarhat-instantaneous-steemit-account-creation-script-20180225t152608692z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-25 15:26:09 |
last_update | 2018-02-25 15:26:09 |
depth | 2 |
children | 0 |
last_payout | 2018-03-04 15:26: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 | 28 |
author_reputation | 150,651,671,367,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,360,104 |
net_rshares | 0 |
Great tutorial! There are a lot of new users waiting to get their email. It took me 7 days to get mine. Now I enough SP that I could use this and sign up all my friends..... Except it is like pulling teeth to get friends to sign up. HA!
author | doctorcrypto |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180221t075913293z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-21 07:59:12 |
last_update | 2018-02-21 07:59:12 |
depth | 1 |
children | 1 |
last_payout | 2018-02-28 07:59:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.106 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 236 |
author_reputation | 15,262,316,111,880 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,284,359 |
net_rshares | 25,163,561,144 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mcfarhat | 0 | 25,163,561,144 | 20% |
Yes i hear you. You can still do that as a favor to friends, and then once they gather their own 15 SP, you can undelegate your SP and get it back a week later
author | mcfarhat |
---|---|
permlink | re-doctorcrypto-re-mcfarhat-instantaneous-steemit-account-creation-script-20180221t134928341z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-21 13:49:30 |
last_update | 2018-02-21 13:49:30 |
depth | 2 |
children | 0 |
last_payout | 2018-02-28 13:49:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 159 |
author_reputation | 150,651,671,367,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,352,924 |
net_rshares | 0 |
thank you man. I think steemit should deal with this delay. because I really invite so many people and got bored from waiting till they forget about steemit lol. well done man. we are proud to have someone like you on steemit.
author | khaled-dz |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t092619138z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-20 09:26:18 |
last_update | 2018-02-20 09:26:18 |
depth | 1 |
children | 1 |
last_payout | 2018-02-27 09:26:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.075 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 227 |
author_reputation | 13,605,279,597,222 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,022,468 |
net_rshares | 18,169,464,946 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mcfarhat | 0 | 18,169,464,946 | 15% |
Thank you Khaled for the nice words ! :)
author | mcfarhat |
---|---|
permlink | re-khaled-dz-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t204649978z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-20 20:46:54 |
last_update | 2018-02-20 20:46:54 |
depth | 2 |
children | 0 |
last_payout | 2018-02-27 20:46: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 | 40 |
author_reputation | 150,651,671,367,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,162,971 |
net_rshares | 0 |
This is a great script and one I have been looking for. Thanks for your contribution!
author | macans |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180318t133146737z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-18 13:31:45 |
last_update | 2018-03-18 13:31:45 |
depth | 1 |
children | 3 |
last_payout | 2018-03-25 13:31: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 | 85 |
author_reputation | 106,378,868,212 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,140,149 |
net_rshares | 0 |
Just ran this script and ran into a similar issue that @aussieninja did. I used an actual key for wif variable. In addition to that the script does not return any private keys. To make this process work better you will need to generate keys ahead of time using a service/tool such as [Vessel](https://github.com/aaroncox/vessel/releases) and make sure to enter the "Generated Seed" in the wif field. Since I entered an actual key in the wif field I was able to recover the passwords by getting a Private Owner Key via [Paper Wallet Generator](https://steemit.com/steem/@xeroc/paperwallet-easily-secure-your-account-with-steem-paperwallet-generator) then I used the owner key to attempt to log in. At that point I was able to change the Key via steemit prompts. At first it stated that I could not use that key to access that page, but that I could access a more secure page.
author | macans |
---|---|
permlink | re-macans-re-mcfarhat-instantaneous-steemit-account-creation-script-20180319t002401949z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["aussieninja"],"links":["https://github.com/aaroncox/vessel/releases","https://steemit.com/steem/@xeroc/paperwallet-easily-secure-your-account-with-steem-paperwallet-generator"],"app":"steemit/0.1"} |
created | 2018-03-19 00:24:00 |
last_update | 2018-03-19 00:24:00 |
depth | 2 |
children | 2 |
last_payout | 2018-03-26 00:24:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.250 HBD |
curator_payout_value | 0.064 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 877 |
author_reputation | 106,378,868,212 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,234,446 |
net_rshares | 95,042,278,928 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thing-2 | 0 | 45,013,365,815 | 100% | ||
aussieninja | 0 | 13,521,285,765 | 100% | ||
urbangladiator | 0 | 4,204,546,651 | 100% | ||
ninjawarrior | 0 | 3,845,735,460 | 100% | ||
rollthedice | 0 | 3,976,190,025 | 100% | ||
rolltwodice | 0 | 3,817,646,554 | 100% | ||
gobbo | 0 | 3,840,652,729 | 100% | ||
rolld20 | 0 | 3,838,269,164 | 100% | ||
daclawboyz | 0 | 6,536,501,709 | 100% | ||
imaginarykeytar | 0 | 4,206,633,428 | 100% | ||
vote-bot | 0 | 2,241,451,628 | 100% |
Thanks so much for following up on this. I actually never got the private key to my new account nor was I able to log on using the WIF that I had in the variable. I'll try the Paper Wallet Generator, hopefully it's the missing link. Thanks so much!!!
author | aussieninja |
---|---|
permlink | re-macans-re-macans-re-mcfarhat-instantaneous-steemit-account-creation-script-20180319t210900382z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-19 21:07:36 |
last_update | 2018-03-19 21:07:36 |
depth | 3 |
children | 1 |
last_payout | 2018-03-26 21:07: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 | 254 |
author_reputation | 115,491,060,643,590 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,415,803 |
net_rshares | 0 |
@mcfarhat, I always try to support who contribute to open source project, upvote you.
author | steemitstats |
---|---|
permlink | 20180219t233145827z-post |
category | utopian-io |
json_metadata | {"tags":["utopian-io"]} |
created | 2018-02-19 23:31:51 |
last_update | 2018-02-19 23:31:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-26 23:31: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 | 85 |
author_reputation | 351,882,871,185 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,909,215 |
net_rshares | 0 |
<center><a href="www.steemit.com/@steemstem"><img src="https://media.discordapp.net/attachments/384404201544876032/405507994583957505/steemSTEM.png"></a><br><table><tr><th> </th><th> </th><th><a href="https://steemit.com/steemstem/@steemstem/helpful-guidelines-for-crafting-steemstem-content">Guidelines</a></th><th><a href="https://steemit.com/steemstem/@steemstem/steemstem-winter-2017-2018-project-update">Project Update</a></th><th> </th><th> </th></tr></table><br><a href="https://steemit.com/steemstem/@steemstem/being-a-member-of-the-steemstem-community"><b>Being A SteemStem Member</b></a></center>
author | steemstem-bot |
---|---|
permlink | re-instantaneous-steemit-account-creation-script-20180220t205935 |
category | utopian-io |
json_metadata | "" |
created | 2018-02-20 20:59:36 |
last_update | 2018-02-20 20:59:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 20:59: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 | 606 |
author_reputation | 3,811,533,615,496 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,165,707 |
net_rshares | 0 |
This could be a great tool to build a frontend for. great work. maybe I can help build it as a standalone tool. One question, do I need to delegate SP to get the account created?
author | thunderx |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180226t154029294z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-26 15:40:27 |
last_update | 2018-02-26 15:40:27 |
depth | 1 |
children | 2 |
last_payout | 2018-03-05 15:40:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | 27,560,768,758 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,629,996 |
net_rshares | 7,277,760,997 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mcfarhat | 0 | 7,277,760,997 | 10% |
Thank you. Yes that is unfortunately correct. For an account to function, it needs at least 15 SP :) I had made this available yesterday via a backend interface for wordpress plugin, if you're into wordpress, you can check my most recent post about this.
author | mcfarhat |
---|---|
permlink | re-thunderx-re-mcfarhat-instantaneous-steemit-account-creation-script-20180226t160435226z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-26 16:04:36 |
last_update | 2018-02-26 16:04:36 |
depth | 2 |
children | 1 |
last_payout | 2018-03-05 16:04: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 | 254 |
author_reputation | 150,651,671,367,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,634,951 |
net_rshares | 1,390,314,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thunderx | 0 | 1,390,314,255 | 100% |
Looks good! WI give it a shot. Still however don't have enough steem to delegate.
author | thunderx |
---|---|
permlink | re-mcfarhat-re-thunderx-re-mcfarhat-instantaneous-steemit-account-creation-script-20180226t160705305z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-26 16:07:06 |
last_update | 2018-02-26 16:07:06 |
depth | 3 |
children | 0 |
last_payout | 2018-03-05 16: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 | 81 |
author_reputation | 27,560,768,758 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,635,476 |
net_rshares | 0 |
Want to bookmark this so I can try it out later. Thank you for sharing.
author | toni2oni |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t044200478z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-20 04:42:00 |
last_update | 2018-02-20 04:42:00 |
depth | 1 |
children | 1 |
last_payout | 2018-02-27 04:42: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 | 71 |
author_reputation | 101,970,716,504 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,968,179 |
net_rshares | 0 |
You're welcome
author | mcfarhat |
---|---|
permlink | re-toni2oni-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t090017529z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-20 09:00:21 |
last_update | 2018-02-20 09:00:21 |
depth | 2 |
children | 0 |
last_payout | 2018-02-27 09:00: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 | 14 |
author_reputation | 150,651,671,367,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,017,587 |
net_rshares | 0 |
### Hey @mcfarhat I am @utopian-io. I have just upvoted you! #### Achievements - Seems like you contribute quite often. AMAZING! #### Community-Driven Witness! I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER! - <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a> - Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a> [](https://steemit.com/~witnesses) **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t194024644z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-20 19:40:24 |
last_update | 2018-02-20 19:40:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 19:40: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 | 1,006 |
author_reputation | 152,955,367,999,756 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,149,756 |
net_rshares | 0 |
nice
author | yashwanthkambala |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180524t052207360z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-24 05:22:09 |
last_update | 2018-05-24 05:22:09 |
depth | 1 |
children | 0 |
last_payout | 2018-05-31 05:22: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 | 4 |
author_reputation | 1,082,573,359,207 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,395,434 |
net_rshares | 0 |
My account creation took exactly 7 days before it was accepted, almost lost interest. Am not really good with codes. Nice tutorial
author | yungchief |
---|---|
permlink | re-mcfarhat-instantaneous-steemit-account-creation-script-20180219t235238171z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-20 00:53:36 |
last_update | 2018-02-20 00:53:36 |
depth | 1 |
children | 1 |
last_payout | 2018-02-27 00:53: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 | 130 |
author_reputation | 18,299,447,923,837 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,923,894 |
net_rshares | 0 |
I can totally relate, many of my friends waited for too long ! Thank you
author | mcfarhat |
---|---|
permlink | re-yungchief-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t085946469z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-20 08:59:48 |
last_update | 2018-02-20 08:59:48 |
depth | 2 |
children | 0 |
last_payout | 2018-02-27 08:59: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 | 72 |
author_reputation | 150,651,671,367,256 |
root_title | "Instantaneous Steemit Account Creation Script" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,017,466 |
net_rshares | 0 |