create account

Creating accounts with dsteem 0.6 by almost-digital

View this thread on: hive.blogpeakd.comecency.com
· @almost-digital · (edited)
$410.22
Creating accounts with dsteem 0.6
![dsteem 0.6](https://steemitimages.com/DQmVkEiwSdRoTVfFsT7G7SZvr38bhaJ6nXWzVqKeK38dygy/dsteem06.gif)

I've spent the better part of this weekend working on [dsteem](https://github.com/jnordberg/dsteem) and just published version 0.6.0 to npm. It's pretty much feature complete at this point, but I'm going to wait a while to tag a stable release. I want to get a chance to use it in a couple of projects before cementing the APIs.

One of the reasons I created dsteem was because I felt that the current ecosystem really needs more documentation (that's what the d in dsteem stands for). Starting out I found it difficult to understand how to use the protocol and how the calls should be formatted, especially for the account creation process. So I thought that documenting that process would be useful, as well as a good showcase of what dsteem can do.

---

There's two ways to create accounts on the steem blockchain, you can either pay the entire account creation fee up front (*6 STEEM* at the time of writing, more on that later) or you can pay a smaller fee and delegate some of your Steem Power to the new account. This is the method Steemit Inc. uses to create new accounts for users that sign up.

*Delegated Steem Power is like a loan, the new account gets to use a portion of your Steem Power but they can not power it down and sell it.*

The minimum creation fee is [decided by the witnesses](https://steemdb.com/witnesses), they publish a price that is used to determine the final cost of the account. The median account creation price at the time of writing is *0.2 STEEM*. Yes, I just wrote that it cost *6 STEEM* but that's because to get the full price you need to multiply the base fee by 30. This can seem arbitrary at first but it will make sense when you understand how the base fee is used to calculate the discount when delegating steem.

Let's start by creating an account without delegation, to do that you first need to prepare some keys for the new account:

```typescript
const username = 'foo'
const password = 'barman' // βš οΈπŸ”πŸ’©

const ownerKey = PrivateKey.fromLogin(username, password, 'owner')
const activeKey = PrivateKey.fromLogin(username, password, 'active')
const postingKey = PrivateKey.fromLogin(username, password, 'posting')
const memoKey = PrivateKey.fromLogin(username, password, 'memo')
```
[Run on the Playground](https://playground.steem.vc/@^0.6.0#692650ee3bbb13ca4ee6f2bb0fa43000)

As you can see the keys are derived from your username and password, that is why it is a good idea to login on steemit.com with just your posting key.

*Steem has three auth levels: owner, active and posting. Posting lets you post content and vote, active lets you transfer money and owner is only used to change the other keys (and itself). The memo key meant for message encryption and is currently not used on steemit.com.*

Now we need to wrap the keys in something called an `Authority`, they can be used for lots of cool stuff like multisig and shared usage of an account, but for now we will just create the most basic authority objects possible for the keys.

```typescript
const ownerAuth = {
    weight_threshold: 1,
    account_auths: [],
    key_auths: [[ownerKey.createPublic(), 1]]
}
const activeAuth = {
    weight_threshold: 1,
    account_auths: [],
    key_auths: [[activeKey.createPublic(), 1]]
}
const postingAuth = {
    weight_threshold: 1,
    account_auths: [],
    key_auths: [[postingKey.createPublic(), 1]]
}
```
⚠️

Take extra note that those are the *public* versions of the keys, the private keys are only ever used to sign transactions!

*The first rule of steem is: You don't share your private key. The second rule of steem is: YOU DON'T SHARE YOUR PRIVATE KEY! Third rule of steem: Use strong passwords. Fourth rule: don't store your paper-wallet in a damp space.*

That sorted we need to figure out what fee to pay for the new account, we could simply hard-code it to *6 STEEM* but that could break if the witnesses arrive at a new consensus or an update to the protocol changes the constants.

So let's do it the proper way. To do that we need to connect to a steem rpc node and get the current witness consensus along with the configuration constants:

```typescript
const client = new Client('wss://steemd.steemit.com')

const constants = await client.getConfig()
const chainProps = await client.getChainProperties()

const ratio = constants['STEEMIT_CREATE_ACCOUNT_WITH_STEEM_MODIFIER']
const fee = Asset.from(chainProps.account_creation_fee).multiply(ratio)
```
[Run on the Playground](https://playground.steem.vc/@^0.6.0#6b90a1ccd97c0c741da43e2e22f928b5)

*The steem chain properties are median values of what the top 21 witnesses has voted for and besides the account creation fee it also contains the maximum block size and the Steem Dollar interest rate.*

There we go, *6 STEEM*. Now we have everything we need to create a new account, let's construct an operation we can broadcast to the network:

```typescript
const op: AccountCreateOperation = ['account_create', {
    creator: 'this-is-you',
    new_account_name: username,
    owner: ownerAuth,
    active: activeAuth,
    posting: postingAuth,
    memo_key: memoKey,
    json_metadata: '',
}]
```
πŸš›πŸš›

Now we need to package the operation in a transaction, serialize it and finally sign it with the `active` authority of `creator`. That's a bit out of scope for this article so let's just use dsteem's `sendOperations` helper.

```typescript
const creatorKey = PrivateKey.from('5rule1rule1rule1rule1')
await client.broadcast.sendOperations([op], creatorKey)
```
πŸ‘Œ

Account created! Easy! πŸ™‚ Let's create another one, with delegation this time. But first I have to let you in on a little secret, Steem Power does not actually exist, it is just a representation of how many *STEEM* you would have if you withdrew your vesting shares.

*The steem blockchain uses the VESTS symbol to represent your vesting shares in the platform.*

So to figure out how much delegation is needed we need to get the current vesting share price:

```typescript
const props = await client.database.getDynamicGlobalProperties()
const sharePrice = Price.from({
    base: props.total_vesting_shares,
    quote: props.total_vesting_fund_steem
})
```
πŸ’°

The creation fee is discounted on a 1 to 5 basis for delegated steem, e.g. 30 delegated steem is worth 6 steem. With that info we can calculate how many *VESTS* we need to delegate, let's say we want to pay *0.5 STEEM* as a creation fee and the rest as delegation:

```typescript
const fee = Asset.from('0.500 STEEM')
const ratio = constants['STEEMIT_CREATE_ACCOUNT_DELEGATION_RATIO']
const modifier = constants['STEEMIT_CREATE_ACCOUNT_WITH_STEEM_MODIFIER']

const targetDelegation = sharePrice.convert(
    creationFee.multiply(modifier * ratio)
)
const delegation = targetDelegation.subtract(
    sharePrice.convert(fee.multiply(ratio))
)
```
[Run on the Playground](https://playground.steem.vc/@^0.6.0#c80a32b60521f59e705583cae217db48)

Now we can broadcast the operation just like before, just using the `account_create_with_delegation` operation instead of `account_create`. I'll leave that as an exercise for the reader πŸ™‚.

---

But you don't really need to know all this to use dsteem, it does it for you. Creating a new account is as simple as:

```typescript
await client.broadcast.createAccount({
    username: 'foo', password: 'barman', creator: 'someone'
}, someonesActiveKey)
```
[Run on the Playground](https://playground.steem.vc/@^0.6.0#3073d95a75502d81ca56e2ca776c0d94)


That creates the keys, figures out the correct fee and delegation amounts and broadcasts the operation. See the [method's documentation](https://jnordberg.github.io/dsteem/classes/broadcastapi.html#createaccount) for more info.

The more you know... 🐒

---

<center>[GitHub Repository](https://github.com/jnordberg/dsteem) | [API Documentation](https://jnordberg.github.io/dsteem) | [Coding Playground](https://playground.steem.vc) | [Live Demo](https://comments.steem.vc) </center>>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 579 others
πŸ‘Ž  , , ,
properties (23)
authoralmost-digital
permlinkcreating-accounts-with-dsteem-0-6
categorysteemdev
json_metadata{"tags":["steemdev","steemit","steem","dsteem","programming"],"image":["https://steemitimages.com/DQmVkEiwSdRoTVfFsT7G7SZvr38bhaJ6nXWzVqKeK38dygy/dsteem06.gif"],"links":["https://github.com/jnordberg/dsteem","https://steemdb.com/witnesses","https://playground.steem.vc/@^0.6.0#692650ee3bbb13ca4ee6f2bb0fa43000","https://playground.steem.vc/@^0.6.0#6b90a1ccd97c0c741da43e2e22f928b5","https://playground.steem.vc/@^0.6.0#c80a32b60521f59e705583cae217db48","https://playground.steem.vc/@^0.6.0#3073d95a75502d81ca56e2ca776c0d94","https://jnordberg.github.io/dsteem/classes/broadcastapi.html#createaccount","https://jnordberg.github.io/dsteem","https://playground.steem.vc","https://comments.steem.vc"],"app":"steemit/0.1","format":"markdown"}
created2017-08-28 19:48:09
last_update2017-08-29 14:41:21
depth0
children144
last_payout2017-09-04 19:48:09
cashout_time1969-12-31 23:59:59
total_payout_value314.538 HBD
curator_payout_value95.679 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,029
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,158,086
net_rshares113,417,921,716,246
author_curate_reward""
vote details (647)
@abdelsamad10 ·
Great. Thanks for sharing. I vote for you and begin to follow you. And Resteemed... ☺β™₯
properties (22)
authorabdelsamad10
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170902t122441326z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-02 12:24:42
last_update2017-09-02 12:24:42
depth1
children0
last_payout2017-09-09 12:24: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_length86
author_reputation-10,257,492,878
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,643,156
net_rshares0
@abed894 ·
Very excellent site I wish you more excellence and success
πŸ‘  
properties (23)
authorabed894
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t124012317z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 12:40:15
last_update2017-08-29 12:40:15
depth1
children0
last_payout2017-09-05 12:40: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_length58
author_reputation-53,197,969,869
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,225,201
net_rshares974,927,661
author_curate_reward""
vote details (1)
@abue ·
nicee
properties (22)
authorabue
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t154321908z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 15:43:27
last_update2017-08-29 15:43:27
depth1
children0
last_payout2017-09-05 15:43:27
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_length5
author_reputation214,847,203,884
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,242,457
net_rshares0
@agusscout ·
Nice post @almost-digital
properties (22)
authoragusscout
permlinkre-almost-digital-2017910t222125z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-09 19:02:24
last_update2017-09-09 19:02:24
depth1
children0
last_payout2017-09-16 19:02: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_length25
author_reputation1,387,539,889,225
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,385,489
net_rshares0
@ahinga ·
$0.36
Awesome documentation!!!
Tried it on a friends MacBook and it is still loading... 
Is it normal to take some time?
πŸ‘  , , , , , , ,
properties (23)
authorahinga
permlinkre-almost-digital-2017829t34416128z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-08-29 01:44:21
last_update2017-08-29 01:44:21
depth1
children2
last_payout2017-09-05 01:44:21
cashout_time1969-12-31 23:59:59
total_payout_value0.347 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation2,886,133,029,605
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,181,635
net_rshares105,596,768,602
author_curate_reward""
vote details (8)
@almost-digital ·
$0.04
Thanks! You're talking about the [playground](https://playground.steem.vc) right?

I've seen that as well, sometimes the coding editor does not load in Safari. Reloading the page usually fixes it.
πŸ‘  
properties (23)
authoralmost-digital
permlinkre-ahinga-re-almost-digital-2017829t34416128z-20170829t085914960z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://playground.steem.vc"],"app":"steemit/0.1"}
created2017-08-29 08:59:18
last_update2017-08-29 08:59:18
depth2
children1
last_payout2017-09-05 08:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,209,273
net_rshares12,077,951,887
author_curate_reward""
vote details (1)
@ahinga ·
it now works, but i get a message, that the key is wrong...
properties (22)
authorahinga
permlinkre-almost-digital-re-ahinga-re-almost-digital-2017829t34416128z-20170829t160617343z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 16:06:18
last_update2017-08-29 16:06:18
depth3
children0
last_payout2017-09-05 16:06:18
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_length59
author_reputation2,886,133,029,605
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,244,580
net_rshares0
@ak47balasbolin ·
Best of luck
properties (22)
authorak47balasbolin
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20171113t003111005z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-11-13 00:31:15
last_update2017-11-13 00:31:15
depth1
children0
last_payout2017-11-20 00:31: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_length12
author_reputation-79,255,899,685
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,198,258
net_rshares0
@akohdon ·
so many people in here just commenting to get upvotes without even reading  what the writer has to say. so poor
properties (22)
authorakohdon
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t155902212z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 15:59:06
last_update2017-08-29 15:59:06
depth1
children0
last_payout2017-09-05 15:59: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_length111
author_reputation-2,325,460,118
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,243,900
net_rshares0
@amazonas ·
Ty to share upvote and follow you
properties (22)
authoramazonas
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t041844792z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 03:45:21
last_update2017-08-29 03:45:21
depth1
children0
last_payout2017-09-05 03:45: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_length33
author_reputation21,802,261,009
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,188,992
net_rshares0
@amedeo ·
It's much easier to create accounts like this, I'll try
properties (22)
authoramedeo
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t152343868z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 15:23:51
last_update2017-08-30 15:23:51
depth1
children0
last_payout2017-09-06 15:23: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_length55
author_reputation1,550,828,191,286
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,350,683
net_rshares0
@arcange ·
Congratulations @almost-digital!
Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170828) in the following category:

* Pending payout - Ranked 2 with $ 453,55
properties (22)
authorarcange
permlinkre-creating-accounts-with-dsteem-0-6-20170828t163748000z
categorysteemdev
json_metadata""
created2017-08-29 14:37:48
last_update2017-08-29 14:37:48
depth1
children0
last_payout2017-09-05 14:37: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_length214
author_reputation1,146,633,668,945,473
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,235,653
net_rshares0
@artax89 ·
Hello nice post! I already upvote, reesteem and follow you please do the same to help me grow as well!
properties (22)
authorartax89
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t033504060z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 03:35:27
last_update2017-08-29 03:35:27
depth1
children0
last_payout2017-09-05 03:35:27
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_length102
author_reputation372,189,670,451
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,188,405
net_rshares0
@awinyaksteemit ·
wowww..it's so amazing post...thanks for share..
πŸ‘  
properties (23)
authorawinyaksteemit
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t055413749z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 05:54:15
last_update2017-08-29 05:54:15
depth1
children0
last_payout2017-09-05 05:54: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_length48
author_reputation4,019,152,484,864
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,196,526
net_rshares1,620,299,744
author_curate_reward""
vote details (1)
@bikash-tutor · (edited)
Interesting post. Worth reading it. Thank you for sharing.
properties (22)
authorbikash-tutor
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t092023483z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 09:20:27
last_update2017-08-29 09:24:24
depth1
children0
last_payout2017-09-05 09:20:27
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_length58
author_reputation4,579,993,214,824
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,210,651
net_rshares0
@bleepcoin ·
noted :)
properties (22)
authorbleepcoin
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t101059303z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 10:11:00
last_update2017-08-29 10:11:00
depth1
children0
last_payout2017-09-05 10:11: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_length8
author_reputation30,703,823,306,707
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,213,906
net_rshares0
@bukkots.com ·
making sense
πŸ‘  
properties (23)
authorbukkots.com
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t212410594z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 09:22:24
last_update2017-08-29 09:22:24
depth1
children0
last_payout2017-09-05 09:22: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_length12
author_reputation-466,939,679,110
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,210,786
net_rshares127,671,078
author_curate_reward""
vote details (1)
@cement41 ·
ΠšΡ€ΡƒΡ‚Ρ‹Π΅ новости Π° Ρƒ нас всС Ρ‚ΠΈΡ…ΠΎ
ΠšΡ€ΡƒΡ‚Ρ‹Π΅ новости Π° Ρƒ нас всС Ρ‚ΠΈΡ…ΠΎ
properties (22)
authorcement41
permlinkre-creating-accounts-with-dsteem-0-6-20170829t164714
categorysteemdev
json_metadata"{"app": "steepshot/0.0.6", "extensions": [[0, {"beneficiaries": [{"account": "steepshot", "weight": 1000}]}]]}"
created2017-08-29 16:47:15
last_update2017-08-29 16:47:15
depth1
children0
last_payout2017-09-05 16:47: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_length31
author_reputation-10,312,772,153
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,248,404
net_rshares0
@channeljoy ·
https://steemit.com/art/@channeljoy/stunning-example-of-fractal-art
properties (22)
authorchanneljoy
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t101851709z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://steemit.com/art/@channeljoy/stunning-example-of-fractal-art"],"app":"steemit/0.1"}
created2017-08-30 10:19:21
last_update2017-08-30 10:19:21
depth1
children0
last_payout2017-09-06 10:19: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_length67
author_reputation16,910,731,965
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,325,826
net_rshares0
@charles1 ·
This is good to know, thanks a lot for the update. Upped.
In addition to my last comment,  feel free to  join the conversation in my new post about future of steem...it will motivate you more about steem . More success to you.
properties (22)
authorcharles1
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-2017829t192430402z
categorysteemdev
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-08-29 17:24:33
last_update2017-08-29 17:24:33
depth1
children0
last_payout2017-09-05 17:24: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_length226
author_reputation73,578,987,512,478
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,251,847
net_rshares0
@cheeth ·
same other channal
from https://steemit.com/@cheetah
https://busy.org/@cheetah
Okay, I have banned your channal in 5 dyas

Copyright: https://steemit.com/created
Every Post New 
get a collect a username and post on your account

Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!
To get off this list, please chat with us in the #steemitabuse-appeals channel in steemit.chat.
πŸ‘Ž  
properties (23)
authorcheeth
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t193711302z
categorysteemdev
json_metadata{"tags":["steemitabuse-appeals","steemdev"],"links":["https://steemit.com/@cheetah","https://busy.org/@cheetah","https://steemit.com/created"],"app":"steemit/0.1"}
created2017-08-29 19:37:15
last_update2017-08-29 19:37:15
depth1
children0
last_payout2017-09-05 19:37: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_length450
author_reputation-829,057,946,678
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,264,502
net_rshares-125,064,499,111
author_curate_reward""
vote details (1)
@crypticwyrm ·
Just stumbled upon dsteem, thanks so much for creating this! This is exactly what I was looking for to better understand how the Steem API works, I think this will be a great help to me. And now I also finally have a good excuse to check out TypeScript :)
properties (22)
authorcrypticwyrm
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170928t194814561z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-28 19:48:15
last_update2017-09-28 19:48:15
depth1
children1
last_payout2017-10-05 19:48: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_length255
author_reputation6,564,338,116,338
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,212,582
net_rshares0
@almost-digital ·
$0.09
Awesome, let me know how it goes :)
πŸ‘  
properties (23)
authoralmost-digital
permlinkre-crypticwyrm-re-almost-digital-creating-accounts-with-dsteem-0-6-20170929t083121367z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-29 08:31:24
last_update2017-09-29 08:31:24
depth2
children0
last_payout2017-10-06 08:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.065 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,257,507
net_rshares31,598,855,598
author_curate_reward""
vote details (1)
@cryptoprofessor ·
I love the idea.It looks you have quite a bit of work cut out for you still, but the project sounds really good. Keep up the good work and keep us posted
properties (22)
authorcryptoprofessor
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t075001858z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 07:50:03
last_update2017-08-30 07:50:03
depth1
children0
last_payout2017-09-06 07:50:03
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_length153
author_reputation566,048,726,222
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,314,683
net_rshares0
@davedickeyyall ·
Sounds exceptionally complicated..
πŸ‘  
properties (23)
authordavedickeyyall
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t222444920z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 22:24:48
last_update2017-08-28 22:24:48
depth1
children0
last_payout2017-09-04 22:24: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_length34
author_reputation909,340,977,048,664
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,169,600
net_rshares344,935,452
author_curate_reward""
vote details (1)
@davidrestrepo ·
$0.44
Awesome, but still thinking Steemit as itself should consider to fix this problem. I know that it cost 9 STEEM to create a new account, but again, i agree with Steemit to charge us a little percentage for all author and curation rewards to cover this account creation cost.
πŸ‘  ,
properties (23)
authordavidrestrepo
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t031337020z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 03:13:33
last_update2017-08-30 03:13:33
depth1
children0
last_payout2017-09-06 03:13:33
cashout_time1969-12-31 23:59:59
total_payout_value0.334 HBD
curator_payout_value0.109 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation757,119,534,433
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,296,903
net_rshares132,024,901,867
author_curate_reward""
vote details (2)
@diansolo ·
i am new in esteem. please come home to stop at my update. Please help me @almost-digital
properties (22)
authordiansolo
permlinkre-almost-digital-2017830t1235345z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-29 18:23:09
last_update2017-08-29 18:23:09
depth1
children0
last_payout2017-09-05 18:23: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_length89
author_reputation2,338,746,788,759
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,257,488
net_rshares0
@farukcom ·
Thank you @almost-digital  you have done good job.
properties (22)
authorfarukcom
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20171104t003036472z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"}
created2017-11-04 00:30:45
last_update2017-11-04 00:30:45
depth1
children0
last_payout2017-11-11 00:30: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_length50
author_reputation32,897,128,085,525
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,393,731
net_rshares0
@fawadsolangi ·
Priority: try to get maximum Steem Power, and invest with steem.

Steem is going to occupy big space.
properties (22)
authorfawadsolangi
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t213212963z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 21:32:15
last_update2017-08-28 21:32:15
depth1
children0
last_payout2017-09-04 21:32: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_length101
author_reputation-87,866,079,410
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,165,983
net_rshares0
@fawadsolangi ·
Up-voted
For sure its important 

Please visit 
https://steemit.com/education/@fawadsolangi/coin-the-education-1-campaign-to-help-student-with-education
properties (22)
authorfawadsolangi
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t210711450z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://steemit.com/education/@fawadsolangi/coin-the-education-1-campaign-to-help-student-with-education"],"app":"steemit/0.1"}
created2017-08-30 21:07:15
last_update2017-08-30 21:07:15
depth1
children0
last_payout2017-09-06 21:07: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_length152
author_reputation-87,866,079,410
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,380,957
net_rshares0
@fishmon ·
doesnt this make it easy for people to create 100+ spam accounts ?
properties (22)
authorfishmon
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t145743192z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 14:57:45
last_update2017-08-29 14:57:45
depth1
children1
last_payout2017-09-05 14:57: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_length66
author_reputation4,373,835,902,560
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,237,768
net_rshares0
@almost-digital ·
Only if they are willing to pay 600 STEEM+
properties (22)
authoralmost-digital
permlinkre-fishmon-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t081627045z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 08:16:27
last_update2017-08-30 08:16:27
depth2
children0
last_payout2017-09-06 08:16:27
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_length42
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,316,632
net_rshares0
@fury123 ·
Not related to the topic but can someone please clarify that if my account is hacked and I want to recover it would I need the phone number with which I registered this account or not? Thank you in advance!
properties (22)
authorfury123
permlinkre-almost-digital-2017829t34151124z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-28 22:41:57
last_update2017-08-28 22:41:57
depth1
children0
last_payout2017-09-04 22:41: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_length206
author_reputation6,610,638,415,250
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,170,705
net_rshares0
@golafire ·
Follow for Follow 😊
properties (22)
authorgolafire
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t034128309z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 03:41:30
last_update2017-08-29 03:41:30
depth1
children0
last_payout2017-09-05 03:41: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_length19
author_reputation-31,047,365,969
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,188,747
net_rshares0
@greenbigfrog ·
Are there any other libraries for other languages?
properties (22)
authorgreenbigfrog
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t141734919z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"busy/1.0.0"}
created2017-08-29 14:17:36
last_update2017-08-29 14:17:36
depth1
children2
last_payout2017-09-05 14:17: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_length50
author_reputation8,811,141,999
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,233,720
net_rshares0
@almost-digital ·
Yep, there's a official [python library](https://github.com/steemit/steem-python)
πŸ‘  
properties (23)
authoralmost-digital
permlinkre-greenbigfrog-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t081555940z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://github.com/steemit/steem-python"],"app":"steemit/0.1"}
created2017-08-30 08:15:54
last_update2017-08-30 08:15:54
depth2
children1
last_payout2017-09-06 08:15: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_length81
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,316,589
net_rshares2,331,949,942
author_curate_reward""
vote details (1)
@greenbigfrog ·
I was wondering if there's some list somewhere that you could link me. I found one for ruby: https://github.com/inertia186/radiator
is there some central list someplace?
properties (22)
authorgreenbigfrog
permlinkre-almost-digital-re-greenbigfrog-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t134115197z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://github.com/inertia186/radiator"],"app":"steemit/0.1"}
created2017-08-30 13:41:15
last_update2017-08-30 13:41:15
depth3
children0
last_payout2017-09-06 13:41: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_length169
author_reputation8,811,141,999
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,340,957
net_rshares0
@gtg ·
$1.34
I've already said that few times but repeating wouldn't hurt:
Good work! :-)
πŸ‘  , , ,
properties (23)
authorgtg
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203131815z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:31:30
last_update2017-08-28 20:31:30
depth1
children1
last_payout2017-09-04 20:31:30
cashout_time1969-12-31 23:59:59
total_payout_value1.144 HBD
curator_payout_value0.192 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation461,829,867,647,270
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,465
net_rshares370,598,434,943
author_curate_reward""
vote details (4)
@almost-digital ·
Thanks! Right back at ya :)
properties (22)
authoralmost-digital
permlinkre-gtg-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204334143z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:43:33
last_update2017-08-28 20:43:33
depth2
children0
last_payout2017-09-04 20:43: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_length27
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,162,372
net_rshares0
@hamzaoui ·
thanks for sharring this good information
properties (22)
authorhamzaoui
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t224420697z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 22:44:54
last_update2017-08-28 22:44:54
depth1
children0
last_payout2017-09-04 22:44: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_length41
author_reputation2,667,249,998,202
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,170,898
net_rshares0
@hanifmunandar ·
I like your post, and I will wait for your next posting
properties (22)
authorhanifmunandar
permlinkre-almost-digital-2017829t1138547z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-29 04:38:57
last_update2017-08-29 04:38:57
depth1
children0
last_payout2017-09-05 04:38: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_length55
author_reputation-1,987,580,910,022
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,191,916
net_rshares0
@j4y · (edited)
$0.06
Nice job

Please add syntax highlighting to steemit!
πŸ‘  
properties (23)
authorj4y
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t003948935z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 00:39:39
last_update2017-08-29 00:40:39
depth1
children1
last_payout2017-09-05 00:39:39
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation184,465,720,544
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,177,704
net_rshares18,001,708,205
author_curate_reward""
vote details (1)
@almost-digital ·
It's coming :) https://github.com/steemit/condenser/pull/1689
πŸ‘  
properties (23)
authoralmost-digital
permlinkre-j4y-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t081209415z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://github.com/steemit/condenser/pull/1689"],"app":"steemit/0.1"}
created2017-08-30 08:12:09
last_update2017-08-30 08:12:09
depth2
children0
last_payout2017-09-06 08:12: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_length61
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,316,300
net_rshares2,549,872,896
author_curate_reward""
vote details (1)
@jadoob ·
$0.07
Thanks for putting this together! Resteemed and will definately play around with this this weekend when I have some free time
πŸ‘  
properties (23)
authorjadoob
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203234522z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:32:33
last_update2017-08-28 20:32:33
depth1
children2
last_payout2017-09-04 20:32:33
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation10,225,715,769
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,547
net_rshares20,844,083,185
author_curate_reward""
vote details (1)
@almost-digital ·
Awesome! Let me know how it goes :)
properties (22)
authoralmost-digital
permlinkre-jadoob-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204553332z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:45:54
last_update2017-08-28 20:45:54
depth2
children1
last_payout2017-09-04 20:45: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_length35
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,162,545
net_rshares0
@jadoob ·
Will do! :)
properties (22)
authorjadoob
permlinkre-almost-digital-re-jadoob-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t205726527z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:57:24
last_update2017-08-28 20:57:24
depth3
children0
last_payout2017-09-04 20:57: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_length11
author_reputation10,225,715,769
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,163,463
net_rshares0
@jeffjagoe ·
$0.20
This sounds much cheaper than making accounts via anon-steem
πŸ‘  
properties (23)
authorjeffjagoe
permlinkre-almost-digital-2017829t8232864z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-08-29 12:23:09
last_update2017-08-29 12:23:09
depth1
children1
last_payout2017-09-05 12:23:09
cashout_time1969-12-31 23:59:59
total_payout_value0.152 HBD
curator_payout_value0.052 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation611,537,845,941,425
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,223,722
net_rshares59,689,874,575
author_curate_reward""
vote details (1)
@almost-digital ·
I've made a tool to create accounts here: https://account.steem.vc
It does not do delegation yet so you every account cost 6 STEEM (that will be steem power in the new account)
πŸ‘  ,
properties (23)
authoralmost-digital
permlinkre-jeffjagoe-re-almost-digital-2017829t8232864z-20170830t081451389z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://account.steem.vc"],"app":"steemit/0.1"}
created2017-08-30 08:14:51
last_update2017-08-30 08:14:51
depth2
children0
last_payout2017-09-06 08:14: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_length176
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,316,510
net_rshares2,727,810,311
author_curate_reward""
vote details (2)
@jhoshua1144 ·
Great post! The project is interesting . At this point I agree with you.
properties (22)
authorjhoshua1144
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t131742808z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 12:54:33
last_update2017-08-29 12:54:33
depth1
children0
last_payout2017-09-05 12:54: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_length72
author_reputation67,841,557,506
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,226,254
net_rshares0
@johnlue ·
Great post @almost-digital. Thanks for shedding some light on your project. Im personally looking out for dsteem
properties (22)
authorjohnlue
permlinkre-almost-digital-2017829t7303858z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-29 12:30:42
last_update2017-08-29 12:30:42
depth1
children0
last_payout2017-09-05 12:30: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_length112
author_reputation1,015,398,976,252
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,224,370
net_rshares0
@joshtristram ·
$0.06
Really cool project. Im playing with it now
πŸ‘  
properties (23)
authorjoshtristram
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t231037410z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 23:10:39
last_update2017-08-28 23:10:39
depth1
children0
last_payout2017-09-04 23:10:39
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation976,548,544,298
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,172,474
net_rshares18,001,708,205
author_curate_reward""
vote details (1)
@kaleem345 ·
Nice work bro n thanks for comments
properties (22)
authorkaleem345
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20171003t143252489z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-10-03 14:34:42
last_update2017-10-03 14:34:42
depth1
children0
last_payout2017-10-10 14:34: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_length35
author_reputation9,849,577,612,331
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,672,780
net_rshares0
@kedirimoet ·
Thanks for your information
I want to try it
properties (22)
authorkedirimoet
permlinkre-almost-digital-2017829t121210213z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-29 05:12:15
last_update2017-08-29 05:12:15
depth1
children0
last_payout2017-09-05 05:12: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_length44
author_reputation163,001,311,656
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,193,881
net_rshares0
@kellyjanderson ·
This is the best post about user creation I have seen to date. You just made my project task of creating a new user so much easier, and a future feature in our app much more plausible.

