create account

Instantaneous Steemit Account Creation Script by mcfarhat

View this thread on: hive.blogpeakd.comecency.com
· @mcfarhat · (edited)
$26.45
Instantaneous Steemit Account Creation Script
<center>
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519082809/icodztsvfanzg3veeamb.png)\
</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>![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519080766/fxryojdfe8hgycdsc8nl.png)
</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>
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519080727/wqebdaq7lchqhfllywwr.png)
</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>
![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519081325/pqf7snj5tl1cptqlew9q.png)
</center>

_New account created_
<center>![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1519082179/vktynhkwzopopyjxjaef.png)
</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/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 10 others
properties (23)
authormcfarhat
permlinkinstantaneous-steemit-account-creation-script
categoryutopian-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}
created2018-02-19 23:29:45
last_update2018-02-20 01:28:33
depth0
children36
last_payout2018-02-26 23:29:45
cashout_time1969-12-31 23:59:59
total_payout_value19.580 HBD
curator_payout_value6.872 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,442
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,908,841
net_rshares5,913,145,243,898
author_curate_reward""
vote details (74)
@aek081969 ·
Beautiful job @mcfarhat on all your posts, thanks so much for all the nice work👍🏻
👍  
properties (23)
authoraek081969
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180220t194615532z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"}
created2018-02-20 19:46:00
last_update2018-02-20 19:46:00
depth1
children0
last_payout2018-02-27 19:46:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation1,254,205,740,033
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,150,874
net_rshares3,421,586,206
author_curate_reward""
vote details (1)
@arabpromo ·
re-mcfarhat-instantaneous-steemit-account-creation-script-20180221t220745652z
You got a 100.00% upvote from @arabpromo courtesy of @mcfarhat!
properties (22)
authorarabpromo
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180221t220745652z
categoryutopian-io
json_metadata{"app":"arabpromobot/0.1.0"}
created2018-02-21 22:07:45
last_update2018-02-21 22:07:45
depth1
children0
last_payout2018-02-28 22:07:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation22,219,918,260
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,447,799
net_rshares0
@aussieninja ·
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?
properties (22)
authoraussieninja
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180302t045230866z
categoryutopian-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"}
created2018-03-02 04:51:12
last_update2018-03-02 04:51:12
depth1
children6
last_payout2018-03-09 04:51:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,140
author_reputation115,491,060,643,590
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,549,851
net_rshares0
@mcfarhat ·
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.
properties (22)
authormcfarhat
permlinkre-aussieninja-re-mcfarhat-instantaneous-steemit-account-creation-script-20180302t090002128z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["aussieninja"],"app":"steemit/0.1"}
created2018-03-02 09:00:09
last_update2018-03-02 09:00:09
depth2
children5
last_payout2018-03-09 09:00:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,589,266
net_rshares0
@aussieninja ·
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.
properties (22)
authoraussieninja
permlinkre-mcfarhat-re-aussieninja-re-mcfarhat-instantaneous-steemit-account-creation-script-20180302t145617437z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"}
created2018-03-02 14:56:15
last_update2018-03-02 14:56:15
depth3
children0
last_payout2018-03-09 14:56:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length267
author_reputation115,491,060,643,590
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,654,730
net_rshares0
@aussieninja ·
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?
properties (22)
authoraussieninja
permlinkre-mcfarhat-re-aussieninja-re-mcfarhat-instantaneous-steemit-account-creation-script-20180302t151236702z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"}
created2018-03-02 15:12:33
last_update2018-03-02 15:12:33
depth3
children3
last_payout2018-03-09 15:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length461
author_reputation115,491,060,643,590
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,657,801
net_rshares0
@bikkichhantyal ·
@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.
properties (22)
authorbikkichhantyal
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180219t235041726z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"}
created2018-02-19 23:50:42
last_update2018-02-19 23:50:42
depth1
children1
last_payout2018-02-26 23:50:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation1,065,860,215,227
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,912,510
net_rshares0
@mcfarhat ·
I hear you. Glad to be of help
properties (22)
authormcfarhat
permlinkre-bikkichhantyal-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t085851831z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-20 08:58:54
last_update2018-02-20 08:58:54
depth2
children0
last_payout2018-02-27 08:58:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,017,287
net_rshares0
@cement3 ·
$0.10
Wow. I just started reading. But is mind blowing...
👍  
properties (23)
authorcement3
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180219t233055705z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-19 23:30:54
last_update2018-02-19 23:30:54
depth1
children0
last_payout2018-02-26 23:30:54
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation18,857,759,623
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,909,050
net_rshares18,169,464,946
author_curate_reward""
vote details (1)
@corsica ·
$0.10
Génial @mcfarhat,
Vraiment top !
A bientôt.
**Christel**
👍  ,
properties (23)
authorcorsica
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180220t003054169z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.3.0"}
created2018-02-20 00:31:06
last_update2018-02-20 00:31:06
depth1
children1
last_payout2018-02-27 00:31:06
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation13,151,899,596,395
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,919,830
net_rshares24,434,797,686
author_curate_reward""
vote details (2)
@mcfarhat ·
Thank you Christel ! :)
properties (22)
authormcfarhat
permlinkre-corsica-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t085753255z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-20 08:57:57
last_update2018-02-20 08:57:57
depth2
children0
last_payout2018-02-27 08:57:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,017,077
net_rshares0
@creon ·
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)**
properties (22)
authorcreon
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180220t013103694z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-20 01:31:06
last_update2018-02-20 01:31:06
depth1
children0
last_payout2018-02-27 01:31:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation2,792,252,766,467
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,931,080
net_rshares0
@cryptonik ·
$0.08
Awesome stuff @mcfarhat I will use this !!!
👍  
properties (23)
authorcryptonik
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180223t233826735z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"}
created2018-02-23 23:38:27
last_update2018-02-23 23:38:27
depth1
children1
last_payout2018-03-02 23:38:27
cashout_time1969-12-31 23:59:59
total_payout_value0.061 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation2,299,620,450,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,979,401
net_rshares15,470,714,657
author_curate_reward""
vote details (1)
@mcfarhat ·
Thank you, glad to hear ! :)
properties (22)
authormcfarhat
permlinkre-cryptonik-re-mcfarhat-instantaneous-steemit-account-creation-script-20180225t152608692z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-25 15:26:09
last_update2018-02-25 15:26:09
depth2
children0
last_payout2018-03-04 15:26:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,360,104
net_rshares0
@doctorcrypto ·
$0.14
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!
👍  
properties (23)
authordoctorcrypto
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180221t075913293z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-21 07:59:12
last_update2018-02-21 07:59:12
depth1
children1
last_payout2018-02-28 07:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.106 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length236
author_reputation15,262,316,111,880
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,284,359
net_rshares25,163,561,144
author_curate_reward""
vote details (1)
@mcfarhat ·
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
properties (22)
authormcfarhat
permlinkre-doctorcrypto-re-mcfarhat-instantaneous-steemit-account-creation-script-20180221t134928341z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-21 13:49:30
last_update2018-02-21 13:49:30
depth2
children0
last_payout2018-02-28 13:49:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length159
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,352,924
net_rshares0
@khaled-dz ·
$0.10
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.
👍  
properties (23)
authorkhaled-dz
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180220t092619138z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-20 09:26:18
last_update2018-02-20 09:26:18
depth1
children1
last_payout2018-02-27 09:26:18
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length227
author_reputation13,605,279,597,222
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,022,468
net_rshares18,169,464,946
author_curate_reward""
vote details (1)
@mcfarhat ·
Thank you Khaled for the nice words ! :)
properties (22)
authormcfarhat
permlinkre-khaled-dz-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t204649978z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-20 20:46:54
last_update2018-02-20 20:46:54
depth2
children0
last_payout2018-02-27 20:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,162,971
net_rshares0
@macans ·
This is a great script and one I have been looking for. Thanks for your contribution!
properties (22)
authormacans
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180318t133146737z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-18 13:31:45
last_update2018-03-18 13:31:45
depth1
children3
last_payout2018-03-25 13:31:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation106,378,868,212
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,140,149
net_rshares0
@macans ·
$0.31
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.
👍  , , , , , , , , , ,
properties (23)
authormacans
permlinkre-macans-re-mcfarhat-instantaneous-steemit-account-creation-script-20180319t002401949z
categoryutopian-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"}
created2018-03-19 00:24:00
last_update2018-03-19 00:24:00
depth2
children2
last_payout2018-03-26 00:24:00
cashout_time1969-12-31 23:59:59
total_payout_value0.250 HBD
curator_payout_value0.064 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length877
author_reputation106,378,868,212
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,234,446
net_rshares95,042,278,928
author_curate_reward""
vote details (11)
@aussieninja ·
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!!!
properties (22)
authoraussieninja
permlinkre-macans-re-macans-re-mcfarhat-instantaneous-steemit-account-creation-script-20180319t210900382z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-19 21:07:36
last_update2018-03-19 21:07:36
depth3
children1
last_payout2018-03-26 21:07:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length254
author_reputation115,491,060,643,590
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,415,803
net_rshares0
@steemitstats ·
@mcfarhat, I always try to support who contribute to open source project, upvote you.
properties (22)
authorsteemitstats
permlink20180219t233145827z-post
categoryutopian-io
json_metadata{"tags":["utopian-io"]}
created2018-02-19 23:31:51
last_update2018-02-19 23:31:51
depth1
children0
last_payout2018-02-26 23:31:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation351,882,871,185
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,909,215
net_rshares0
@steemstem-bot ·
<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>
properties (22)
authorsteemstem-bot
permlinkre-instantaneous-steemit-account-creation-script-20180220t205935
categoryutopian-io
json_metadata""
created2018-02-20 20:59:36
last_update2018-02-20 20:59:36
depth1
children0
last_payout2018-02-27 20:59:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length606
author_reputation3,811,533,615,496
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,165,707
net_rshares0
@thunderx ·
$0.04
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?
👍  
properties (23)
authorthunderx
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180226t154029294z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-26 15:40:27
last_update2018-02-26 15:40:27
depth1
children2
last_payout2018-03-05 15:40:27
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation27,560,768,758
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,629,996
net_rshares7,277,760,997
author_curate_reward""
vote details (1)
@mcfarhat ·
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.
👍  
properties (23)
authormcfarhat
permlinkre-thunderx-re-mcfarhat-instantaneous-steemit-account-creation-script-20180226t160435226z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-26 16:04:36
last_update2018-02-26 16:04:36
depth2
children1
last_payout2018-03-05 16:04:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length254
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,634,951
net_rshares1,390,314,255
author_curate_reward""
vote details (1)
@thunderx ·
Looks good! WI give it a shot. Still however don't have enough steem to delegate.
properties (22)
authorthunderx
permlinkre-mcfarhat-re-thunderx-re-mcfarhat-instantaneous-steemit-account-creation-script-20180226t160705305z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-26 16:07:06
last_update2018-02-26 16:07:06
depth3
children0
last_payout2018-03-05 16:07:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation27,560,768,758
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,635,476
net_rshares0
@toni2oni ·
Want to bookmark this so I can try it out later. Thank you for sharing.
properties (22)
authortoni2oni
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180220t044200478z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-20 04:42:00
last_update2018-02-20 04:42:00
depth1
children1
last_payout2018-02-27 04:42:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation101,970,716,504
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,968,179
net_rshares0
@mcfarhat ·
You're welcome
properties (22)
authormcfarhat
permlinkre-toni2oni-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t090017529z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-20 09:00:21
last_update2018-02-20 09:00:21
depth2
children0
last_payout2018-02-27 09:00:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,017,587
net_rshares0
@utopian-io ·
### 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>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](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**
properties (22)
authorutopian-io
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180220t194024644z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-02-20 19:40:24
last_update2018-02-20 19:40:24
depth1
children0
last_payout2018-02-27 19:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,006
author_reputation152,955,367,999,756
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,149,756
net_rshares0
@yashwanthkambala ·
nice
properties (22)
authoryashwanthkambala
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180524t052207360z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-24 05:22:09
last_update2018-05-24 05:22:09
depth1
children0
last_payout2018-05-31 05:22:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation1,082,573,359,207
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,395,434
net_rshares0
@yungchief ·
My account creation took exactly 7 days before it was accepted, almost lost interest. Am not really good with codes. Nice tutorial
properties (22)
authoryungchief
permlinkre-mcfarhat-instantaneous-steemit-account-creation-script-20180219t235238171z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-20 00:53:36
last_update2018-02-20 00:53:36
depth1
children1
last_payout2018-02-27 00:53:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation18,299,447,923,837
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,923,894
net_rshares0
@mcfarhat ·
I can totally relate, many of my friends waited for too long !
Thank you
properties (22)
authormcfarhat
permlinkre-yungchief-re-mcfarhat-instantaneous-steemit-account-creation-script-20180220t085946469z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-02-20 08:59:48
last_update2018-02-20 08:59:48
depth2
children0
last_payout2018-02-27 08:59:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation150,651,671,367,256
root_title"Instantaneous Steemit Account Creation Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,017,466
net_rshares0