We will be switching our project over to dsteem before we write our next remote call!

Cheers,
@kellyjanderson
properties (22)
authorkellyjanderson
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170912t234351137z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["kellyjanderson"],"app":"steemit/0.1"}
created2017-09-12 23:43:51
last_update2017-09-12 23:43:51
depth1
children1
last_payout2017-09-19 23:43: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_length296
author_reputation1,966,394,864,061
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,707,982
net_rshares0
@almost-digital ·
Awesome, thanks! I'm happy that it helped you
properties (22)
authoralmost-digital
permlinkre-kellyjanderson-re-almost-digital-creating-accounts-with-dsteem-0-6-20170913t172625927z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-13 17:26:24
last_update2017-09-13 17:26:24
depth2
children0
last_payout2017-09-20 17:26: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_length45
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,782,604
net_rshares0
@kellyjanderson ·
Hi, I created some accounts with client.broadcast.createAccount but I don't seem to be able to remove my delegation from those users. I used delegateVestingShares to delegate 0.000000 to user rgb14, the delegation got recorded in the blockchain but I still have delegation coming off my account.
properties (22)
authorkellyjanderson
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20180109t171853446z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-01-09 17:18:42
last_update2018-01-09 17:18:42
depth1
children0
last_payout2018-01-16 17:18: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_length295
author_reputation1,966,394,864,061
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,299,983
net_rshares0
@kovilvns ·
Nice post,Thank you for sharing.
properties (22)
authorkovilvns
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t032614293z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 03:26:15
last_update2017-08-29 03:26:15
depth1
children0
last_payout2017-09-05 03:26: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_length32
author_reputation-1,954,727,955,537
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,187,884
net_rshares0
@lennstar ·
$0.86
an important thing to know is that usernames are alphamnumerical only.

Took me a few tries and headscratching 2 days ago to get this.
πŸ‘  , , , , , ,
properties (23)
authorlennstar
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t201003150z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:10:03
last_update2017-08-28 20:10:03
depth1
children1
last_payout2017-09-04 20:10:03
cashout_time1969-12-31 23:59:59
total_payout_value0.849 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation37,894,934,005,044
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,159,762
net_rshares238,477,079,329
author_curate_reward""
vote details (7)
@juanmiguelsalas ·
>Took me a few tries and headscratching 2 days ago to get this.

Happens to me too :)
properties (22)
authorjuanmiguelsalas
permlinkre-lennstar-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t202648070z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:26:45
last_update2017-08-28 20:26:45
depth2
children0
last_payout2017-09-04 20:26: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_reputation91,321,277,026,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,112
net_rshares0
@litonmrss ·
nice
properties (22)
authorlitonmrss
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20171106t153429664z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-11-06 15:34:33
last_update2017-11-06 15:34:33
depth1
children0
last_payout2017-11-13 15:34: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_length4
author_reputation404,982,435
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,614,789
net_rshares0
@madcool ·
$0.02
The project as you work is worthy of always getting support from anyone, because the project is very helpful for little whales like me to get a whale mom to grow up soon.

This project or similar projects as it already is:
#steemdev #steemit #dsteem #esteem # steem-js or something else.

I always support anyone who always provides benefits for many people.

regard the little whale @madcool the mother's seeker.
πŸ‘  ,
properties (23)
authormadcool
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-2017829t20536447z
categorysteemdev
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-08-29 13:05:45
last_update2017-08-29 13:05:45
depth1
children0
last_payout2017-09-05 13:05:45
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length413
author_reputation169,400,923,890
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,227,210
net_rshares7,124,869,825
author_curate_reward""
vote details (2)
@malay11 ·
Thank you very much for creating this unique Steem application.
properties (22)
authormalay11
permlinkre-almost-digital-2017829t1585874z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-08-28 20:29:03
last_update2017-08-28 20:29:03
depth1
children0
last_payout2017-09-04 20:29:03
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_length63
author_reputation12,046,977,729,976
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,300
net_rshares0
@marketanalysis ·
$0.04
way over my head
πŸ‘  ,
properties (23)
authormarketanalysis
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t200428459z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:04:03
last_update2017-08-28 20:04:03
depth1
children0
last_payout2017-09-04 20:04:03
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation159,257,584,031
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,159,298
net_rshares10,548,159,516
author_curate_reward""
vote details (2)
@mcsamm ·
very beautiful post...this is a nice project...l joined steemit not long ago but am really loving every bit of your post...am in for this project too..upvoted
πŸ‘  , , ,
properties (23)
authormcsamm
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t013834551z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 17:43:51
last_update2017-08-29 17:43:51
depth1
children0
last_payout2017-09-05 17:43: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_length158
author_reputation1,546,513,356,399,413
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,253,651
net_rshares5,310,004,215
author_curate_reward""
vote details (4)
@microsomes ·
$0.07
amazing work
πŸ‘  ,
properties (23)
authormicrosomes
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203614817z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:36:15
last_update2017-08-28 20:36:15
depth1
children1
last_payout2017-09-04 20:36:15
cashout_time1969-12-31 23:59:59
total_payout_value0.062 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation121,493,539,638
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,815
net_rshares18,832,084,560
author_curate_reward""
vote details (2)
@almost-digital ·
Thanks!
properties (22)
authoralmost-digital
permlinkre-microsomes-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204729798z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:47:30
last_update2017-08-28 20:47:30
depth2
children0
last_payout2017-09-04 20:47: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_length7
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,162,670
net_rshares0
@mohameddz ·
good post men
properties (22)
authormohameddz
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203029810z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:30:30
last_update2017-08-28 20:30:30
depth1
children0
last_payout2017-09-04 20:30: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_length13
author_reputation4,760,373,340
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,395
net_rshares0
@mohameddz ·
Wow good information on one post, I wait for your next posting
properties (22)
authormohameddz
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203359386z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:34:00
last_update2017-08-28 20:34:00
depth1
children0
last_payout2017-09-04 20:34: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_length62
author_reputation4,760,373,340
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,640
net_rshares0
@mohameddz ·
Wow good information on one post, I wait for your next posting
properties (22)
authormohameddz
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t220546555z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 22:05:45
last_update2017-08-28 22:05:45
depth1
children0
last_payout2017-09-04 22:05: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_length62
author_reputation4,760,373,340
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,168,265
net_rshares0
@mukhtar.juned ·
I has follow, upvote and resteem your post, i hope you're following me too and do what i do it for you brother, i'll be back thanks 

Best regards 
@mukhtar.juned 

#indonesia
properties (22)
authormukhtar.juned
permlinkre-almost-digital-2017830t8047599z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-30 01:01:03
last_update2017-08-30 01:01:03
depth1
children0
last_payout2017-09-06 01:01:03
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_length175
author_reputation7,967,035,623,756
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,288,136
net_rshares0
@nasrud ·
There's two ways to create accounts on the steem blockchain, you can either pay the entire account creation fee up front (6 STEEM at the time of writing, more on that later) or you can pay a smaller fee and delegate some of your Steem Power to the new account. This is the method Steemit Inc. uses to create new accounts for users that sign up  @almost-digital
properties (22)
authornasrud
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t071754568z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"}
created2017-08-29 07:17:57
last_update2017-08-29 07:17:57
depth1
children0
last_payout2017-09-05 07:17: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_length360
author_reputation12,576,574,013,771
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,202,191
net_rshares0
@nasrud ·
> One of the reasons I created dsteem was because I felt that the current ecosystem really needs more documentation (that's what the d in dsteem stands for). Starting out I found it difficult to understand how to use the protocol and how the calls should be formatted, especially for the account creation process. So I thought that documenting that process would be useful, as well as a good showcase of what dsteem can do.
properties (22)
authornasrud
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t082556023z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 08:26:00
last_update2017-08-29 08:26:00
depth1
children0
last_payout2017-09-05 08:26: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_length423
author_reputation12,576,574,013,771
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,207,083
net_rshares0
@neowne ·
very great post!
properties (22)
authorneowne
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t194932651z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 19:49:33
last_update2017-08-28 19:49:33
depth1
children0
last_payout2017-09-04 19:49: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_length16
author_reputation391,544,822,175
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,158,193
net_rshares0
@netuoso ·
@almost-digital I just used Dsteem in https://github.com/aaroncox/vessel/pull/33 and it worked out very well. Hopefully we will see a new vessel build with the feature soon
properties (22)
authornetuoso
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170904t040521858z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["almost-digital"],"links":["https://github.com/aaroncox/vessel/pull/33"],"app":"steemit/0.1"}
created2017-09-04 04:05:24
last_update2017-09-04 04:05:24
depth1
children0
last_payout2017-09-11 04:05: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_length172
author_reputation151,901,967,807,285
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,807,345
net_rshares0
@newzifa ·
nice
follow me @newzifa
properties (22)
authornewzifa
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t155807550z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["newzifa"],"app":"steemit/0.1"}
created2017-08-29 15:58:09
last_update2017-08-29 15:58:09
depth1
children0
last_payout2017-09-05 15:58: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_length23
author_reputation164,201,797,583
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,243,814
net_rshares0
@nicholas1983 ·
Interesting. Have you thought about making a video for the severely techno illiterate?
properties (22)
authornicholas1983
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t075942919z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 07:59:42
last_update2017-08-29 07:59:42
depth1
children0
last_payout2017-09-05 07:59: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_length86
author_reputation678,448,408,817
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,205,301
net_rshares0
@outspoken ·
dSteem sounds like an interesting project
properties (22)
authoroutspoken
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t052639919z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 05:26:39
last_update2017-08-30 05:26:39
depth1
children0
last_payout2017-09-06 05:26:39
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_length41
author_reputation17,039,455,977
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,305,326
net_rshares0
@p0o ·
$0.30
Great job buy how different it is compared to [steem-js](https://github.com/steemit/steem-js)? I feel it is much more appreciated to help steem-js develops better documentation and everyone use that instead of creating new packages. Just my 2 cents here.
πŸ‘  , ,
properties (23)
authorp0o
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t051045599z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://github.com/steemit/steem-js"],"app":"steemit/0.1"}
created2017-08-29 05:10:48
last_update2017-08-29 05:10:48
depth1
children3
last_payout2017-09-05 05:10:48
cashout_time1969-12-31 23:59:59
total_payout_value0.298 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length254
author_reputation8,373,104,781,065
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,193,788
net_rshares84,689,879,873
author_curate_reward""
vote details (3)
@almost-digital ·
$0.27
It's [faster](https://steemit.com/steemdev/@almost-digital/dsteem-vs-steem-js-round-1), written in [TypeScript](https://www.typescriptlang.org) and has [99% test coverage](https://coveralls.io/github/jnordberg/dsteem?branch=master) along with integration tests against a [testnet](https://testnet.steem.vc). I'm also aiming to simplify the steemd APIs instead of just providing a 1:1 call wrapper as shown here with the account creation.

But I understand your point. I started out using steem-js and even have a commit or two in the project but to be honest I didn't like the smell of the code... and barging in to a established project and saying "Hi! I'm new here. I'm going to rewrite all your things in my own opinionated way" usually don't go over well :) I also recently wrote a [WebSocket RPC client](https://github.com/jnordberg/wsrpc) that I could reuse a lot of code from.
πŸ‘  ,
properties (23)
authoralmost-digital
permlinkre-p0o-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t085453238z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://steemit.com/steemdev/@almost-digital/dsteem-vs-steem-js-round-1","https://www.typescriptlang.org","https://coveralls.io/github/jnordberg/dsteem?branch=master","https://testnet.steem.vc","https://github.com/jnordberg/wsrpc"],"app":"steemit/0.1"}
created2017-08-29 08:54:57
last_update2017-08-29 08:54:57
depth2
children1
last_payout2017-09-05 08:54:57
cashout_time1969-12-31 23:59:59
total_payout_value0.202 HBD
curator_payout_value0.066 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length883
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,208,987
net_rshares75,216,954,736
author_curate_reward""
vote details (2)
@p0o ·
Great contributions on your side. I think having a 1:1 call wrapper is necessary to have a low-level API available for different use cases but I wished we could all build new high level APIs on top of that one single well maintained code.

Even so, it's a great effort on your side and maybe it's better to use a well tested code like yours for new apps. I find it a little risky for new devs to join since most of the sample codes are for steem-js and it makes your job much harder to promote your solution.
properties (22)
authorp0o
permlinkre-almost-digital-re-p0o-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t171546743z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 17:15:48
last_update2017-08-29 17:15:48
depth3
children0
last_payout2017-09-05 17:15: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_length508
author_reputation8,373,104,781,065
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,251,001
net_rshares0
@urbansteemers ·
But I understand your point. I started out using steem-js and even have a commit or two in the project but to be honest I didn't like the smell of the code..
properties (22)
authorurbansteemers
permlinkre-p0o-re-almost-digital-creating-accounts-with-dsteem-0-6-20171002t215930422z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-10-02 21:59:30
last_update2017-10-02 21:59:30
depth2
children0
last_payout2017-10-09 21:59: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_length157
author_reputation83,763,475,248
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,608,665
net_rshares0
@paradiselooi ·
what a great project done here, i also learned programming before and i love your work. Looking forward for your next work so i can learn something from you.
πŸ‘  
properties (23)
authorparadiselooi
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t042305469z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 04:23:06
last_update2017-08-29 04:23:06
depth1
children0
last_payout2017-09-05 04:23: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_length157
author_reputation262,899,688
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,191,037
net_rshares3,789,833,306
author_curate_reward""
vote details (1)
@pcste ·
good informative post :-)
properties (22)
authorpcste
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t201720570z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:17:21
last_update2017-08-28 20:17:21
depth1
children1
last_payout2017-09-04 20:17: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_length25
author_reputation112,529,675,837,494
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,160,389
net_rshares0
@almost-digital ·
Thanks! :)
πŸ‘  
properties (23)
authoralmost-digital
permlinkre-pcste-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204708550z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:47:09
last_update2017-08-28 20:47:09
depth2
children0
last_payout2017-09-04 20:47: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_length10
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,162,637
net_rshares4,304,228,006
author_curate_reward""
vote details (1)
@pia-ps ·
Great job. Thank you!!
properties (22)
authorpia-ps
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t063816394z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 06:38:18
last_update2017-08-29 06:38:18
depth1
children0
last_payout2017-09-05 06:38:18
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_length22
author_reputation310,246,298,385
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,199,596
net_rshares0
@princekayani ·
Its mean basically you are software developer??
πŸ‘  
properties (23)
authorprincekayani
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t202539904z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:25:42
last_update2017-08-28 20:25:42
depth1
children1
last_payout2017-09-04 20:25: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_length47
author_reputation61,289,909,290
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,033
net_rshares365,146,159
author_curate_reward""
vote details (1)
@almost-digital ·
lol! tldr; I'm a swoftware developer :D
πŸ‘  
properties (23)
authoralmost-digital
permlinkre-princekayani-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204506255z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:45:06
last_update2017-08-28 20:45:06
depth2
children0
last_payout2017-09-04 20:45: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_length39
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,162,477
net_rshares312,090,734
author_curate_reward""
vote details (1)
@randowhale ·
This post received a 1.5% upvote from @randowhale thanks to @almost-digital!  For more information, [click here](https://steemit.com/steemit/@randowhale/randowhale-is-now-only-1-steem-sbd-per-vote-spread-the-news)!
properties (22)
authorrandowhale
permlinkre-creating-accounts-with-dsteem-0-6-20170901t002701
categorysteemdev
json_metadata"{"app": "randowhale/0.1", "format": "markdown"}"
created2017-09-01 00:27:03
last_update2017-09-01 00:27:03
depth1
children0
last_payout2017-09-08 00:27:03
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_length214
author_reputation47,657,457,485,459
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,499,651
net_rshares0
@reko ·
Hejsan @almost-digital - Join - #teamsweden !
[[ #teamsweden ] Uniting the Swedish Community | Get Your Own Custom Footer! - Original art @jnart](https://steemit.com/steemit/@jnart/teamsweden-uniting-the-swedish-community-footer-ready-original-art-jnart)
<a href="https://steemit.com/@reko"><img src="https://image.ibb.co/mxSHj5/Sverige_reko.png" alt="Sverige_reko" border="0"></a></center><center>
πŸ‘  
properties (23)
authorreko
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170907t022236209z
categorysteemdev
json_metadata{"tags":["teamsweden","steemdev"],"users":["almost-digital"],"image":["https://image.ibb.co/mxSHj5/Sverige_reko.png"],"links":["https://steemit.com/steemit/@jnart/teamsweden-uniting-the-swedish-community-footer-ready-original-art-jnart","https://steemit.com/@reko"],"app":"steemit/0.1"}
created2017-09-07 02:22:36
last_update2017-09-07 02:22:36
depth1
children0
last_payout2017-09-14 02:22: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_length398
author_reputation110,602,366,181,017
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,106,104
net_rshares5,688,144,524
author_curate_reward""
vote details (1)
@rooneey ·
Good....doest dsteem influence on steemit account performance if we activate it. I need more information about it because it seems not free. But it's ok as long as i know it clearly at first
properties (22)
authorrooneey
permlinkre-almost-digital-2017829t15557532z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-29 08:06:03
last_update2017-08-29 08:06:03
depth1
children0
last_payout2017-09-05 08:06:03
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_length190
author_reputation8,862,226,725,886
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,205,761
net_rshares0
@roxyferis ·
thank you so much this post was really really helpful i understand a lot better now thank you
properties (22)
authorroxyferis
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t151038496z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 15:12:27
last_update2017-08-29 15:12:27
depth1
children0
last_payout2017-09-05 15:12:27
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_length93
author_reputation198,850,332,228
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,239,207
net_rshares0
@rsrestinga ·
Good job, thank you.
πŸ‘  
properties (23)
authorrsrestinga
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t000046703z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 00:00:51
last_update2017-08-29 00:00:51
depth1
children0
last_payout2017-09-05 00:00: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_length20
author_reputation513,693,976,786
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,175,361
net_rshares1,032,957,229
author_curate_reward""
vote details (1)
@rudystyle ·
$0.17
Nice example. Hope you can come out with more examples. I am wondering how would one get the recent transfers for an account (the data on the wallet page) ?
πŸ‘  
properties (23)
authorrudystyle
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t101619602z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 10:16:18
last_update2017-08-29 10:16:18
depth1
children2
last_payout2017-09-05 10:16:18
cashout_time1969-12-31 23:59:59
total_payout_value0.129 HBD
curator_payout_value0.043 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length156
author_reputation5,936,282,236,662
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,214,233
net_rshares48,320,374,656
author_curate_reward""
vote details (1)
@almost-digital ·
$0.38
Thanks! There isn't a helper to get the account history in dsteem yet but here's how you do it manually:

https://playground.steem.vc/@^0.6.0#c182038ce97d3d4d283b50fd87ed0190
πŸ‘  
properties (23)
authoralmost-digital
permlinkre-rudystyle-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t104249612z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://playground.steem.vc/@^0.6.0#c182038ce97d3d4d283b50fd87ed0190"],"app":"steemit/0.1"}
created2017-08-29 10:42:48
last_update2017-08-29 10:42:48
depth2
children1
last_payout2017-09-05 10:42:48
cashout_time1969-12-31 23:59:59
total_payout_value0.286 HBD
curator_payout_value0.095 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,216,117
net_rshares107,035,415,780
author_curate_reward""
vote details (1)
@rudystyle ·
thanks  a lot
properties (22)
authorrudystyle
permlinkre-almost-digital-re-rudystyle-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t082238376z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 08:22:39
last_update2017-08-30 08:22:39
depth3
children0
last_payout2017-09-06 08:22:39
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_length13
author_reputation5,936,282,236,662
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,317,093
net_rshares0
@sachumanoj ·
You can Follow me for the latest Technology Related News and Articles.. Thank You...
πŸ‘  
properties (23)
authorsachumanoj
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t063823839z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 06:38:33
last_update2017-08-29 06:38:33
depth1
children0
last_payout2017-09-05 06:38: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_length84
author_reputation-15,034,412,992
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,199,614
net_rshares83,863,649
author_curate_reward""
vote details (1)
@saini11 ·
Great news
properties (22)
authorsaini11
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t034128505z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 03:41:33
last_update2017-08-29 03:41:33
depth1
children0
last_payout2017-09-05 03:41: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_length10
author_reputation-1,494,386,599,331
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,188,752
net_rshares0
@samuelsunday ·
Nice one
properties (22)
authorsamuelsunday
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170904t042341409z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-09-04 04:26:42
last_update2017-09-04 04:26:42
depth1
children0
last_payout2017-09-11 04:26: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_length8
author_reputation10,761,760,483
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,808,669
net_rshares0
@sandra12 ·
$0.03
this is great,thank you @almost-digital.
πŸ‘  
properties (23)
authorsandra12
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t202919517z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"}
created2017-08-28 20:29:21
last_update2017-08-28 20:29:21
depth1
children0
last_payout2017-09-04 20:29:21
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation20,302,657,252
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,324
net_rshares9,474,583,265
author_curate_reward""
vote details (1)
@sebako ·
$0.06
great stuff - will check that out soonish this weekend :)
πŸ‘  
properties (23)
authorsebako
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t013838143z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 01:38:39
last_update2017-08-29 01:38:39
depth1
children0
last_payout2017-09-05 01:38:39
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation10,897,361,389
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,181,302
net_rshares18,001,708,205
author_curate_reward""
vote details (1)
@sharoon ·
very nice
properties (22)
authorsharoon
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t182223713z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 18:22:24
last_update2017-08-29 18:22:24
depth1
children0
last_payout2017-09-05 18:22: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_length9
author_reputation-330,640,444,933
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,257,415
net_rshares0
@shawn4745 ·
an important thing to know is that usernames are alphamnumerical only.

Took me a few tries and headscratching 2 days ago to get this.
πŸ‘  
πŸ‘Ž  
properties (23)
authorshawn4745
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t205832035z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:58:33
last_update2017-08-28 20:58:33
depth1
children0
last_payout2017-09-04 20:58: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_length134
author_reputation174,230,277,826
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,163,550
net_rshares-178,276,249,145
author_curate_reward""
vote details (2)
@shawn4745 ·
wow this is great...so from what I gather from this in short you have just made it much easier to create accounts?... great work and thank you @almost-digita
πŸ‘Ž  
properties (23)
authorshawn4745
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t205946267z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["almost-digita"],"app":"steemit/0.1"}
created2017-08-28 20:59:48
last_update2017-08-28 20:59:48
depth1
children0
last_payout2017-09-04 20: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_length157
author_reputation174,230,277,826
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,163,646
net_rshares-183,806,915,360
author_curate_reward""
vote details (1)
@sheapureness ·
Love the post and trying to work out how I can run the code,  I use to be a techie head a little bit of java and sql but this was a very long time ago.  So not really any great programming but you have definitely made me curious again.  How can I run this @almost-digital may be a silly question.  But you won't know unless you ask.  Following and upvoting thanks for inspiring my technical juices.
properties (22)
authorsheapureness
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t091128690z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"}
created2017-08-30 09:11:27
last_update2017-08-30 09:11:27
depth1
children0
last_payout2017-09-06 09:11:27
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_length398
author_reputation533,714,860,147
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,320,856
net_rshares0
@skull1 ·
amazing work  info
properties (22)
authorskull1
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t002020074z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 00:20:39
last_update2017-08-29 00:20:39
depth1
children0
last_payout2017-09-05 00:20:39
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_length18
author_reputation5,410,192,501
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,176,572
net_rshares0
@smartgeek ·
Awesome project,
Thanks for sharing
properties (22)
authorsmartgeek
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t091810763z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 09:17:54
last_update2017-08-29 09:17:54
depth1
children0
last_payout2017-09-05 09:17: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_length35
author_reputation303,476,072,740
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,210,473
net_rshares0
@someguy123 ·
$4.97
Considering [SteemJS-Lib](https://github.com/svk31/steemjs-lib) by @svk is practically abandoned, I may re-write my price feed to use **dsteem**.

**A few questions:**

 1. Does it handle disconnects smoothly? i.e. automatically reconnect without just breaking
 2. Does it support other chains? e.g. GOLOS, PeerPlays
 3. Is there a browser version ready built?
 4. What versions of NodeJS does it run on?
πŸ‘  , , , , , , , , , , , , , , ,
properties (23)
authorsomeguy123
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t215752918z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["svk"],"links":["https://github.com/svk31/steemjs-lib"],"app":"steemit/0.1"}
created2017-08-28 21:57:51
last_update2017-08-28 21:57:51
depth1
children12
last_payout2017-09-04 21:57:51
cashout_time1969-12-31 23:59:59
total_payout_value4.843 HBD
curator_payout_value0.131 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length404
author_reputation103,945,664,283,580
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,167,742
net_rshares1,376,125,112,934
author_curate_reward""
vote details (16)
@ackza · (edited)
i almost forgot about my peerplay tokens  is that a website yet? is perry plays up nd running? will they hve a blocktrades type feature where u can sell ur peerplay tokens or will peerplays be on bittrex like golos is? or do u have any idea?

Anyway this whole post is GREAT @almost-digital you demystified the whole account creation process to explain to people why it costs 6 steem to generate an account and i am confident that it will not become a bottleneck and steem will be able to grow very fast and we will have no problem hitting 1 million actual human active users by next year and a nice $5 price of steem by the end of this year, It should be $10 if people knew how valuable the steem blockchain really wayt

imagine if facebook creatd thir own hardfork of steem and used it for facecoin? It would be HUGE! steem's DPOS delegated proof oif stake system is just the most efficient crypto cutrrency social media system out there and there is nothing like it and there will BE nothing like it!

steem happened because of the Crypto sphere! a world of self employed financially independent people came together and made something happen at the perfect time and crypto will only grow and eat up all the worlds fiat. Hyperinflation wont affect steemit. our steem iwll be so precious just like Bitcoin.../steem is going to become a very valuable altcoin
πŸ‘  
properties (23)
authorackza
permlinkre-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t042102831z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1","users":["almost-digital"]}
created2017-08-29 04:21:03
last_update2017-08-29 04:25:12
depth2
children0
last_payout2017-09-05 04:21:03
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,359
author_reputation288,199,488,139,374
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,190,922
net_rshares301,761,919
author_curate_reward""
vote details (1)
@almost-digital ·
$1.31
Awesome, would love to see some more real-world usage!

   1. Yep, it even has a configurable exponential backoff. But you do need to handle retries, if a command times out for example.
   2. I think so, It works well running against my [testnet](https://testnet.steem.vc) which has a custom chain id and address prefix.
  3. Yep, check the `./dist/` folder in the github repo
  4. I'm testing against node 7 and 8, will probably work with 6 as well.
πŸ‘  , , , ,
properties (23)
authoralmost-digital
permlinkre-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t221940073z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://testnet.steem.vc"],"app":"steemit/0.1"}
created2017-08-28 22:19:39
last_update2017-08-28 22:19:39
depth2
children0
last_payout2017-09-04 22:19:39
cashout_time1969-12-31 23:59:59
total_payout_value0.988 HBD
curator_payout_value0.324 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length450
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,169,209
net_rshares363,868,620,800
author_curate_reward""
vote details (5)
@anonna ·
$0.03
Great post! The project is interesting. I am very interested. At this point I agree with you.
πŸ‘  , , , , , , , , , , , ,
properties (23)
authoranonna
permlinkre-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t021848860z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 02:18:51
last_update2017-08-29 02:18:51
depth2
children0
last_payout2017-09-05 02:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation11,175,081,903
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,183,935
net_rshares9,673,980,149
author_curate_reward""
vote details (13)
@cryptocoiners ·
appreciate your services dude ;)
properties (22)
authorcryptocoiners
permlinkre-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t163852073z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 16:35:03
last_update2017-08-29 16:35:03
depth2
children0
last_payout2017-09-05 16:35:03
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_length32
author_reputation2,471,553,385,035
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,247,300
net_rshares0
@cryptocoiners ·
Appreciate your services dude ;)
properties (22)
authorcryptocoiners
permlinkre-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t163930286z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 16:35:42
last_update2017-08-29 16:35:42
depth2
children0
last_payout2017-09-05 16:35: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_length32
author_reputation2,471,553,385,035
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,247,362
net_rshares0
@justinw ·
$1.01
@someguy123 - Not to take any steem away from dsteem (pun intended), but the steem-js library is actually still actively developed at it's official home on the steemit github here: https://github.com/steemit/steem-js

It's actually what condenser uses for the live site today - the one on svk's github is outdated. It handles disconnects smoothly, supports alternative chains (at least golos), and the browser based version is ready and built.

With that being said, diversity in the steem ecosystem is a good thing and dsteem is pretty cool too :)
πŸ‘  ,
properties (23)
authorjustinw
permlinkre-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t145437435z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["someguy123"],"links":["https://github.com/steemit/steem-js"],"app":"steemit/0.1"}
created2017-08-29 14:54:36
last_update2017-08-29 14:54:36
depth2
children5
last_payout2017-09-05 14:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.758 HBD
curator_payout_value0.251 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length548
author_reputation15,502,058,309,908
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,237,404
net_rshares287,557,441,594
author_curate_reward""
vote details (2)
@someguy123 ·
steem-js != steemjs-lib

They work completely differently to each other. Originally the official steemit one had practically no documentation, and I believe it lacked the functions I needed. 

Of course if it's improved now, then maybe I'll try it out.
properties (22)
authorsomeguy123
permlinkre-justinw-re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t070450059z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 07:04:51
last_update2017-08-30 07:04:51
depth3
children0
last_payout2017-09-06 07:04: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_length252
author_reputation103,945,664,283,580
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,311,493
net_rshares0
@themarkymark ·
$0.22
Not to necro this, but seems not the case these days.

https://i.imgur.com/2QKy4eQ.png

https://i.imgur.com/ezp13Qj.png
πŸ‘  
properties (23)
authorthemarkymark
permlinkre-justinw-re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20180708t141611974z
categorysteemdev
json_metadata{"tags":["steemdev"],"image":["https://i.imgur.com/2QKy4eQ.png","https://i.imgur.com/ezp13Qj.png"],"app":"steemit/0.1"}
created2018-07-08 14:16:09
last_update2018-07-08 14:16:09
depth3
children1
last_payout2018-07-15 14:16:09
cashout_time1969-12-31 23:59:59
total_payout_value0.218 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation1,779,924,755,374,930
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,902,933
net_rshares112,125,431,625
author_curate_reward""
vote details (1)
@therealwolf ·
@justinw quick question - is it normal that the account info is delayed? When I get the voting_power via api it is about 1% behind the actual % on steemd.
properties (22)
authortherealwolf
permlinkre-justinw-re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170901t212101938z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["justinw"],"app":"steemit/0.1"}
created2017-09-01 21:21:00
last_update2017-09-01 21:21:00
depth3
children0
last_payout2017-09-08 21:21: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_length154
author_reputation581,693,011,827,252
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,590,172
net_rshares0
@trung ·
good
properties (22)
authortrung
permlinkre-justinw-re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t145719974z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 14:57:21
last_update2017-08-29 14:57:21
depth3
children0
last_payout2017-09-05 14:57: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_length4
author_reputation11,258,668
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,237,717
net_rshares0
@therealwolf ·
steem-js via npm install steem works pretty good. But since you meant the other one - I get what you're saying.
properties (22)
authortherealwolf
permlinkre-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t100434330z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 10:04:36
last_update2017-08-30 10:04:36
depth2
children0
last_payout2017-09-06 10: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_length111
author_reputation581,693,011,827,252
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,324,855
net_rshares0
@steemitmore ·
from https://steemit.com/@cheetah
Okay, I have banned your channal in 5 dyas


Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!
To get off this list, please chat with us in the #steemitabuse-appeals channel in steemit.chat.
πŸ‘  ,
πŸ‘Ž  , , ,
properties (23)
authorsteemitmore
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t103316296z
categorysteemdev
json_metadata{"tags":["steemitabuse-appeals","steemdev"],"links":["https://steemit.com/@cheetah"],"app":"steemit/0.1"}
created2017-08-29 10:33:21
last_update2017-08-29 10:33:21
depth1
children0
last_payout2017-09-05 10:33: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_length300
author_reputation-935,424,873,920
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,215,418
net_rshares-648,974,152,577
author_curate_reward""
vote details (6)
@steemitreblog ·
same other channal
from https://steemit.com/@cheetah
Okay, I have banned your channal in 5 dyas


Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!
To get off this list, please chat with us in the #steemitabuse-appeals channel in steemit.chat.
πŸ‘  
πŸ‘Ž  ,
properties (23)
authorsteemitreblog
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t104050063z
categorysteemdev
json_metadata{"tags":["steemitabuse-appeals","steemdev"],"links":["https://steemit.com/@cheetah"],"app":"steemit/0.1"}
created2017-08-29 10:40:57
last_update2017-08-29 10:40:57
depth1
children0
last_payout2017-09-05 10:40: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_length319
author_reputation-15,110,197,186
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,215,978
net_rshares-165,915,056,735
author_curate_reward""
vote details (3)
@steempowerbot ·
Hello steemian @almost-digital
I am here to help show your blog to more people by resteeming your post 
Your post was picked from the feeds, as part of the advertisment campaign forΒ @steempowerbot 
@steempowerbot Β is meant to help minnows get noticed by re-steeming their posts

To use the bot, one must be following us, and then make a transaction where the memo is the url of the post.

We are offering #free resteem service now. 
For us to see your post use the tag #blessaminnowtoday 
You can help us spread the word
πŸ‘Ž  ,
properties (23)
authorsteempowerbot
permlinkre-almost-digital-2017829t05915373z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-28 23:59:21
last_update2017-08-28 23:59:21
depth1
children0
last_payout2017-09-04 23:59: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_length520
author_reputation137,971,187,828
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,175,262
net_rshares-187,792,095,258
author_curate_reward""
vote details (2)
@steemvote ·
Resteem your post to 1000+  followers for only 0.5 SBD or Steem)
- 


**Just send 0.5 SBD or steem to @steemvote (URL as memo)** 

New Followers get 0.001 SBD$ and an upvote for free!!
---

**Just follow @steemvote and...**
- we follow back 
- send you 0.001 SBD to your wallet
πŸ‘  , , ,
πŸ‘Ž  , , , ,
properties (23)
authorsteemvote
permlinkcreating-accounts-with-dsteem-0-620170828t195021465z
categorysteemdev
json_metadata{"tags":[""],"app":"steemjs/examples"}
created2017-08-28 19:49:48
last_update2017-08-28 19:49:48
depth1
children2
last_payout2017-09-04 19:49: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_length277
author_reputation1,560,643,521,824
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,158,212
net_rshares-120,848,088,982
author_curate_reward""
vote details (9)
@marcusorlyius ·
$0.03
Why the fuck are people upvoting this blatant spam?
πŸ‘  ,
properties (23)
authormarcusorlyius
permlinkre-steemvote-creating-accounts-with-dsteem-0-620170828t195021465z-20170828t221419970z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 22:14:18
last_update2017-08-28 22:14:18
depth2
children0
last_payout2017-09-04 22:14:18
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation152,371,289,228
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,168,832
net_rshares10,061,018,614
author_curate_reward""
vote details (2)
@randowhale ·
This post received a 1.5% upvote from @randowhale thanks to @steemvote!  For more information, [click here](https://steemit.com/steemit/@randowhale/randowhale-is-now-only-1-steem-sbd-per-vote-spread-the-news)!
πŸ‘  
properties (23)
authorrandowhale
permlinkre-creating-accounts-with-dsteem-0-620170828t195021465z-20170828t202915
categorysteemdev
json_metadata"{"app": "randowhale/0.1", "format": "markdown"}"
created2017-08-28 20:29:15
last_update2017-08-28 20:29:15
depth2
children0
last_payout2017-09-04 20:29: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_length209
author_reputation47,657,457,485,459
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,314
net_rshares994,358,403
author_curate_reward""
vote details (1)
@stefaniya ·
$0.04
thanks =9
πŸ‘  
properties (23)
authorstefaniya
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t105122671z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 10:51:21
last_update2017-08-29 10:51:21
depth1
children0
last_payout2017-09-05 10:51:21
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation3,024,370,954,799
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,216,717
net_rshares10,946,139,477
author_curate_reward""
vote details (1)
@team101 ·
Good job.  Thank you!
properties (22)
authorteam101
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t205036338z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:50:39
last_update2017-08-28 20:50:39
depth1
children0
last_payout2017-09-04 20:50:39
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_length21
author_reputation12,700,047,182,916
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,162,926
net_rshares0
@thejohalfiles · (edited)
wow this is great...so from what I gather from this in short you have just made it much easier to create accounts?... great work and thank you @almost-digital.
πŸ‘  , , ,
πŸ‘Ž  
properties (23)
authorthejohalfiles
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t202140564z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1","users":["almost-digital"]}
created2017-08-28 20:21:39
last_update2017-08-28 20:22:00
depth1
children4
last_payout2017-09-04 20:21:39
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_reputation10,452,104,581,740
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,160,749
net_rshares-11,468,466,361,704
author_curate_reward""
vote details (5)
@ackza ·
I heard that after the next hardfork, they will have a solution for account creation bottleneck, and that then there will be millionsof dollars of advertising marketing money spoent to promote steemit, and that right now since it is a liability to get new users in and since it costs money to make new acounts, over $1 per nwew account then millions of new users is just anotehr liability and hard fork will fix that! no erason they can generate a bunch of new accounts free, BASICALLY manually adding a bunch of new accounts? or maybe theyll change the way steemit creates accounts? I know right now they got it down to like 2 or 3 steem to createa new acount but they could create  abunch of free accounts via consensus , without inflating price of steem, it is complex the way it all works because peopel arent used to decentralized websites like this and their intricacies!

anyway Im happy to hear how MOSt of the negtive rumors about how steem has too many problems, is not true, and stemit inc has  a lot of cool suprises for us, BUT the steemit inc guys on discord expressed his concenrn that more siutres arent bneing created like busy,org and how they dont wanna be the only site to interface with steem blockchaina nd how eneed peopel to amke their own website sto access steem bvloickchain

we really do need more clones of steemit but we need more than clones, we ned seperate website sthat just use stem bloickchain and i think we need more apps , and @zappl wil be one, but we need more! 

I think thinghs will be fine, ytheers enough money to hire enough people to get al of these thinsg done, and steem willonly grow

so the one thing we all can do is just buy mroe steem and power it up as steempower! you wont regret it and the nmoney you can all amke off curation and comments and posting once u have lots of steempower and make lots fo followers will realy becme worth it!
properties (22)
authorackza
permlinkre-thejohalfiles-re-almost-digital-creating-accounts-with-dsteem-0-6-20170901t233251008z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["zappl"],"app":"steemit/0.1"}
created2017-09-01 23:32:51
last_update2017-09-01 23:32:51
depth2
children0
last_payout2017-09-08 23:32: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_length1,893
author_reputation288,199,488,139,374
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,598,034
net_rshares0
@almost-digital ·
$18.43
Thanks! Yeah, easier for developers to make tools to make new accounts at any rate :)
πŸ‘  , , ,
properties (23)
authoralmost-digital
permlinkre-thejohalfiles-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204846826z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 20:48:45
last_update2017-08-28 20:48:45
depth2
children0
last_payout2017-09-04 20:48:45
cashout_time1969-12-31 23:59:59
total_payout_value13.825 HBD
curator_payout_value4.606 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation12,829,718,661,429
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,162,777
net_rshares5,105,358,094,635
author_curate_reward""
vote details (4)
@gtg ·
$2.77
Well, not only that. We already have `steem-js` that can do things.
`dsteem` does that in another way and we all know how good competition can boost our - users - experience.
I suppose that _"pretty much feature complete"_ means that it can do whatever you wish on Steem.

For example it is used in a script that I run which was aimed to help mitigate future damage done to users that have leaked their passwords through memo field.

Thanks @almost-digital.
πŸ‘  , , ,
properties (23)
authorgtg
permlinkre-thejohalfiles-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203738040z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"}
created2017-08-28 20:37:36
last_update2017-08-28 20:37:36
depth2
children0
last_payout2017-09-04 20:37:36
cashout_time1969-12-31 23:59:59
total_payout_value2.209 HBD
curator_payout_value0.558 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length457
author_reputation461,829,867,647,270
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,161,917
net_rshares767,178,923,093
author_curate_reward""
vote details (4)
@johnnyray ·
We have some great people working on steemit, for sure, and many more that will add to it coming very soon. Which is why I am here to learn and do my part in time.
properties (22)
authorjohnnyray
permlinkre-thejohalfiles-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t215751945z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 21:57:54
last_update2017-08-29 21:57:54
depth2
children0
last_payout2017-09-05 21:57: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_length163
author_reputation2,330,185,599,758
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,276,222
net_rshares0
@thoots ·
This is great!  Very Interesting! I hope to see more improvements in the future..Very well done.. thanks!
properties (22)
authorthoots
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t061547407z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 06:16:15
last_update2017-08-30 06:16:15
depth1
children0
last_payout2017-09-06 06:16: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_length105
author_reputation96,209,779,947
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,308,285
net_rshares0
@tisko ·
nice
great post
thank you for your effort
properties (22)
authortisko
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20171106t201011156z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-11-06 20:09:12
last_update2017-11-06 20:09:12
depth1
children0
last_payout2017-11-13 20:09: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_length41
author_reputation14,973,232,579,109
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,635,266
net_rshares0
@tmoz ·
Great Post :)
properties (22)
authortmoz
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t221506073z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 22:15:06
last_update2017-08-29 22:15:06
depth1
children0
last_payout2017-09-05 22:15: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_length13
author_reputation2,988,114,707
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,277,495
net_rshares0
@tylerdourden ·
Gracias, esta versiΓ³n estΓ‘ bastante estable. Saludos!!
properties (22)
authortylerdourden
permlinkre-almost-digital-2017828t16258675z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-28 21:03:06
last_update2017-08-28 21:03:06
depth1
children0
last_payout2017-09-04 21:03: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_length54
author_reputation623,681,468,859
root_title"Creating accounts with dsteem 0.6"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,163,900
net_rshares0
@veryvowanda ·
i will try it , nice
properties (22)
authorveryvowanda
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170830t004128250z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-30 00:42:00
last_update2017-08-30 00:42:00
depth1
children0
last_payout2017-09-06 00: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_length20
author_reputation0
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,286,888
net_rshares0
@wahyue ·
AWESOME !!! , great post buddy,, keep it @almost-digital
if you like about cryptocurrency, visit my post and please help be upvote and resteem please.
https://steemit.com/cryptocurrency/@wahyue/review-of-the-scam-webdengi
πŸ‘Ž  
properties (23)
authorwahyue
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t114637548z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["almost-digital"],"links":["https://steemit.com/cryptocurrency/@wahyue/review-of-the-scam-webdengi"],"app":"steemit/0.1"}
created2017-08-29 11:46:42
last_update2017-08-29 11:46:42
depth1
children1
last_payout2017-09-05 11:46: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_length221
author_reputation53,157,047,517
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,220,825
net_rshares-553,285,534
author_curate_reward""
vote details (1)
@smirks ·
#spam
properties (22)
authorsmirks
permlinkre-wahyue-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t162023670z
categorysteemdev
json_metadata{"tags":["spam","steemdev"],"app":"steemit/0.1"}
created2017-08-29 16:20:24
last_update2017-08-29 16:20:24
depth2
children0
last_payout2017-09-05 16:20: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_length5
author_reputation5,168,581,725
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,245,983
net_rshares0
@yagoub ·
# Interesting. I should usually read it again
properties (22)
authoryagoub
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t195331618z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 19:53:33
last_update2017-08-28 19:53:33
depth1
children0
last_payout2017-09-04 19:53: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_length45
author_reputation13,373,671,102,325
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,158,445
net_rshares0
@yogafitness ·
same other channal
from https://steemit.com/@cheetah
https://busy.org/@cheetah
Okay, I have banned your channal in 5 dyas


Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!
To get off this list, please chat with us in the #steemitabuse-appeals channel in steemit.chat.
πŸ‘Ž  
properties (23)
authoryogafitness
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t175605065z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"busy/1.0.0"}
created2017-08-29 17:56:06
last_update2017-08-29 17:56:06
depth1
children0
last_payout2017-09-05 17:56: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_length345
author_reputation-31,918,439,208
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,254,831
net_rshares-11,080,656,730
author_curate_reward""
vote details (1)
@yogafitness ·
same other channal
from https://steemit.com/@cheetah
https://busy.org/@cheetah
Okay, I have banned your channal in 5 dyas


Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!
To get off this list, please chat with us in the #steemitabuse-appeals channel in steemit.chat.
πŸ‘Ž  
properties (23)
authoryogafitness
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t180057295z
categorysteemdev
json_metadata{"tags":["steemitabuse-appeals","steemdev"],"links":["https://steemit.com/@cheetah","https://busy.org/@cheetah"],"app":"steemit/0.1"}
created2017-08-29 18:01:00
last_update2017-08-29 18:01:00
depth1
children0
last_payout2017-09-05 18:01: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_length345
author_reputation-31,918,439,208
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,255,310
net_rshares-10,428,853,393
author_curate_reward""
vote details (1)
@youssif20 ·
A place more beautiful than my dear brother
πŸ‘  
properties (23)
authoryoussif20
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170828t210321566z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-28 21:03:21
last_update2017-08-28 21:03:21
depth1
children0
last_payout2017-09-04 21:03: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_length43
author_reputation11,974,212,365
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,163,931
net_rshares632,540,123
author_curate_reward""
vote details (1)
@yummyinmytummy ·
is post private key different from the master key?
properties (22)
authoryummyinmytummy
permlinkre-almost-digital-creating-accounts-with-dsteem-0-6-20170829t074814092z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-08-29 07:48:00
last_update2017-08-29 07:48:00
depth1
children0
last_payout2017-09-05 07:48: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_length50
author_reputation7,942,217,795
root_title"Creating accounts with dsteem 0.6"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,204,469
net_rshares0