 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>>
author | almost-digital |
---|---|
permlink | creating-accounts-with-dsteem-0-6 |
category | steemdev |
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"} |
created | 2017-08-28 19:48:09 |
last_update | 2017-08-29 14:41:21 |
depth | 0 |
children | 144 |
last_payout | 2017-09-04 19:48:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 314.538 HBD |
curator_payout_value | 95.679 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,029 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,158,086 |
net_rshares | 113,417,921,716,246 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
analisa | 0 | 350,027,197,686 | 5% | ||
xeldal | 0 | 8,841,063,480,520 | 100% | ||
liondani | 0 | 1,352,914,142,444 | 100% | ||
donkeypong | 0 | 627,253,047,627 | 5% | ||
cyan91 | 0 | 273,488,130,604 | 100% | ||
andrew-jesus | 0 | 57,503,822 | 100% | ||
bleepcoin | 0 | 797,886,199,008 | 100% | ||
hbhades | 0 | 18,023,519,830 | 100% | ||
teamsteem | 0 | 15,381,894,904,702 | 100% | ||
juanmiguelsalas | 0 | 14,964,391,652 | 22% | ||
facer | 0 | 173,259,157,844 | 100% | ||
jacobt | 0 | 318,305,268,919 | 100% | ||
geoffrey | 0 | 406,189,361,836 | 25% | ||
honeythief | 0 | 82,206,754,211 | 100% | ||
angusleung100 | 0 | 1,872,747,118 | 100% | ||
gtg | 0 | 3,113,953,087,384 | 100% | ||
digi3d | 0 | 0 | 100% | ||
good-karma | 0 | 202,781,693,075 | 1% | ||
matt-a | 0 | 975,850,918,348 | 25% | ||
minitrio | 0 | 0 | 100% | ||
chamviet | 0 | 2,067,402,707 | 100% | ||
slowwalker | 0 | 864,581,743,716 | 10% | ||
shayne | 0 | 5,794,091,045 | 5% | ||
kovatelj | 0 | 132,090,722 | 100% | ||
ausbitbank | 0 | 1,199,717,317,495 | 10% | ||
joseph.kalu | 0 | 118,631,812 | 100% | ||
igster | 0 | 149,271,358,711 | 100% | ||
sephiroth | 0 | 796,210,731,404 | 100% | ||
bycz | 0 | 59,442,064,355 | 100% | ||
shla-rafia | 0 | 609,422,082 | 1% | ||
konti | 0 | 43,332,129,702 | 100% | ||
pcste | 0 | 53,221,063,704 | 100% | ||
deanliu | 0 | 861,258,269,682 | 100% | ||
marius19 | 0 | 22,343,157,747 | 100% | ||
marcusorlyius | 0 | 4,302,323,713 | 100% | ||
ace108 | 0 | 25,111,278,219 | 1% | ||
prasanna | 0 | 730,691,306 | 100% | ||
fabien | 0 | 943,988,088,525 | 100% | ||
lsc9999 | 0 | 131,578,972,859 | 100% | ||
shortcut | 0 | 113,290,029,022 | 35% | ||
dez1337 | 0 | 39,213,099,058 | 73% | ||
timcliff | 0 | 403,424,413,756 | 31% | ||
poeticsnake | 0 | 11,115,305,423 | 10% | ||
bless | 0 | 8,279,495,186 | 100% | ||
jrd | 0 | 35,208,404,816 | 100% | ||
stephen.king989 | 0 | 57,852,292,992 | 27% | ||
vanilide | 0 | 0 | 100% | ||
cristi | 0 | 69,616,754,471 | 20% | ||
bledarus | 0 | 3,190,179,502 | 100% | ||
theb0red1 | 0 | 59,623,893,131 | 100% | ||
tumutanzi | 0 | 830,949,821,939 | 5% | ||
someguy123 | 0 | 1,118,526,207,019 | 100% | ||
sethlinson | 0 | 138,351,603,760 | 100% | ||
itsmein3d | 0 | 447,715,880,046 | 86% | ||
themonetaryfew | 0 | 920,374,009,032 | 100% | ||
sumiiit | 0 | 1,778,663,407 | 100% | ||
runridefly | 0 | 50,360,473,877 | 10% | ||
barrydutton | 0 | 43,472,369,317 | 5% | ||
sammie | 0 | 5,381,104,442 | 100% | ||
ashaman | 0 | 48,817,673,092 | 100% | ||
team101 | 0 | 26,285,617,116 | 100% | ||
leoplaw | 0 | 54,226,648,648 | 100% | ||
ghasemkiani | 0 | 3,522,439,780 | 0.25% | ||
powercouple | 0 | 3,541,643,162 | 100% | ||
ibringawareness | 0 | 60,977,010,390 | 100% | ||
kellyjanderson | 0 | 0 | 100% | ||
heroic15397 | 0 | 10,834,794,629 | 15% | ||
tarekadam | 0 | 1,066,701,744,634 | 100% | ||
drac59 | 0 | 463,970,703 | 1% | ||
olerqas | 0 | 139,062,088 | 100% | ||
zaraboto4ek | 0 | 139,745,353 | 100% | ||
moranara | 0 | 138,606,634 | 100% | ||
nermeker | 0 | 137,777,055 | 100% | ||
whoib | 0 | 385,775,677 | 100% | ||
alexw | 0 | 136,942,685 | 100% | ||
dylanhobalart | 0 | 4,638,591,619 | 4% | ||
redrobin | 0 | 348,962,775 | 100% | ||
p0o | 0 | 75,216,954,736 | 20% | ||
swtcamito | 0 | 411,355,346 | 23.61% | ||
vannour | 0 | 40,205,732,246 | 100% | ||
wwamd | 0 | 10,578,238,748 | 100% | ||
paulocouto | 0 | 2,601,191,595 | 100% | ||
luismy | 0 | 9,762,185,613 | 100% | ||
black-eye | 0 | 73,200,491 | 100% | ||
thejohalfiles | 0 | 45,548,224,990,715 | 100% | ||
contentking | 0 | 22,561,035,703 | 100% | ||
judasp | 0 | 44,205,388,166 | 100% | ||
jmehta | 0 | 460,353,636 | 100% | ||
hansikhouse | 0 | 80,880,798,504 | 20% | ||
voronoi | 0 | 198,198,206,107 | 40% | ||
adelja | 0 | 30,842,549,491 | 100% | ||
maxse | 0 | 20,894,525,426 | 100% | ||
fratheone | 0 | 260,933,337 | 100% | ||
lennstar | 0 | 165,784,135,317 | 100% | ||
greenbigfrog | 0 | 1,953,465,920 | 100% | ||
foundation | 0 | 0 | 100% | ||
qeysolutions | 0 | 58,415,359,635 | 100% | ||
justinw | 0 | 431,012,349,839 | 100% | ||
hexdek16 | 0 | 5,216,838,950 | 100% | ||
guytremat | 0 | 35,176,800,404 | 100% | ||
newhope | 0 | 375,584,792,364 | 8% | ||
sudipn749 | 0 | 969,690,514 | 100% | ||
opanyin | 0 | 1,722,025,162 | 100% | ||
fajarsdq | 0 | 471,543,027 | 100% | ||
deaconlee | 0 | 6,446,527,279 | 10% | ||
kotturinn | 0 | 24,589,270,073 | 20% | ||
bitsy | 0 | 1,716,820,579 | 100% | ||
da-dawn | 0 | 11,506,473,375 | 4% | ||
makedonsk | 0 | 2,417,664,587 | 100% | ||
cpol | 0 | 1,670,801,690 | 100% | ||
irja | 0 | 1,309,432,126 | 100% | ||
ejemai | 0 | 6,247,569,227 | 36% | ||
ramengirl | 0 | 6,061,723,446,735 | 30% | ||
wattacut | 0 | 5,328,172,954 | 100% | ||
deividas | 0 | 12,861,495,366 | 100% | ||
kiran27 | 0 | 654,071,679 | 100% | ||
thehoneybee | 0 | 24,763,855,583 | 100% | ||
sportsprediction | 0 | 2,669,396,564 | 66.34% | ||
ainiaziz | 0 | 20,371,111,723 | 100% | ||
ackza | 0 | 5,680,190,919 | 26% | ||
samhamou | 0 | 6,477,370,685 | 100% | ||
carbunco10 | 0 | 69,536,235 | 100% | ||
shailin | 0 | 1,284,447,652 | 100% | ||
anemona | 0 | 23,020,733,038 | 40% | ||
ygern | 0 | 4,710,616,718 | 31% | ||
zexna | 0 | 1,860,121,484 | 100% | ||
marteta | 0 | 1,077,199,921 | 100% | ||
eirik | 0 | 4,607,615,164 | 15% | ||
thomasgutierrez | 0 | 35,521,293,027 | 100% | ||
kkugel2 | 0 | 414,961,838 | 100% | ||
photowebgear | 0 | 3,414,393,290 | 100% | ||
mikev | 0 | 14,660,738,688 | 15% | ||
celebration | 0 | 443,200,974 | 100% | ||
anarcotech | 0 | 61,567,570,022 | 100% | ||
manycoolthings | 0 | 1,311,215,186 | 100% | ||
elevator09 | 0 | 4,777,830,373 | 40% | ||
aomura | 0 | 68,718,594,811 | 100% | ||
misstics | 0 | 443,875,727 | 100% | ||
orakul | 0 | 444,715,995 | 100% | ||
lulik | 0 | 435,871,968 | 100% | ||
skalolaz | 0 | 432,265,633 | 100% | ||
inkognitoo | 0 | 435,006,367 | 100% | ||
karimkarim | 0 | 444,562,560 | 100% | ||
daudimitch | 0 | 8,478,301,466 | 100% | ||
toninux | 0 | 763,766,546 | 100% | ||
lgcct | 0 | 3,158,782,158 | 100% | ||
jenettecano | 0 | 445,466,473 | 100% | ||
zamzamiali | 0 | 608,913,200 | 100% | ||
synapse | 0 | 9,151,135,196 | 100% | ||
c86l | 0 | 511,264,552 | 100% | ||
louiscpt | 0 | 24,350,456,566 | 100% | ||
aarkay | 0 | 485,657,874 | 100% | ||
straydays | 0 | 1,148,287,033 | 100% | ||
rickrosenburg | 0 | 28,058,509,450 | 61% | ||
cryptofiend420 | 0 | 448,304,433 | 100% | ||
dreamon | 0 | 961,178,954 | 100% | ||
sv67216721 | 0 | 3,941,630,006 | 5% | ||
clodoweg | 0 | 6,506,672,905 | 100% | ||
swenger | 0 | 18,282,999,000 | 49% | ||
obeduche | 0 | 575,648,868 | 100% | ||
schlees | 0 | 4,636,924,756 | 11% | ||
grande-fazial | 0 | 598,713,395 | 100% | ||
praz735u5 | 0 | 2,911,195,017 | 100% | ||
indepthstory | 0 | 16,121,054,910 | 100% | ||
stackin | 0 | 15,043,254,056 | 1% | ||
inkedandsexy | 0 | 15,951,991,564 | 100% | ||
roomservice | 0 | 6,245,761,420 | 1.25% | ||
thethreehugs | 0 | 807,199,704 | 100% | ||
hellosteem | 0 | 18,426,941,011 | 100% | ||
newsflash | 0 | 14,584,960,487,606 | 100% | ||
choind | 0 | 12,210,486,435 | 100% | ||
andreanoronha | 0 | 10,873,098,158 | 100% | ||
jga | 0 | 6,784,684,283 | 100% | ||
mkt | 0 | 24,302,438,303 | 100% | ||
flauschi | 0 | 269,424,832 | 100% | ||
charles1 | 0 | 12,431,066,191 | 30% | ||
wijuwiju | 0 | 9,475,369,211 | 100% | ||
feelsomoon | 0 | 5,355,331,167 | 100% | ||
shikika | 0 | 2,951,816,602 | 100% | ||
satx210 | 0 | 13,275,194,107 | 100% | ||
yehey | 0 | 3,121,419,984 | 10% | ||
cryptoizotx | 0 | 0 | 100% | ||
ahinga | 0 | 9,661,980,390 | 50.69% | ||
fatamorgan | 0 | 19,558,782,822 | 100% | ||
hiyun217 | 0 | 1,020,387,838 | 100% | ||
adnanrahic | 0 | 10,174,807,805 | 100% | ||
deisip67 | 0 | 3,218,395,226 | 100% | ||
suitablybored | 0 | 3,991,146,273 | 100% | ||
almost-digital | 0 | 189,491,665,319 | 100% | ||
sebako | 0 | 1,113,294,281 | 100% | ||
rudystyle | 0 | 64,220,269,489 | 6% | ||
kouloumos | 0 | 8,567,829,541 | 100% | ||
wahyujr | 0 | 1,860,749,705 | 100% | ||
heejin | 0 | 8,915,723,233 | 100% | ||
azusa | 0 | 4,478,067,170 | 100% | ||
o0o | 0 | 619,520,000 | 100% | ||
jadoob | 0 | 2,023,553,456 | 100% | ||
kriptoblog | 0 | 316,516,712 | 100% | ||
sokfosjsihsi | 0 | 502,480,919 | 100% | ||
johnlue | 0 | 6,051,720,220 | 50.57% | ||
slavix | 0 | 1,803,971,925 | 100% | ||
anyway | 0 | 676,164,706 | 100% | ||
saadmmirza | 0 | 534,029,874 | 100% | ||
frankzy | 0 | 742,888,795 | 100% | ||
pashaspirkov | 0 | 514,853,529 | 100% | ||
cryptorambo | 0 | 2,004,624,245 | 100% | ||
todderic | 0 | 3,095,004,022 | 100% | ||
fawadsolangi | 0 | 582,122,706 | 100% | ||
mikej | 0 | 5,978,171,186 | 100% | ||
nanogivers | 0 | 376,837,973 | 100% | ||
bellmind | 0 | 690,630,501 | 100% | ||
kolbaskin | 0 | 513,593,681 | 100% | ||
mcsamm | 0 | 7,041,779,238 | 100% | ||
agusdiansyah | 0 | 2,128,542,251 | 100% | ||
xoxoxo | 0 | 597,836,800 | 100% | ||
doles | 0 | 337,076,364 | 100% | ||
liuke96player | 0 | 829,679,274 | 100% | ||
murda-ra | 0 | 5,201,094,380 | 100% | ||
divilati | 0 | 3,081,806,720 | 100% | ||
samuelsunday | 0 | 427,195,889 | 100% | ||
sovereign-naan | 0 | 567,915,143 | 100% | ||
green21 | 0 | 459,752,041 | 100% | ||
julfan | 0 | 1,244,421,845 | 100% | ||
spinladen | 0 | 340,936,476 | 100% | ||
randowhale1 | 0 | 171,086,055,472 | 1.5% | ||
jaraumoses | 0 | 771,850,596 | 100% | ||
ufv | 0 | 574,671,467 | 100% | ||
mooen | 0 | 1,291,527,733 | 100% | ||
nita77 | 0 | 1,706,596,717 | 100% | ||
mannyfig1956 | 0 | 435,394,729 | 100% | ||
bestaltcointobuy | 0 | 601,778,771 | 100% | ||
foarsyad | 0 | 1,832,605,473 | 100% | ||
banugat | 0 | 272,588,800 | 100% | ||
ghulammujtaba | 0 | 4,599,848,657 | 100% | ||
littlevoice | 0 | 3,017,640,640 | 100% | ||
stegis | 0 | 655,300,600 | 100% | ||
katari | 0 | 3,074,848,845 | 100% | ||
mahimonliner | 0 | 130,099,200 | 100% | ||
websocket | 0 | 76,418,553 | 100% | ||
hobby-club | 0 | 3,396,360,560 | 100% | ||
stonesteem | 0 | 2,896,004,126 | 100% | ||
eturnerx | 0 | 5,645,600,205 | 20% | ||
oldfashion | 0 | 660,966,667 | 100% | ||
worder777 | 0 | 515,196,195 | 100% | ||
boucaron | 0 | 699,964,642 | 100% | ||
kel | 0 | 5,985,894,173 | 29% | ||
bentleycapital | 0 | 41,480,347,706 | 100% | ||
sharoon | 0 | 1,155,246,189 | 100% | ||
pastbastard | 0 | 1,347,990,748 | 100% | ||
devilcat | 0 | 419,452,703 | 100% | ||
shqip | 0 | 236,265,181 | 100% | ||
tmoz | 0 | 606,522,853 | 100% | ||
princekayani | 0 | 371,387,974 | 100% | ||
mitamirandaa | 0 | 551,372,800 | 100% | ||
futuresmart | 0 | 6,423,181,707 | 100% | ||
jpederson96 | 0 | 914,206,805 | 100% | ||
kumaranvpl | 0 | 84,008,686 | 100% | ||
kolex | 0 | 651,760,089 | 100% | ||
molometer | 0 | 22,442,225,041 | 100% | ||
sipildanarsitek | 0 | 304,308,368 | 100% | ||
goodfoods | 0 | 54,844,054 | 20% | ||
that1consultant | 0 | 10,525,844,926 | 100% | ||
agbaba | 0 | 557,663,516 | 100% | ||
j4y | 0 | 2,340,087,786 | 100% | ||
napkin | 0 | 2,360,881,524 | 100% | ||
joshvel | 0 | 1,111,598,053 | 100% | ||
geofftk | 0 | 151,036,187,053 | 100% | ||
usedproductz | 0 | 158,717,305 | 100% | ||
rogasa3000 | 0 | 428,156,137 | 100% | ||
cassandraf | 0 | 747,155,587 | 100% | ||
martinbrandow | 0 | 1,934,070,054 | 100% | ||
iwanttruth | 0 | 539,809,454 | 100% | ||
acostaeladio | 0 | 384,889,496 | 100% | ||
fauzipase | 0 | 253,782,069 | 100% | ||
markhalen | 0 | 461,542,400 | 100% | ||
dmnik | 0 | 439,859,200 | 100% | ||
davedickeyyall | 0 | 353,894,814 | 100% | ||
bodyinbeta | 0 | 18,609,059,967 | 100% | ||
allyo.stories | 0 | 164,579,614 | 100% | ||
djnoel | 0 | 475,451,275 | 100% | ||
mueeya | 0 | 554,238,853 | 100% | ||
powerfj | 0 | 79,935,366 | 1% | ||
h8rry | 0 | 1,933,692,767 | 5% | ||
born2win | 0 | 539,828,108 | 100% | ||
martincoin | 0 | 560,665,600 | 100% | ||
aaronaugustine | 0 | 347,647,994 | 100% | ||
munzil | 0 | 2,377,875,031 | 100% | ||
awinyaksteemit | 0 | 428,355,104 | 100% | ||
varungohil | 0 | 488,817,873 | 100% | ||
evgenya86 | 0 | 835,868,493 | 100% | ||
negojobs | 0 | 434,184,074 | 100% | ||
azisjesika | 0 | 1,378,063,571 | 100% | ||
g0nr0gue | 0 | 304,449,122 | 100% | ||
bikash-tutor | 0 | 2,997,791,020 | 100% | ||
guap | 0 | 573,056,000 | 100% | ||
aek081969 | 0 | 80,861,200 | 100% | ||
charline | 0 | 2,164,967,261 | 100% | ||
daniel007 | 0 | 0 | 100% | ||
beulahlandeu | 0 | 1,033,176,147 | 100% | ||
iskandarpcc | 0 | 322,537,702 | 100% | ||
alanbsr | 0 | 1,170,587,276 | 100% | ||
duekie | 0 | 160,738,092 | 100% | ||
bigboobsftw | 0 | 607,129,600 | 100% | ||
techtek | 0 | 5,235,902,076 | 100% | ||
luceafarul | 0 | 5,733,856,537 | 100% | ||
agusscout | 0 | 0 | 100% | ||
davidalexander | 0 | 3,120,885,387 | 100% | ||
cryptoqu33n | 0 | 13,373,287,492 | 100% | ||
randowhaletrail | 0 | 309,566,840 | 0.5% | ||
anastass | 0 | 458,444,800 | 100% | ||
kedirimoet | 0 | 805,465,549 | 100% | ||
moersal | 0 | 107,289,276 | 50.53% | ||
chaofanjun | 0 | 2,659,871,315 | 100% | ||
zest | 0 | 1,682,261,288 | 100% | ||
samhinds | 0 | 4,797,148,552 | 100% | ||
mathamia | 0 | 436,761,600 | 100% | ||
setifiencoin | 0 | 585,446,400 | 100% | ||
fr3eze | 0 | 22,391,154,042 | 100% | ||
rooneey | 0 | 932,945,828 | 100% | ||
kovilvns | 0 | 236,940,383 | 100% | ||
jaca | 0 | 0 | 100% | ||
mrs.ginger | 0 | 610,227,200 | 100% | ||
hanifmunandar | 0 | 741,199,371 | 100% | ||
madmac | 0 | 6,288,558,497 | 100% | ||
yagoub | 0 | 621,758,828 | 100% | ||
yamid | 0 | 464,323,654 | 100% | ||
rivalrisnanda33 | 0 | 575,754,695 | 100% | ||
anana | 0 | 430,566,400 | 100% | ||
ata27 | 0 | 1,409,004,820 | 100% | ||
substance.com | 0 | 607,152,457 | 100% | ||
katkar | 0 | 256,747,544 | 100% | ||
alli.top | 0 | 0 | 100% | ||
arttatum | 0 | 371,411,999 | 100% | ||
garudi | 0 | 1,544,182,474 | 100% | ||
beingnaveed | 0 | 735,097,718 | 100% | ||
irsena-s | 0 | 1,140,874,845 | 100% | ||
wakjems | 0 | 529,689,600 | 100% | ||
lyuda.cheburaxi | 0 | 508,412,495 | 100% | ||
luizainsoho | 0 | 512,398,061 | 100% | ||
hashclouds | 0 | 455,725,830 | 100% | ||
jackandcoke | 0 | 2,311,409,557 | 100% | ||
vedme | 0 | 498,780,048 | 100% | ||
steeminformation | 0 | 121,375,046 | 100% | ||
a-b | 0 | 608,868,380 | 100% | ||
steem77 | 0 | 1,070,535,198 | 100% | ||
stanleephenom | 0 | 788,568,315 | 100% | ||
family.life | 0 | 520,883,758 | 20% | ||
cvmidwife | 0 | 551,372,800 | 100% | ||
lelek | 0 | 92,300,209 | 100% | ||
splatmat | 0 | 543,913,027 | 100% | ||
e-factor | 0 | 2,355,194,982 | 100% | ||
changethetopic | 0 | 94,062,103 | 100% | ||
sachumanoj | 0 | 102,500,016 | 100% | ||
atli | 0 | 337,601,668 | 100% | ||
zherikova | 0 | 514,509,843 | 100% | ||
sultan-aceh | 0 | 582,650,709 | 100% | ||
team.art | 0 | 693,625,460 | 100% | ||
boshler | 0 | 288,076,800 | 100% | ||
jamesfalling | 0 | 1,212,813,761 | 100% | ||
ridwan-kamil | 0 | 111,113,449 | 100% | ||
mysticmedons | 0 | 548,275,200 | 100% | ||
writer1 | 0 | 3,967,183,715 | 100% | ||
timspeer | 0 | 1,730,117,890 | 100% | ||
nature.art | 0 | 1,938,184,413 | 100% | ||
fernana | 0 | 561,039,267 | 100% | ||
milennycova | 0 | 648,712,540 | 100% | ||
omnia | 0 | 71,249,546 | 100% | ||
kv151 | 0 | 223,027,200 | 100% | ||
ahaseeb1999 | 0 | 652,789,416 | 100% | ||
akaimyers | 0 | 83,522,867 | 100% | ||
cracker | 0 | 610,582,687 | 100% | ||
sheapureness | 0 | 641,381,820 | 100% | ||
artax89 | 0 | 596,077,179 | 100% | ||
ernestoara | 0 | 1,122,417,305 | 100% | ||
watchzozo | 0 | 1,181,832,846 | 100% | ||
truefendy | 0 | 1,174,078,162 | 100% | ||
ramiashqar | 0 | 1,186,930,147 | 100% | ||
mariabalsa | 0 | 597,840,728 | 100% | ||
steempowerbot | 0 | 1,143,239,761 | 100% | ||
minecrew | 0 | 119,188,134 | 100% | ||
herizal95 | 0 | 1,025,786,934 | 100% | ||
nbuonaugurio | 0 | 1,143,239,413 | 100% | ||
drevodr | 0 | 951,833,437 | 100% | ||
azizpase | 0 | 0 | 100% | ||
youssif20 | 0 | 1,146,650,839 | 100% | ||
miguelportela | 0 | 673,461,429 | 100% | ||
anonna | 0 | 963,336,553 | 100% | ||
alfredofigueras | 0 | 0 | 100% | ||
whisy | 0 | 916,910,361 | 100% | ||
kaison | 0 | 1,009,761,719 | 100% | ||
aldialbest | 0 | 485,371,278 | 100% | ||
miyata1987 | 0 | 123,535,120 | 100% | ||
proba1 | 0 | 681,632,788 | 100% | ||
rek5767 | 0 | 1,193,114,221 | 100% | ||
taniya3d | 0 | 1,171,617,536 | 100% | ||
sebboo4 | 0 | 784,562,381 | 100% | ||
mrnastykilla | 0 | 157,759,156 | 100% | ||
thisisit | 0 | 235,325,588 | 100% | ||
familylife | 0 | 58,032,213 | 20% | ||
holbein81 | 0 | 42,487,252,899 | 100% | ||
mimibognetkaga | 0 | 394,618,746 | 100% | ||
tatatalalala | 0 | 995,525,290 | 100% | ||
sopjeu | 0 | 1,032,972,118 | 100% | ||
hira-bashir | 0 | 1,045,209,918 | 100% | ||
tsukikei | 0 | 817,737,565 | 100% | ||
coderaviverma | 0 | 1,156,792,613 | 100% | ||
vicspics | 0 | 1,084,934,678 | 100% | ||
kroustets | 0 | 951,726,120 | 100% | ||
marketanalysis | 0 | 102,077,375 | 100% | ||
oye1 | 0 | 922,709,871 | 100% | ||
theox | 0 | 1,145,710,338 | 100% | ||
rosangelatg9 | 0 | 1,073,591,199 | 100% | ||
muhammad-hamza | 0 | 0 | 0% | ||
myrockandocean | 0 | 1,576,693,540 | 100% | ||
malibaloch | 0 | 853,069,398 | 100% | ||
samuraiz | 0 | 76,307,664 | 100% | ||
arturoalex00 | 0 | 1,094,410,114 | 100% | ||
younis | 0 | 956,966,892 | 100% | ||
mikerip | 0 | 1,160,638,410 | 100% | ||
hamzamizou | 0 | 1,120,016,062 | 100% | ||
shehab427797 | 0 | 302,280,796 | 100% | ||
rusinho027 | 0 | 136,405,301 | 100% | ||
mayettepada | 0 | 1,073,590,488 | 100% | ||
bassie | 0 | 821,189,562 | 100% | ||
jokowidodo | 0 | 1,021,361,728 | 100% | ||
kevkong | 0 | 1,140,010,538 | 100% | ||
tarzil | 0 | 1,081,182,372 | 100% | ||
marc-mordecai | 0 | 1,137,425,372 | 100% | ||
michelsonmichel | 0 | 1,170,497,861 | 100% | ||
oscargon1234 | 0 | 1,137,425,239 | 100% | ||
jaderpogi | 0 | 1,462,171,205 | 100% | ||
alexrf | 0 | 404,289,938 | 100% | ||
pisconight | 0 | 156,685,746 | 100% | ||
gelogzzz | 0 | 1,193,215,683 | 100% | ||
mariagabrielaa | 0 | 1,120,012,917 | 100% | ||
amazonas | 0 | 998,146,207 | 100% | ||
fixatij | 0 | 356,481,959 | 100% | ||
samlogan | 0 | 968,736,674 | 100% | ||
ahsanhabib | 0 | 232,127,018 | 100% | ||
aprilllicious | 0 | 1,243,070,451 | 100% | ||
cement41 | 0 | 327,697,086 | 100% | ||
ma6375 | 0 | 528,088,942 | 100% | ||
ziadelgarhy | 0 | 980,736,574 | 100% | ||
ladislava | 0 | 951,720,642 | 100% | ||
metlak | 0 | 951,720,609 | 100% | ||
mrlogick | 0 | 754,412,675 | 100% | ||
sandra12 | 0 | 130,288,002 | 100% | ||
michaelmorcos | 0 | 725,422,485 | 100% | ||
ronaldsteemit89 | 0 | 104,991,745 | 100% | ||
raykeli89 | 0 | 678,971,279 | 100% | ||
nicholas1983 | 0 | 1,030,029,029 | 100% | ||
constantius | 0 | 495,191,432 | 100% | ||
corganmusic | 0 | 257,535,920 | 100% | ||
psychowordsmith | 0 | 1,475,050,384 | 100% | ||
rejzons | 0 | 1,138,553,716 | 100% | ||
sukhvir2500 | 0 | 1,173,262,545 | 100% | ||
steembug | 0 | 1,050,373,970 | 100% | ||
imadl | 0 | 1,160,633,950 | 100% | ||
cupidofdarkness | 0 | 442,702,378 | 100% | ||
othmen | 0 | 1,079,389,531 | 100% | ||
dmacvel | 0 | 632,567,952 | 100% | ||
beatriceoki | 0 | 0 | 100% | ||
mohamedsharaf | 0 | 1,050,373,654 | 100% | ||
qozal | 0 | 858,868,951 | 100% | ||
vicky-vick | 0 | 656,014,408 | 100% | ||
dizesh | 0 | 649,954,773 | 100% | ||
mamaerna | 0 | 1,009,750,919 | 100% | ||
benmar | 0 | 3,345,634,927 | 100% | ||
allie.bee | 0 | 806,639,602 | 100% | ||
ruqob | 0 | 864,671,123 | 100% | ||
akmel | 0 | 1,073,584,906 | 100% | ||
burmistr | 0 | 715,691,296 | 100% | ||
jihharn | 0 | 1,114,206,896 | 100% | ||
beyrem | 0 | 1,160,631,837 | 100% | ||
thulani1k | 0 | 1,096,797,085 | 100% | ||
masterofcoin | 0 | 9,567,570,203 | 100% | ||
asdnmr | 0 | 1,160,631,825 | 100% | ||
cipas | 0 | 814,460,739 | 100% | ||
xeyri | 0 | 156,974,833 | 100% | ||
mouradbens | 0 | 684,772,776 | 100% | ||
eloyibarra | 0 | 81,429,018 | 100% | ||
stendekq | 0 | 58,031,589 | 100% | ||
pekuswill | 0 | 905,292,790 | 100% | ||
moez80 | 0 | 696,379,056 | 100% | ||
medras | 0 | 753,705,810 | 100% | ||
criptorafa | 0 | 388,880,724 | 100% | ||
zakaria1 | 0 | 1,143,222,247 | 100% | ||
dollarman | 0 | 272,748,444 | 100% | ||
djamelbak | 0 | 1,137,419,035 | 100% | ||
ahmadji | 0 | 412,024,226 | 100% | ||
medeldon | 0 | 1,102,599,876 | 100% | ||
ms8988 | 0 | 742,804,101 | 100% | ||
dmunasco | 0 | 1,009,749,260 | 100% | ||
kicktheword | 0 | 278,551,495 | 100% | ||
driss | 0 | 1,137,418,508 | 100% | ||
roone | 0 | 1,075,033,579 | 100% | ||
yashkesari | 0 | 1,089,149,282 | 100% | ||
rawadzeitoun | 0 | 1,102,599,185 | 100% | ||
dhrubo-rana | 0 | 771,901,523 | 100% | ||
souadoua56 | 0 | 853,063,351 | 100% | ||
arturkim | 0 | 1,143,220,952 | 100% | ||
hilal71 | 0 | 406,220,632 | 100% | ||
kettleandseagull | 0 | 992,338,835 | 100% | ||
ahmado | 0 | 1,160,629,800 | 100% | ||
walidsalah | 0 | 626,740,029 | 0% | ||
connectionpoint | 0 | 1,009,747,747 | 100% | ||
balbes | 0 | 789,228,113 | 100% | ||
realtechie | 0 | 1,160,629,561 | 100% | ||
yulie | 0 | 516,480,150 | 100% | ||
grwduck | 0 | 736,999,640 | 100% | ||
sweatyjazzhands | 0 | 1,137,416,644 | 100% | ||
linalina | 0 | 1,137,416,435 | 100% | ||
zafarynl | 0 | 63,834,561 | 100% | ||
conasulucian | 0 | 481,660,775 | 100% | ||
azziz | 0 | 162,487,970 | 100% | ||
piastres | 0 | 377,204,211 | 100% | ||
al3rabytech | 0 | 0 | 0% | ||
youzarcif | 0 | 951,715,180 | 100% | ||
demostene | 0 | 1,050,368,524 | 100% | ||
rousan-h | 0 | 662,357,286 | 72.52% | ||
abed894 | 0 | 1,021,352,788 | 100% | ||
jaynebryson | 0 | 1,073,580,998 | 100% | ||
travelalert | 0 | 383,007,216 | 100% | ||
symba7 | 0 | 957,517,958 | 100% | ||
aymenz | 0 | 940,108,417 | 100% | ||
pitwi | 0 | 1,498,776,163 | 100% | ||
shawn4745 | 0 | 545,494,909 | 100% | ||
hakn | 0 | 1,137,414,640 | 100% | ||
ehigiepaul | 0 | 1,050,367,079 | 100% | ||
bakabou159704 | 0 | 58,031,329 | 100% | ||
rakkasan84 | 0 | 760,210,396 | 100% | ||
joshreynolds | 0 | 858,863,555 | 100% | ||
marcvs | 0 | 52,228,186 | 100% | ||
brayanduran | 0 | 568,706,888 | 100% | ||
derekvonzarovich | 0 | 655,753,853 | 100% | ||
dean101 | 0 | 481,659,874 | 100% | ||
liza.bakulina | 0 | 655,753,528 | 100% | ||
jorjinho10 | 0 | 191,503,010 | 100% | ||
wayniac30 | 0 | 789,224,526 | 100% | ||
bebeth | 0 | 928,499,320 | 100% | ||
barrymdoyle | 0 | 841,452,462 | 100% | ||
ghost0307 | 0 | 644,146,364 | 100% | ||
jaipe | 0 | 864,664,921 | 100% | ||
themaven | 0 | 1,532,972,386 | 100% | ||
steemitmore | 0 | -551,296,389 | -100% | ||
steemitreblog | 0 | -1,050,364,697 | -100% | ||
yogafitness | 0 | -1,056,167,816 | -100% | ||
cavysarma | 0 | 1,143,214,600 | 100% | ||
maroinraisse201 | 0 | 1,102,592,736 | 100% | ||
elmarnis | 0 | 1,120,001,911 | 100% | ||
almedin | 0 | 1,137,411,200 | 100% | ||
joelpaseearon | 0 | 684,767,923 | 100% | ||
punkais | 0 | 1,160,623,527 | 100% | ||
maudylla09 | 0 | 1,160,623,521 | 100% | ||
belotheboss | 0 | 986,529,846 | 100% | ||
shubhamdubey | 0 | 528,083,621 | 100% | ||
shot-net | 0 | 1,120,001,466 | 100% | ||
keypursuitscorp | 0 | 1,160,623,212 | 100% | ||
highsteem | 0 | 1,056,167,079 | 100% | ||
trinh123 | 0 | 992,332,781 | 100% | ||
bcbxlr | 0 | 1,096,788,852 | 100% | ||
videogeek | 0 | 632,539,597 | 100% | ||
feiyu93 | 0 | 978,747,676 | 100% | ||
ch4osm4n | 0 | 1,137,410,651 | 100% | ||
timurfatkulin | 0 | 1,160,623,113 | 100% | ||
magicrazor | 0 | 1,050,363,906 | 100% | ||
jalaluddin | 0 | 812,436,130 | 96.64% | ||
coinator | 0 | 1,044,560,731 | 100% | ||
galbatron | 0 | 771,814,309 | 100% | ||
peelie9 | 0 | 1,160,623,013 | 100% | ||
juveboss | 0 | 1,120,001,170 | 100% | ||
monther | 0 | 1,125,804,281 | 100% | ||
enrisan | 0 | 383,005,576 | 100% | ||
noticiasvirales | 0 | 1,021,348,183 | 100% | ||
cheeth | 0 | -243,730,814 | -100% | ||
fgik | 0 | 319,171,302 | 100% | ||
msulta | 0 | 1,160,622,914 | 100% | ||
engrqd | 0 | 1,143,213,561 | 100% | ||
xccalvinx | 0 | 1,120,001,103 | 100% | ||
ray123 | 0 | 684,767,503 | 100% | ||
infohunter | 0 | 1,120,001,082 | 100% | ||
kelvino | 0 | 835,648,468 | 100% | ||
khaledzino | 0 | 824,042,223 | 100% | ||
mdarhri | 0 | 992,332,531 | 100% | ||
gotgame | 0 | 1,160,622,843 | 100% | ||
miscpc | 0 | 1,160,622,813 | 100% | ||
gameislove | 0 | 899,482,673 | 100% | ||
datcryptoguy | 0 | 1,137,410,341 | 100% | ||
yosf5678 | 0 | 1,137,410,341 | 100% | ||
umbul | 0 | 510,674,018 | 100% | ||
nosnah | 0 | 1,160,622,747 | 100% | ||
veryvowanda | 0 | 1,096,788,430 | 100% | ||
syami | 0 | 992,332,359 | 100% | ||
ferifelani | 0 | 1,021,347,797 | 100% | ||
dogecoiner | 0 | 893,679,305 | 100% | ||
francisoyetakin | 0 | 707,979,708 | 100% | ||
pis20l | 0 | 667,357,892 | 100% | ||
sahyam | 0 | 719,585,817 | 100% | ||
abdelsamad10 | 0 | 435,233,333 | 100% | ||
gdksodhi | 0 | 992,331,966 | 100% | ||
toasin | 0 | 1,160,622,177 | 100% | ||
steemfuad | 0 | 1,009,741,257 | 100% | ||
ronakj444 | 0 | 719,585,706 | 100% | ||
ilya1990 | 0 | 649,948,366 | 100% | ||
whoisthatarun | 0 | 0 | 100% | ||
yuddengard | 0 | 1,160,620,812 | 100% | ||
asocial | 0 | 63,834,075 | 100% | ||
afukichi | 0 | 0 | 100% | ||
adelanzid | 0 | 0 | 100% | ||
rksumanthraju | 0 | 0 | 100% | ||
codewithcheese | 0 | 0 | 100% | ||
kaleem345 | 0 | 0 | 100% | ||
kuku12170 | 0 | 0 | 100% | ||
rambeesbd | 0 | 0 | 100% | ||
ashish738386 | 0 | 0 | 100% | ||
joshua123 | 0 | 0 | 100% | ||
aarifammir | 0 | 0 | 100% | ||
muhammadriski | 0 | 0 | 100% | ||
abuzenk | 0 | 0 | 100% | ||
mohamedzyaad | 0 | 0 | 100% | ||
shakil205025 | 0 | 0 | 100% | ||
reeyad007 | 0 | 0 | 100% | ||
ashutoshdubey | 0 | 0 | 100% | ||
muksihs | 0 | 0 | 100% | ||
mdmusa | 0 | 0 | 100% | ||
imus | 0 | 0 | 100% | ||
kanish47 | 0 | 0 | 100% | ||
saif15 | 0 | 0 | 10.66% | ||
musman | 0 | 0 | 100% | ||
samir-1 | 0 | 0 | 100% | ||
zafira | 0 | 0 | 100% | ||
mehedihasa24 | 0 | 0 | 100% | ||
khurshid | 0 | 0 | 100% | ||
bestmohammad2017 | 0 | 0 | 100% | ||
imranbsl | 0 | 0 | 100% | ||
farukcom | 0 | 0 | 100% | ||
soubhikmondal | 0 | 0 | 100% | ||
kohbohgong | 0 | 0 | 100% | ||
ak47balasbolin | 0 | 0 | 100% | ||
yann-yoro | 0 | 0 | 100% | ||
arshi | 0 | 0 | 100% | ||
dihan | 0 | 0 | 100% | ||
teatimeadda | 0 | 0 | 100% | ||
ziaurrehman | 0 | 0 | 100% | ||
liar | 0 | 0 | 100% | ||
ancha | 0 | 0 | 100% | ||
alex-steem-it | 0 | 0 | 100% |
Great. Thanks for sharing. I vote for you and begin to follow you. And Resteemed... βΊβ₯
author | abdelsamad10 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170902t122441326z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-09-02 12:24:42 |
last_update | 2017-09-02 12:24:42 |
depth | 1 |
children | 0 |
last_payout | 2017-09-09 12:24:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | -10,257,492,878 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,643,156 |
net_rshares | 0 |
Very excellent site I wish you more excellence and success
author | abed894 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t124012317z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 12:40:15 |
last_update | 2017-08-29 12:40:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 12:40:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | -53,197,969,869 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,225,201 |
net_rshares | 974,927,661 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abed894 | 0 | 974,927,661 | 100% |
nicee
author | abue |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t154321908z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 15:43:27 |
last_update | 2017-08-29 15:43:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 15:43:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 214,847,203,884 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,242,457 |
net_rshares | 0 |
Nice post @almost-digital
author | agusscout | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017910t222125z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-09 19:02:24 | ||||||
last_update | 2017-09-09 19:02:24 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-16 19:02:24 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 25 | ||||||
author_reputation | 1,387,539,889,225 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 14,385,489 | ||||||
net_rshares | 0 |
Awesome documentation!!! Tried it on a friends MacBook and it is still loading... Is it normal to take some time?
author | ahinga | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017829t34416128z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-29 01:44:21 | ||||||
last_update | 2017-08-29 01:44:21 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2017-09-05 01:44:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.347 HBD | ||||||
curator_payout_value | 0.011 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 114 | ||||||
author_reputation | 2,886,133,029,605 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,181,635 | ||||||
net_rshares | 105,596,768,602 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 101,383,830,375 | 0.5% | ||
mysteem | 0 | 84,108,623 | 1% | ||
demo | 0 | 162,264,394 | 1% | ||
feruz | 0 | 1,521,192,837 | 1% | ||
esteemapp | 0 | 1,953,323,728 | 1% | ||
bounties | 0 | 172,474,655 | 1% | ||
steempoll | 0 | 167,421,006 | 1% | ||
tipping | 0 | 152,152,984 | 1% |
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.
author | almost-digital |
---|---|
permlink | re-ahinga-re-almost-digital-2017829t34416128z-20170829t085914960z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://playground.steem.vc"],"app":"steemit/0.1"} |
created | 2017-08-29 08:59:18 |
last_update | 2017-08-29 08:59:18 |
depth | 2 |
children | 1 |
last_payout | 2017-09-05 08:59:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 196 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,209,273 |
net_rshares | 12,077,951,887 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ahinga | 0 | 12,077,951,887 | 56% |
it now works, but i get a message, that the key is wrong...
author | ahinga |
---|---|
permlink | re-almost-digital-re-ahinga-re-almost-digital-2017829t34416128z-20170829t160617343z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 16:06:18 |
last_update | 2017-08-29 16:06:18 |
depth | 3 |
children | 0 |
last_payout | 2017-09-05 16:06:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 2,886,133,029,605 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,244,580 |
net_rshares | 0 |
Best of luck
author | ak47balasbolin |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20171113t003111005z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-11-13 00:31:15 |
last_update | 2017-11-13 00:31:15 |
depth | 1 |
children | 0 |
last_payout | 2017-11-20 00:31:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | -79,255,899,685 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,198,258 |
net_rshares | 0 |
so many people in here just commenting to get upvotes without even reading what the writer has to say. so poor
author | akohdon |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t155902212z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 15:59:06 |
last_update | 2017-08-29 15:59:06 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 15:59:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | -2,325,460,118 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,243,900 |
net_rshares | 0 |
Ty to share upvote and follow you
author | amazonas |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t041844792z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 03:45:21 |
last_update | 2017-08-29 03:45:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 03:45:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 21,802,261,009 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,188,992 |
net_rshares | 0 |
It's much easier to create accounts like this, I'll try
author | amedeo |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t152343868z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 15:23:51 |
last_update | 2017-08-30 15:23:51 |
depth | 1 |
children | 0 |
last_payout | 2017-09-06 15:23:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 1,550,828,191,286 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,350,683 |
net_rshares | 0 |
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
author | arcange |
---|---|
permlink | re-creating-accounts-with-dsteem-0-6-20170828t163748000z |
category | steemdev |
json_metadata | "" |
created | 2017-08-29 14:37:48 |
last_update | 2017-08-29 14:37:48 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 14:37:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 214 |
author_reputation | 1,146,633,668,945,473 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,235,653 |
net_rshares | 0 |
Hello nice post! I already upvote, reesteem and follow you please do the same to help me grow as well!
author | artax89 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t033504060z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 03:35:27 |
last_update | 2017-08-29 03:35:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 03:35:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | 372,189,670,451 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,188,405 |
net_rshares | 0 |
wowww..it's so amazing post...thanks for share..
author | awinyaksteemit |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t055413749z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 05:54:15 |
last_update | 2017-08-29 05:54:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 05:54:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 4,019,152,484,864 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,196,526 |
net_rshares | 1,620,299,744 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
awinyaksteemit | 0 | 1,620,299,744 | 100% |
Interesting post. Worth reading it. Thank you for sharing.
author | bikash-tutor |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t092023483z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 09:20:27 |
last_update | 2017-08-29 09:24:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 09:20:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 4,579,993,214,824 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,210,651 |
net_rshares | 0 |
noted :)
author | bleepcoin |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t101059303z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 10:11:00 |
last_update | 2017-08-29 10:11:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 10:11:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 30,703,823,306,707 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,213,906 |
net_rshares | 0 |
making sense
author | bukkots.com |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t212410594z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 09:22:24 |
last_update | 2017-08-29 09:22:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 09:22:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | -466,939,679,110 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,210,786 |
net_rshares | 127,671,078 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bukkots.com | 0 | 127,671,078 | 100% |
ΠΡΡΡΡΠ΅ Π½ΠΎΠ²ΠΎΡΡΠΈ Π° Ρ Π½Π°Ρ Π²ΡΠ΅ ΡΠΈΡ ΠΎ
author | cement41 |
---|---|
permlink | re-creating-accounts-with-dsteem-0-6-20170829t164714 |
category | steemdev |
json_metadata | "{"app": "steepshot/0.0.6", "extensions": [[0, {"beneficiaries": [{"account": "steepshot", "weight": 1000}]}]]}" |
created | 2017-08-29 16:47:15 |
last_update | 2017-08-29 16:47:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 16:47:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | -10,312,772,153 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,248,404 |
net_rshares | 0 |
https://steemit.com/art/@channeljoy/stunning-example-of-fractal-art
author | channeljoy |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t101851709z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://steemit.com/art/@channeljoy/stunning-example-of-fractal-art"],"app":"steemit/0.1"} |
created | 2017-08-30 10:19:21 |
last_update | 2017-08-30 10:19:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-06 10:19:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 16,910,731,965 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,325,826 |
net_rshares | 0 |
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.
author | charles1 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-2017829t192430402z | ||||||
category | steemdev | ||||||
json_metadata | {"app":"chainbb/0.3","format":"markdown+html","tags":[]} | ||||||
created | 2017-08-29 17:24:33 | ||||||
last_update | 2017-08-29 17:24:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-05 17:24:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 226 | ||||||
author_reputation | 73,578,987,512,478 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,251,847 | ||||||
net_rshares | 0 |
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.
author | cheeth |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t193711302z |
category | steemdev |
json_metadata | {"tags":["steemitabuse-appeals","steemdev"],"links":["https://steemit.com/@cheetah","https://busy.org/@cheetah","https://steemit.com/created"],"app":"steemit/0.1"} |
created | 2017-08-29 19:37:15 |
last_update | 2017-08-29 19:37:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 19:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 450 |
author_reputation | -829,057,946,678 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,264,502 |
net_rshares | -125,064,499,111 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | -125,064,499,111 | -100% |
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 :)
author | crypticwyrm |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170928t194814561z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-09-28 19:48:15 |
last_update | 2017-09-28 19:48:15 |
depth | 1 |
children | 1 |
last_payout | 2017-10-05 19:48:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 255 |
author_reputation | 6,564,338,116,338 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,212,582 |
net_rshares | 0 |
Awesome, let me know how it goes :)
author | almost-digital |
---|---|
permlink | re-crypticwyrm-re-almost-digital-creating-accounts-with-dsteem-0-6-20170929t083121367z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-09-29 08:31:24 |
last_update | 2017-09-29 08:31:24 |
depth | 2 |
children | 0 |
last_payout | 2017-10-06 08:31:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.065 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,257,507 |
net_rshares | 31,598,855,598 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
igster | 0 | 31,598,855,598 | 20% |
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
author | cryptoprofessor |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t075001858z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 07:50:03 |
last_update | 2017-08-30 07:50:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-06 07:50:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 153 |
author_reputation | 566,048,726,222 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,314,683 |
net_rshares | 0 |
Sounds exceptionally complicated..
author | davedickeyyall |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t222444920z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 22:24:48 |
last_update | 2017-08-28 22:24:48 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 22:24:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 909,340,977,048,664 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,169,600 |
net_rshares | 344,935,452 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davedickeyyall | 0 | 344,935,452 | 100% |
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.
author | davidrestrepo |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t031337020z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 03:13:33 |
last_update | 2017-08-30 03:13:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-06 03:13:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.334 HBD |
curator_payout_value | 0.109 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 273 |
author_reputation | 757,119,534,433 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,296,903 |
net_rshares | 132,024,901,867 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davidrestrepo | 0 | 130,864,270,967 | 100% | ||
linkdead13 | 0 | 1,160,630,900 | 100% |
i am new in esteem. please come home to stop at my update. Please help me @almost-digital
author | diansolo | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017830t1235345z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-29 18:23:09 | ||||||
last_update | 2017-08-29 18:23:09 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-05 18:23:09 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 89 | ||||||
author_reputation | 2,338,746,788,759 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,257,488 | ||||||
net_rshares | 0 |
Thank you @almost-digital you have done good job.
author | farukcom |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20171104t003036472z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"} |
created | 2017-11-04 00:30:45 |
last_update | 2017-11-04 00:30:45 |
depth | 1 |
children | 0 |
last_payout | 2017-11-11 00:30:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 32,897,128,085,525 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,393,731 |
net_rshares | 0 |
Priority: try to get maximum Steem Power, and invest with steem. Steem is going to occupy big space.
author | fawadsolangi |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t213212963z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 21:32:15 |
last_update | 2017-08-28 21:32:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 21:32:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | -87,866,079,410 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,165,983 |
net_rshares | 0 |
Up-voted For sure its important Please visit https://steemit.com/education/@fawadsolangi/coin-the-education-1-campaign-to-help-student-with-education
author | fawadsolangi |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t210711450z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://steemit.com/education/@fawadsolangi/coin-the-education-1-campaign-to-help-student-with-education"],"app":"steemit/0.1"} |
created | 2017-08-30 21:07:15 |
last_update | 2017-08-30 21:07:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-06 21:07:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 152 |
author_reputation | -87,866,079,410 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,380,957 |
net_rshares | 0 |
doesnt this make it easy for people to create 100+ spam accounts ?
author | fishmon |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t145743192z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 14:57:45 |
last_update | 2017-08-29 14:57:45 |
depth | 1 |
children | 1 |
last_payout | 2017-09-05 14:57:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 4,373,835,902,560 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,237,768 |
net_rshares | 0 |
Only if they are willing to pay 600 STEEM+
author | almost-digital |
---|---|
permlink | re-fishmon-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t081627045z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 08:16:27 |
last_update | 2017-08-30 08:16:27 |
depth | 2 |
children | 0 |
last_payout | 2017-09-06 08:16:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,316,632 |
net_rshares | 0 |
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!
author | fury123 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017829t34151124z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-28 22:41:57 | ||||||
last_update | 2017-08-28 22:41:57 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-04 22:41:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 206 | ||||||
author_reputation | 6,610,638,415,250 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,170,705 | ||||||
net_rshares | 0 |
Follow for Follow π
author | golafire |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t034128309z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 03:41:30 |
last_update | 2017-08-29 03:41:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 03:41:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | -31,047,365,969 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,188,747 |
net_rshares | 0 |
Are there any other libraries for other languages?
author | greenbigfrog |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t141734919z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"busy/1.0.0"} |
created | 2017-08-29 14:17:36 |
last_update | 2017-08-29 14:17:36 |
depth | 1 |
children | 2 |
last_payout | 2017-09-05 14:17:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 8,811,141,999 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,233,720 |
net_rshares | 0 |
Yep, there's a official [python library](https://github.com/steemit/steem-python)
author | almost-digital |
---|---|
permlink | re-greenbigfrog-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t081555940z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://github.com/steemit/steem-python"],"app":"steemit/0.1"} |
created | 2017-08-30 08:15:54 |
last_update | 2017-08-30 08:15:54 |
depth | 2 |
children | 1 |
last_payout | 2017-09-06 08:15:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,316,589 |
net_rshares | 2,331,949,942 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
greenbigfrog | 0 | 2,331,949,942 | 100% |
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?
author | greenbigfrog |
---|---|
permlink | re-almost-digital-re-greenbigfrog-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t134115197z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://github.com/inertia186/radiator"],"app":"steemit/0.1"} |
created | 2017-08-30 13:41:15 |
last_update | 2017-08-30 13:41:15 |
depth | 3 |
children | 0 |
last_payout | 2017-09-06 13:41:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 169 |
author_reputation | 8,811,141,999 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,340,957 |
net_rshares | 0 |
I've already said that few times but repeating wouldn't hurt: Good work! :-)
author | gtg |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203131815z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:31:30 |
last_update | 2017-08-28 20:31:30 |
depth | 1 |
children | 1 |
last_payout | 2017-09-04 20:31:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.144 HBD |
curator_payout_value | 0.192 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 461,829,867,647,270 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,465 |
net_rshares | 370,598,434,943 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teamsteem | 0 | 184,214,310,235 | 1% | ||
almost-digital | 0 | 176,227,248,747 | 100% | ||
magicstone1412 | 0 | 7,075,812,969 | 100% | ||
bikash-tutor | 0 | 3,081,062,992 | 100% |
Thanks! Right back at ya :)
author | almost-digital |
---|---|
permlink | re-gtg-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204334143z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:43:33 |
last_update | 2017-08-28 20:43:33 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 20:43:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,162,372 |
net_rshares | 0 |
thanks for sharring this good information
author | hamzaoui |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t224420697z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 22:44:54 |
last_update | 2017-08-28 22:44:54 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 22:44:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 2,667,249,998,202 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,170,898 |
net_rshares | 0 |
I like your post, and I will wait for your next posting
author | hanifmunandar | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017829t1138547z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-29 04:38:57 | ||||||
last_update | 2017-08-29 04:38:57 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-05 04:38:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 55 | ||||||
author_reputation | -1,987,580,910,022 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,191,916 | ||||||
net_rshares | 0 |
Nice job Please add syntax highlighting to steemit!
author | j4y |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t003948935z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 00:39:39 |
last_update | 2017-08-29 00:40:39 |
depth | 1 |
children | 1 |
last_payout | 2017-09-05 00:39:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 184,465,720,544 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,177,704 |
net_rshares | 18,001,708,205 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 18,001,708,205 | 10% |
It's coming :) https://github.com/steemit/condenser/pull/1689
author | almost-digital |
---|---|
permlink | re-j4y-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t081209415z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://github.com/steemit/condenser/pull/1689"],"app":"steemit/0.1"} |
created | 2017-08-30 08:12:09 |
last_update | 2017-08-30 08:12:09 |
depth | 2 |
children | 0 |
last_payout | 2017-09-06 08:12:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,316,300 |
net_rshares | 2,549,872,896 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
j4y | 0 | 2,549,872,896 | 100% |
Thanks for putting this together! Resteemed and will definately play around with this this weekend when I have some free time
author | jadoob |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203234522z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:32:33 |
last_update | 2017-08-28 20:32:33 |
depth | 1 |
children | 2 |
last_payout | 2017-09-04 20:32:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 125 |
author_reputation | 10,225,715,769 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,547 |
net_rshares | 20,844,083,185 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 20,844,083,185 | 12% |
Awesome! Let me know how it goes :)
author | almost-digital |
---|---|
permlink | re-jadoob-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204553332z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:45:54 |
last_update | 2017-08-28 20:45:54 |
depth | 2 |
children | 1 |
last_payout | 2017-09-04 20:45:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,162,545 |
net_rshares | 0 |
Will do! :)
author | jadoob |
---|---|
permlink | re-almost-digital-re-jadoob-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t205726527z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:57:24 |
last_update | 2017-08-28 20:57:24 |
depth | 3 |
children | 0 |
last_payout | 2017-09-04 20:57:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 10,225,715,769 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,163,463 |
net_rshares | 0 |
This sounds much cheaper than making accounts via anon-steem
author | jeffjagoe | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017829t8232864z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-29 12:23:09 | ||||||
last_update | 2017-08-29 12:23:09 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2017-09-05 12:23:09 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.152 HBD | ||||||
curator_payout_value | 0.052 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 60 | ||||||
author_reputation | 611,537,845,941,425 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,223,722 | ||||||
net_rshares | 59,689,874,575 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 59,689,874,575 | 42% |
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)
author | almost-digital |
---|---|
permlink | re-jeffjagoe-re-almost-digital-2017829t8232864z-20170830t081451389z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://account.steem.vc"],"app":"steemit/0.1"} |
created | 2017-08-30 08:14:51 |
last_update | 2017-08-30 08:14:51 |
depth | 2 |
children | 0 |
last_payout | 2017-09-06 08:14:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 176 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,316,510 |
net_rshares | 2,727,810,311 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jeffjagoe | 0 | 2,727,810,311 | 6.98% | ||
bohemian | 0 | 0 | 100% |
Great post! The project is interesting . At this point I agree with you.
author | jhoshua1144 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t131742808z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 12:54:33 |
last_update | 2017-08-29 12:54:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 12:54:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 72 |
author_reputation | 67,841,557,506 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,226,254 |
net_rshares | 0 |
Great post @almost-digital. Thanks for shedding some light on your project. Im personally looking out for dsteem
author | johnlue | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017829t7303858z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-29 12:30:42 | ||||||
last_update | 2017-08-29 12:30:42 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-05 12:30:42 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 112 | ||||||
author_reputation | 1,015,398,976,252 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,224,370 | ||||||
net_rshares | 0 |
Really cool project. Im playing with it now
author | joshtristram |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t231037410z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 23:10:39 |
last_update | 2017-08-28 23:10:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 23:10:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.048 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 976,548,544,298 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,172,474 |
net_rshares | 18,001,708,205 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 18,001,708,205 | 10% |
Nice work bro n thanks for comments
author | kaleem345 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20171003t143252489z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-10-03 14:34:42 |
last_update | 2017-10-03 14:34:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-10 14:34:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 9,849,577,612,331 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,672,780 |
net_rshares | 0 |
Thanks for your information I want to try it
author | kedirimoet | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017829t121210213z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-29 05:12:15 | ||||||
last_update | 2017-08-29 05:12:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-05 05:12:15 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 44 | ||||||
author_reputation | 163,001,311,656 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,193,881 | ||||||
net_rshares | 0 |
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
author | kellyjanderson |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170912t234351137z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["kellyjanderson"],"app":"steemit/0.1"} |
created | 2017-09-12 23:43:51 |
last_update | 2017-09-12 23:43:51 |
depth | 1 |
children | 1 |
last_payout | 2017-09-19 23:43:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 296 |
author_reputation | 1,966,394,864,061 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,707,982 |
net_rshares | 0 |
Awesome, thanks! I'm happy that it helped you
author | almost-digital |
---|---|
permlink | re-kellyjanderson-re-almost-digital-creating-accounts-with-dsteem-0-6-20170913t172625927z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-09-13 17:26:24 |
last_update | 2017-09-13 17:26:24 |
depth | 2 |
children | 0 |
last_payout | 2017-09-20 17:26:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,782,604 |
net_rshares | 0 |
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.
author | kellyjanderson |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20180109t171853446z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-09 17:18:42 |
last_update | 2018-01-09 17:18:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 17:18:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 295 |
author_reputation | 1,966,394,864,061 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,299,983 |
net_rshares | 0 |
Nice post,Thank you for sharing.
author | kovilvns |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t032614293z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 03:26:15 |
last_update | 2017-08-29 03:26:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 03:26:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | -1,954,727,955,537 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,187,884 |
net_rshares | 0 |
an important thing to know is that usernames are alphamnumerical only. Took me a few tries and headscratching 2 days ago to get this.
author | lennstar |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t201003150z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:10:03 |
last_update | 2017-08-28 20:10:03 |
depth | 1 |
children | 1 |
last_payout | 2017-09-04 20:10:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.849 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 37,894,934,005,044 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,159,762 |
net_rshares | 238,477,079,329 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
juanmiguelsalas | 0 | 6,275,390,048 | 9% | ||
lennstar | 0 | 40,600,196,404 | 25% | ||
almost-digital | 0 | 182,859,457,033 | 100% | ||
eturnerx | 0 | 5,645,600,205 | 20% | ||
youssif20 | 0 | 1,123,368,589 | 100% | ||
jalibram | 0 | 1,120,008,369 | 100% | ||
jaipe | 0 | 853,058,681 | 100% |
>Took me a few tries and headscratching 2 days ago to get this. Happens to me too :)
author | juanmiguelsalas |
---|---|
permlink | re-lennstar-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t202648070z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:26:45 |
last_update | 2017-08-28 20:26:45 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 20:26:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 91,321,277,026,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,112 |
net_rshares | 0 |
nice
author | litonmrss |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20171106t153429664z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-11-06 15:34:33 |
last_update | 2017-11-06 15:34:33 |
depth | 1 |
children | 0 |
last_payout | 2017-11-13 15:34:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 404,982,435 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,614,789 |
net_rshares | 0 |
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.
author | madcool | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-2017829t20536447z | ||||||
category | steemdev | ||||||
json_metadata | {"app":"chainbb/0.3","format":"markdown+html","tags":[]} | ||||||
created | 2017-08-29 13:05:45 | ||||||
last_update | 2017-08-29 13:05:45 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-05 13:05:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.021 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 413 | ||||||
author_reputation | 169,400,923,890 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,227,210 | ||||||
net_rshares | 7,124,869,825 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jesta | 0 | 6,828,911,020 | 0.1% | ||
willow1114 | 0 | 295,958,805 | 100% |
Thank you very much for creating this unique Steem application.
author | malay11 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017829t1585874z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-28 20:29:03 | ||||||
last_update | 2017-08-28 20:29:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-04 20:29:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 63 | ||||||
author_reputation | 12,046,977,729,976 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,161,300 | ||||||
net_rshares | 0 |
way over my head
author | marketanalysis |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t200428459z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:04:03 |
last_update | 2017-08-28 20:04:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 20:04:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 159,257,584,031 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,159,298 |
net_rshares | 10,548,159,516 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 9,474,583,265 | 5% | ||
juveboss | 0 | 1,073,576,251 | 100% |
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
author | mcsamm |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t013834551z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 17:43:51 |
last_update | 2017-08-29 17:43:51 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 17:43:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 158 |
author_reputation | 1,546,513,356,399,413 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,253,651 |
net_rshares | 5,310,004,215 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tox | 0 | 1,758,935,050 | 100% | ||
command | 0 | 2,431,152,078 | 100% | ||
command-center | 0 | 716,450,913 | 100% | ||
acai | 0 | 403,466,174 | 100% |
amazing work
author | microsomes |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203614817z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:36:15 |
last_update | 2017-08-28 20:36:15 |
depth | 1 |
children | 1 |
last_payout | 2017-09-04 20:36:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.062 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 121,493,539,638 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,815 |
net_rshares | 18,832,084,560 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 9,474,583,265 | 5% | ||
microsomes | 0 | 9,357,501,295 | 100% |
Thanks!
author | almost-digital |
---|---|
permlink | re-microsomes-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204729798z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:47:30 |
last_update | 2017-08-28 20:47:30 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 20:47:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,162,670 |
net_rshares | 0 |
good post men
author | mohameddz |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203029810z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:30:30 |
last_update | 2017-08-28 20:30:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 20:30:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 4,760,373,340 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,395 |
net_rshares | 0 |
Wow good information on one post, I wait for your next posting
author | mohameddz |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203359386z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:34:00 |
last_update | 2017-08-28 20:34:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 20:34:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 4,760,373,340 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,640 |
net_rshares | 0 |
Wow good information on one post, I wait for your next posting
author | mohameddz |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t220546555z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 22:05:45 |
last_update | 2017-08-28 22:05:45 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 22:05:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 4,760,373,340 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,168,265 |
net_rshares | 0 |
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
author | mukhtar.juned | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017830t8047599z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-30 01:01:03 | ||||||
last_update | 2017-08-30 01:01:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-06 01:01:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 175 | ||||||
author_reputation | 7,967,035,623,756 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,288,136 | ||||||
net_rshares | 0 |
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
author | nasrud |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t071754568z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"} |
created | 2017-08-29 07:17:57 |
last_update | 2017-08-29 07:17:57 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 07:17:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 360 |
author_reputation | 12,576,574,013,771 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,202,191 |
net_rshares | 0 |
> 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.
author | nasrud |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t082556023z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 08:26:00 |
last_update | 2017-08-29 08:26:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 08:26:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 423 |
author_reputation | 12,576,574,013,771 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,207,083 |
net_rshares | 0 |
very great post!
author | neowne |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t194932651z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 19:49:33 |
last_update | 2017-08-28 19:49:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 19:49:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 391,544,822,175 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,158,193 |
net_rshares | 0 |
@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
author | netuoso |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170904t040521858z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["almost-digital"],"links":["https://github.com/aaroncox/vessel/pull/33"],"app":"steemit/0.1"} |
created | 2017-09-04 04:05:24 |
last_update | 2017-09-04 04:05:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 04:05:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | 151,901,967,807,285 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,807,345 |
net_rshares | 0 |
nice follow me @newzifa
author | newzifa |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t155807550z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["newzifa"],"app":"steemit/0.1"} |
created | 2017-08-29 15:58:09 |
last_update | 2017-08-29 15:58:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 15:58:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 164,201,797,583 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,243,814 |
net_rshares | 0 |
Interesting. Have you thought about making a video for the severely techno illiterate?
author | nicholas1983 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t075942919z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 07:59:42 |
last_update | 2017-08-29 07:59:42 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 07:59:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 678,448,408,817 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,205,301 |
net_rshares | 0 |
dSteem sounds like an interesting project
author | outspoken |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t052639919z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 05:26:39 |
last_update | 2017-08-30 05:26:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-06 05:26:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 17,039,455,977 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,305,326 |
net_rshares | 0 |
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.
author | p0o |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t051045599z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://github.com/steemit/steem-js"],"app":"steemit/0.1"} |
created | 2017-08-29 05:10:48 |
last_update | 2017-08-29 05:10:48 |
depth | 1 |
children | 3 |
last_payout | 2017-09-05 05:10:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.298 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 254 |
author_reputation | 8,373,104,781,065 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,193,788 |
net_rshares | 84,689,879,873 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
p0o | 0 | 75,215,296,608 | 20% | ||
almost-digital | 0 | 9,474,583,265 | 5% | ||
urbansteemers | 0 | 0 | 100% |
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.
author | almost-digital |
---|---|
permlink | re-p0o-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t085453238z |
category | steemdev |
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"} |
created | 2017-08-29 08:54:57 |
last_update | 2017-08-29 08:54:57 |
depth | 2 |
children | 1 |
last_payout | 2017-09-05 08:54:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.202 HBD |
curator_payout_value | 0.066 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 883 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,208,987 |
net_rshares | 75,216,954,736 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
p0o | 0 | 75,216,954,736 | 20% | ||
urbansteemers | 0 | 0 | 100% |
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.
author | p0o |
---|---|
permlink | re-almost-digital-re-p0o-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t171546743z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 17:15:48 |
last_update | 2017-08-29 17:15:48 |
depth | 3 |
children | 0 |
last_payout | 2017-09-05 17:15:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 508 |
author_reputation | 8,373,104,781,065 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,251,001 |
net_rshares | 0 |
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..
author | urbansteemers |
---|---|
permlink | re-p0o-re-almost-digital-creating-accounts-with-dsteem-0-6-20171002t215930422z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-10-02 21:59:30 |
last_update | 2017-10-02 21:59:30 |
depth | 2 |
children | 0 |
last_payout | 2017-10-09 21:59:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 157 |
author_reputation | 83,763,475,248 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,608,665 |
net_rshares | 0 |
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.
author | paradiselooi |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t042305469z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 04:23:06 |
last_update | 2017-08-29 04:23:06 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 04:23:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 157 |
author_reputation | 262,899,688 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,191,037 |
net_rshares | 3,789,833,306 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 3,789,833,306 | 2% |
good informative post :-)
author | pcste |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t201720570z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:17:21 |
last_update | 2017-08-28 20:17:21 |
depth | 1 |
children | 1 |
last_payout | 2017-09-04 20:17:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 112,529,675,837,494 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,160,389 |
net_rshares | 0 |
Thanks! :)
author | almost-digital |
---|---|
permlink | re-pcste-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204708550z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:47:09 |
last_update | 2017-08-28 20:47:09 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 20:47:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,162,637 |
net_rshares | 4,304,228,006 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pcste | 0 | 4,304,228,006 | 11% |
Great job. Thank you!!
author | pia-ps |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t063816394z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 06:38:18 |
last_update | 2017-08-29 06:38:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 06:38:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 310,246,298,385 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,199,596 |
net_rshares | 0 |
Its mean basically you are software developer??
author | princekayani |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t202539904z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:25:42 |
last_update | 2017-08-28 20:25:42 |
depth | 1 |
children | 1 |
last_payout | 2017-09-04 20:25:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 61,289,909,290 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,033 |
net_rshares | 365,146,159 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
princekayani | 0 | 365,146,159 | 100% |
lol! tldr; I'm a swoftware developer :D
author | almost-digital |
---|---|
permlink | re-princekayani-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204506255z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:45:06 |
last_update | 2017-08-28 20:45:06 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 20:45:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,162,477 |
net_rshares | 312,090,734 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
princekayani | 0 | 312,090,734 | 100% |
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)!
author | randowhale |
---|---|
permlink | re-creating-accounts-with-dsteem-0-6-20170901t002701 |
category | steemdev |
json_metadata | "{"app": "randowhale/0.1", "format": "markdown"}" |
created | 2017-09-01 00:27:03 |
last_update | 2017-09-01 00:27:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-08 00:27:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 214 |
author_reputation | 47,657,457,485,459 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,499,651 |
net_rshares | 0 |
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>
author | reko |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170907t022236209z |
category | steemdev |
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"} |
created | 2017-09-07 02:22:36 |
last_update | 2017-09-07 02:22:36 |
depth | 1 |
children | 0 |
last_payout | 2017-09-14 02:22:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 398 |
author_reputation | 110,602,366,181,017 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,106,104 |
net_rshares | 5,688,144,524 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
reko | 0 | 5,688,144,524 | 26% |
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
author | rooneey | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017829t15557532z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-29 08:06:03 | ||||||
last_update | 2017-08-29 08:06:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-05 08:06:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 190 | ||||||
author_reputation | 8,862,226,725,886 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,205,761 | ||||||
net_rshares | 0 |
thank you so much this post was really really helpful i understand a lot better now thank you
author | roxyferis |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t151038496z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 15:12:27 |
last_update | 2017-08-29 15:12:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 15:12:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 198,850,332,228 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,239,207 |
net_rshares | 0 |
Good job, thank you.
author | rsrestinga |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t000046703z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 00:00:51 |
last_update | 2017-08-29 00:00:51 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 00:00:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 513,693,976,786 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,175,361 |
net_rshares | 1,032,957,229 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rsrestinga | 0 | 1,032,957,229 | 100% |
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) ?
author | rudystyle |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t101619602z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 10:16:18 |
last_update | 2017-08-29 10:16:18 |
depth | 1 |
children | 2 |
last_payout | 2017-09-05 10:16:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.129 HBD |
curator_payout_value | 0.043 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 156 |
author_reputation | 5,936,282,236,662 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,214,233 |
net_rshares | 48,320,374,656 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 48,320,374,656 | 42% |
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
author | almost-digital |
---|---|
permlink | re-rudystyle-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t104249612z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://playground.steem.vc/@^0.6.0#c182038ce97d3d4d283b50fd87ed0190"],"app":"steemit/0.1"} |
created | 2017-08-29 10:42:48 |
last_update | 2017-08-29 10:42:48 |
depth | 2 |
children | 1 |
last_payout | 2017-09-05 10:42:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.286 HBD |
curator_payout_value | 0.095 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 174 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,216,117 |
net_rshares | 107,035,415,780 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rudystyle | 0 | 107,035,415,780 | 10% |
thanks a lot
author | rudystyle |
---|---|
permlink | re-almost-digital-re-rudystyle-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t082238376z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 08:22:39 |
last_update | 2017-08-30 08:22:39 |
depth | 3 |
children | 0 |
last_payout | 2017-09-06 08:22:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 5,936,282,236,662 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,317,093 |
net_rshares | 0 |
You can Follow me for the latest Technology Related News and Articles.. Thank You...
author | sachumanoj |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t063823839z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 06:38:33 |
last_update | 2017-08-29 06:38:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 06:38:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | -15,034,412,992 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,199,614 |
net_rshares | 83,863,649 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sachumanoj | 0 | 83,863,649 | 100% |
Great news
author | saini11 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t034128505z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 03:41:33 |
last_update | 2017-08-29 03:41:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 03:41:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | -1,494,386,599,331 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,188,752 |
net_rshares | 0 |
Nice one
author | samuelsunday |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170904t042341409z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-09-04 04:26:42 |
last_update | 2017-09-04 04:26:42 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 04:26:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 10,761,760,483 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,808,669 |
net_rshares | 0 |
this is great,thank you @almost-digital.
author | sandra12 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t202919517z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"} |
created | 2017-08-28 20:29:21 |
last_update | 2017-08-28 20:29:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 20:29:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 20,302,657,252 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,324 |
net_rshares | 9,474,583,265 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 9,474,583,265 | 5% |
great stuff - will check that out soonish this weekend :)
author | sebako |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t013838143z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 01:38:39 |
last_update | 2017-08-29 01:38:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 01:38:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 10,897,361,389 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,181,302 |
net_rshares | 18,001,708,205 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 18,001,708,205 | 10% |
very nice
author | sharoon |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t182223713z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 18:22:24 |
last_update | 2017-08-29 18:22:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 18:22:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | -330,640,444,933 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,257,415 |
net_rshares | 0 |
an important thing to know is that usernames are alphamnumerical only. Took me a few tries and headscratching 2 days ago to get this.
author | shawn4745 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t205832035z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:58:33 |
last_update | 2017-08-28 20:58:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 20:58:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 174,230,277,826 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,163,550 |
net_rshares | -178,276,249,145 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | -180,017,082,053 | -100% | ||
slavix | 0 | 1,740,832,908 | 100% |
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
author | shawn4745 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t205946267z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["almost-digita"],"app":"steemit/0.1"} |
created | 2017-08-28 20:59:48 |
last_update | 2017-08-28 20:59:48 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 20:59:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 157 |
author_reputation | 174,230,277,826 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,163,646 |
net_rshares | -183,806,915,360 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | -183,806,915,360 | -100% |
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.
author | sheapureness |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t091128690z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"} |
created | 2017-08-30 09:11:27 |
last_update | 2017-08-30 09:11:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-06 09:11:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 398 |
author_reputation | 533,714,860,147 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,320,856 |
net_rshares | 0 |
amazing work info
author | skull1 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t002020074z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 00:20:39 |
last_update | 2017-08-29 00:20:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 00:20:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 5,410,192,501 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,176,572 |
net_rshares | 0 |
Awesome project, Thanks for sharing
author | smartgeek |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t091810763z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 09:17:54 |
last_update | 2017-08-29 09:17:54 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 09:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 303,476,072,740 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,210,473 |
net_rshares | 0 |
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?
author | someguy123 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t215752918z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["svk"],"links":["https://github.com/svk31/steemjs-lib"],"app":"steemit/0.1"} |
created | 2017-08-28 21:57:51 |
last_update | 2017-08-28 21:57:51 |
depth | 1 |
children | 12 |
last_payout | 2017-09-04 21:57:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.843 HBD |
curator_payout_value | 0.131 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 404 |
author_reputation | 103,945,664,283,580 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,167,742 |
net_rshares | 1,376,125,112,934 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teamsteem | 0 | 184,214,310,235 | 1% | ||
someguy123 | 0 | 1,095,990,213,628 | 100% | ||
greenbigfrog | 0 | 1,904,629,272 | 100% | ||
ackza | 0 | 4,165,473,340 | 18% | ||
donmesswithabeer | 0 | 1,455,604,579 | 100% | ||
almost-digital | 0 | 72,954,291,148 | 42% | ||
magicstone1412 | 0 | 6,819,177,266 | 100% | ||
bikash-tutor | 0 | 3,164,334,965 | 100% | ||
cracker | 0 | 596,784,208 | 100% | ||
anonna | 0 | 980,746,250 | 100% | ||
s-m-monir | 0 | 1,073,597,948 | 100% | ||
corganmusic | 0 | 250,932,434 | 100% | ||
cupidofdarkness | 0 | 436,877,346 | 100% | ||
cama73ven | 0 | 52,228,388 | 100% | ||
ehigiepaul | 0 | 969,123,216 | 100% | ||
juveboss | 0 | 1,096,788,711 | 100% |
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
author | ackza |
---|---|
permlink | re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t042102831z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1","users":["almost-digital"]} |
created | 2017-08-29 04:21:03 |
last_update | 2017-08-29 04:25:12 |
depth | 2 |
children | 0 |
last_payout | 2017-09-05 04:21:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,359 |
author_reputation | 288,199,488,139,374 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,190,922 |
net_rshares | 301,761,919 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
willow1114 | 0 | 301,761,919 | 100% |
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.
author | almost-digital |
---|---|
permlink | re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t221940073z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"links":["https://testnet.steem.vc"],"app":"steemit/0.1"} |
created | 2017-08-28 22:19:39 |
last_update | 2017-08-28 22:19:39 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 22:19:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.988 HBD |
curator_payout_value | 0.324 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 450 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,169,209 |
net_rshares | 363,868,620,800 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teamsteem | 0 | 184,214,310,235 | 1% | ||
tobythecat | 0 | 1,399,217,038 | 100% | ||
almost-digital | 0 | 176,227,248,747 | 100% | ||
slavix | 0 | 1,776,912,346 | 100% | ||
corganmusic | 0 | 250,932,434 | 100% |
Great post! The project is interesting. I am very interested. At this point I agree with you.
author | anonna |
---|---|
permlink | re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t021848860z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 02:18:51 |
last_update | 2017-08-29 02:18:51 |
depth | 2 |
children | 0 |
last_payout | 2017-09-05 02:18:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 11,175,081,903 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,183,935 |
net_rshares | 9,673,980,149 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
s-m-monir | 0 | 1,096,810,877 | 100% | ||
mahfuzanam | 0 | 777,688,351 | 100% | ||
bristy | 0 | 673,174,482 | 100% | ||
hashem | 0 | 562,913,027 | 100% | ||
sajibahmad | 0 | 806,647,725 | 100% | ||
sanjana | 0 | 632,551,052 | 100% | ||
nahidhasan | 0 | 795,039,414 | 100% | ||
maisha-ict | 0 | 806,643,918 | 100% | ||
jakirul-islam | 0 | 806,643,912 | 100% | ||
ahsanhabib | 0 | 278,552,421 | 100% | ||
jchelen | 0 | 795,033,967 | 100% | ||
habibahsan460 | 0 | 632,539,709 | 100% | ||
toasin | 0 | 1,009,741,294 | 100% |
appreciate your services dude ;)
author | cryptocoiners |
---|---|
permlink | re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t163852073z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 16:35:03 |
last_update | 2017-08-29 16:35:03 |
depth | 2 |
children | 0 |
last_payout | 2017-09-05 16:35:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 2,471,553,385,035 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,247,300 |
net_rshares | 0 |
Appreciate your services dude ;)
author | cryptocoiners |
---|---|
permlink | re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t163930286z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 16:35:42 |
last_update | 2017-08-29 16:35:42 |
depth | 2 |
children | 0 |
last_payout | 2017-09-05 16:35:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 2,471,553,385,035 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,247,362 |
net_rshares | 0 |
@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 :)
author | justinw |
---|---|
permlink | re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t145437435z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["someguy123"],"links":["https://github.com/steemit/steem-js"],"app":"steemit/0.1"} |
created | 2017-08-29 14:54:36 |
last_update | 2017-08-29 14:54:36 |
depth | 2 |
children | 5 |
last_payout | 2017-09-05 14:54:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.758 HBD |
curator_payout_value | 0.251 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 548 |
author_reputation | 15,502,058,309,908 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,237,404 |
net_rshares | 287,557,441,594 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tobythecat | 0 | 1,377,007,244 | 100% | ||
someguy123 | 0 | 286,180,434,350 | 25% |
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.
author | someguy123 |
---|---|
permlink | re-justinw-re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t070450059z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 07:04:51 |
last_update | 2017-08-30 07:04:51 |
depth | 3 |
children | 0 |
last_payout | 2017-09-06 07:04:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 252 |
author_reputation | 103,945,664,283,580 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,311,493 |
net_rshares | 0 |
Not to necro this, but seems not the case these days. https://i.imgur.com/2QKy4eQ.png https://i.imgur.com/ezp13Qj.png
author | themarkymark |
---|---|
permlink | re-justinw-re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20180708t141611974z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"image":["https://i.imgur.com/2QKy4eQ.png","https://i.imgur.com/ezp13Qj.png"],"app":"steemit/0.1"} |
created | 2018-07-08 14:16:09 |
last_update | 2018-07-08 14:16:09 |
depth | 3 |
children | 1 |
last_payout | 2018-07-15 14:16:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.218 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 1,779,924,755,374,930 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,902,933 |
net_rshares | 112,125,431,625 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
therealwolf | 0 | 112,125,431,625 | 10% |
@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.
author | therealwolf |
---|---|
permlink | re-justinw-re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170901t212101938z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["justinw"],"app":"steemit/0.1"} |
created | 2017-09-01 21:21:00 |
last_update | 2017-09-01 21:21:00 |
depth | 3 |
children | 0 |
last_payout | 2017-09-08 21:21:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 154 |
author_reputation | 581,693,011,827,252 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,590,172 |
net_rshares | 0 |
good
author | trung |
---|---|
permlink | re-justinw-re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t145719974z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 14:57:21 |
last_update | 2017-08-29 14:57:21 |
depth | 3 |
children | 0 |
last_payout | 2017-09-05 14:57:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 11,258,668 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,237,717 |
net_rshares | 0 |
steem-js via npm install steem works pretty good. But since you meant the other one - I get what you're saying.
author | therealwolf |
---|---|
permlink | re-someguy123-re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t100434330z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 10:04:36 |
last_update | 2017-08-30 10:04:36 |
depth | 2 |
children | 0 |
last_payout | 2017-09-06 10:04:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 581,693,011,827,252 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,324,855 |
net_rshares | 0 |
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.
author | steemitmore |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t103316296z |
category | steemdev |
json_metadata | {"tags":["steemitabuse-appeals","steemdev"],"links":["https://steemit.com/@cheetah"],"app":"steemit/0.1"} |
created | 2017-08-29 10:33:21 |
last_update | 2017-08-29 10:33:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 10:33:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 300 |
author_reputation | -935,424,873,920 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,215,418 |
net_rshares | -648,974,152,577 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | -150,645,873,929 | -100% | ||
libertyteeth | 0 | -485,658,581,455 | -100% | ||
theaustrianguy | 0 | -13,998,582,534 | -100% | ||
fbslo | 0 | -226,350,786 | -100% | ||
steemitmore | 0 | 545,493,269 | 100% | ||
steemitreblog | 0 | 1,009,742,858 | 100% |
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.
author | steemitreblog |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t104050063z |
category | steemdev |
json_metadata | {"tags":["steemitabuse-appeals","steemdev"],"links":["https://steemit.com/@cheetah"],"app":"steemit/0.1"} |
created | 2017-08-29 10:40:57 |
last_update | 2017-08-29 10:40:57 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 10:40:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 319 |
author_reputation | -15,110,197,186 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,215,978 |
net_rshares | -165,915,056,735 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
greenbigfrog | 0 | -195,346,592 | -10% | ||
almost-digital | 0 | -166,752,665,481 | -100% | ||
steemitreblog | 0 | 1,032,955,338 | 100% |
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
author | steempowerbot | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017829t05915373z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-28 23:59:21 | ||||||
last_update | 2017-08-28 23:59:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-04 23:59:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 520 | ||||||
author_reputation | 137,971,187,828 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,175,262 | ||||||
net_rshares | -187,792,095,258 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
greenbigfrog | 0 | -195,346,592 | -10% | ||
almost-digital | 0 | -187,596,748,666 | -100% |
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
author | steemvote |
---|---|
permlink | creating-accounts-with-dsteem-0-620170828t195021465z |
category | steemdev |
json_metadata | {"tags":[""],"app":"steemjs/examples"} |
created | 2017-08-28 19:49:48 |
last_update | 2017-08-28 19:49:48 |
depth | 1 |
children | 2 |
last_payout | 2017-09-04 19:49:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 277 |
author_reputation | 1,560,643,521,824 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,158,212 |
net_rshares | -120,848,088,982 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adm | 0 | -159,717,072,985 | -1% | ||
marcusorlyius | 0 | -3,237,831,247 | -100% | ||
ashaman | 0 | -48,062,760,622 | -100% | ||
greenbigfrog | 0 | -195,346,592 | -10% | ||
almost-digital | 0 | -179,069,623,727 | -100% | ||
randowhale | 0 | 267,930,425,686 | 1.5% | ||
princekayani | 0 | 358,904,345 | 100% | ||
randowhaletrail | 0 | 309,566,840 | 0.5% | ||
jaipe | 0 | 835,649,320 | 100% |
Why the fuck are people upvoting this blatant spam?
author | marcusorlyius |
---|---|
permlink | re-steemvote-creating-accounts-with-dsteem-0-620170828t195021465z-20170828t221419970z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 22:14:18 |
last_update | 2017-08-28 22:14:18 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 22:14:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 152,371,289,228 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,168,832 |
net_rshares | 10,061,018,614 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
almost-digital | 0 | 9,474,583,265 | 5% | ||
cracker | 0 | 586,435,349 | 100% |
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)!
author | randowhale |
---|---|
permlink | re-creating-accounts-with-dsteem-0-620170828t195021465z-20170828t202915 |
category | steemdev |
json_metadata | "{"app": "randowhale/0.1", "format": "markdown"}" |
created | 2017-08-28 20:29:15 |
last_update | 2017-08-28 20:29:15 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 20:29:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 209 |
author_reputation | 47,657,457,485,459 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,314 |
net_rshares | 994,358,403 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ozchartart | 0 | 994,358,403 | 0.25% |
thanks =9
author | stefaniya |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t105122671z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 10:51:21 |
last_update | 2017-08-29 10:51:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 10:51:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 3,024,370,954,799 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,216,717 |
net_rshares | 10,946,139,477 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stefaniya | 0 | 10,946,139,477 | 100% |
Good job. Thank you!
author | team101 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t205036338z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:50:39 |
last_update | 2017-08-28 20:50:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 20:50:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 12,700,047,182,916 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,162,926 |
net_rshares | 0 |
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.
author | thejohalfiles |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t202140564z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1","users":["almost-digital"]} |
created | 2017-08-28 20:21:39 |
last_update | 2017-08-28 20:22:00 |
depth | 1 |
children | 4 |
last_payout | 2017-09-04 20:21:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 159 |
author_reputation | 10,452,104,581,740 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,160,749 |
net_rshares | -11,468,466,361,704 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teamsteem | 0 | 184,214,310,235 | 1% | ||
fulltimegeek | 0 | -11,731,223,096,252 | -100% | ||
ackza | 0 | 6,535,591,492 | 19% | ||
destinysaid | 0 | 0 | 0% | ||
almost-digital | 0 | 72,006,832,821 | 42% |
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!
author | ackza |
---|---|
permlink | re-thejohalfiles-re-almost-digital-creating-accounts-with-dsteem-0-6-20170901t233251008z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["zappl"],"app":"steemit/0.1"} |
created | 2017-09-01 23:32:51 |
last_update | 2017-09-01 23:32:51 |
depth | 2 |
children | 0 |
last_payout | 2017-09-08 23:32:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,893 |
author_reputation | 288,199,488,139,374 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,598,034 |
net_rshares | 0 |
Thanks! Yeah, easier for developers to make tools to make new accounts at any rate :)
author | almost-digital |
---|---|
permlink | re-thejohalfiles-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t204846826z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 20:48:45 |
last_update | 2017-08-28 20:48:45 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 20:48:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 13.825 HBD |
curator_payout_value | 4.606 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 12,829,718,661,429 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,162,777 |
net_rshares | 5,105,358,094,635 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thejohalfiles | 0 | 5,089,187,149,800 | 11% | ||
daudimitch | 0 | 8,301,670,185 | 100% | ||
magicstone1412 | 0 | 6,929,163,996 | 100% | ||
sou1iane | 0 | 940,110,654 | 100% |
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.
author | gtg |
---|---|
permlink | re-thejohalfiles-re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t203738040z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["almost-digital"],"app":"steemit/0.1"} |
created | 2017-08-28 20:37:36 |
last_update | 2017-08-28 20:37:36 |
depth | 2 |
children | 0 |
last_payout | 2017-09-04 20:37:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.209 HBD |
curator_payout_value | 0.558 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 457 |
author_reputation | 461,829,867,647,270 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,161,917 |
net_rshares | 767,178,923,093 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teamsteem | 0 | 184,214,310,235 | 1% | ||
thejohalfiles | 0 | 508,918,714,980 | 1% | ||
almost-digital | 0 | 72,954,291,148 | 42% | ||
sebako | 0 | 1,091,606,730 | 100% |
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.
author | johnnyray |
---|---|
permlink | re-thejohalfiles-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t215751945z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 21:57:54 |
last_update | 2017-08-29 21:57:54 |
depth | 2 |
children | 0 |
last_payout | 2017-09-05 21:57:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 163 |
author_reputation | 2,330,185,599,758 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,276,222 |
net_rshares | 0 |
This is great! Very Interesting! I hope to see more improvements in the future..Very well done.. thanks!
author | thoots |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t061547407z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 06:16:15 |
last_update | 2017-08-30 06:16:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-06 06:16:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 96,209,779,947 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,308,285 |
net_rshares | 0 |
nice great post thank you for your effort
author | tisko |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20171106t201011156z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-11-06 20:09:12 |
last_update | 2017-11-06 20:09:12 |
depth | 1 |
children | 0 |
last_payout | 2017-11-13 20:09:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 14,973,232,579,109 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,635,266 |
net_rshares | 0 |
Great Post :)
author | tmoz |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t221506073z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 22:15:06 |
last_update | 2017-08-29 22:15:06 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 22:15:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 2,988,114,707 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,277,495 |
net_rshares | 0 |
Gracias, esta versiΓ³n estΓ‘ bastante estable. Saludos!!
author | tylerdourden | ||||||
---|---|---|---|---|---|---|---|
permlink | re-almost-digital-2017828t16258675z | ||||||
category | steemdev | ||||||
json_metadata | {"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-28 21:03:06 | ||||||
last_update | 2017-08-28 21:03:06 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-04 21:03:06 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 54 | ||||||
author_reputation | 623,681,468,859 | ||||||
root_title | "Creating accounts with dsteem 0.6" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,163,900 | ||||||
net_rshares | 0 |
i will try it , nice
author | veryvowanda |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170830t004128250z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-30 00:42:00 |
last_update | 2017-08-30 00:42:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-06 00:42:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 0 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,286,888 |
net_rshares | 0 |
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
author | wahyue |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t114637548z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["almost-digital"],"links":["https://steemit.com/cryptocurrency/@wahyue/review-of-the-scam-webdengi"],"app":"steemit/0.1"} |
created | 2017-08-29 11:46:42 |
last_update | 2017-08-29 11:46:42 |
depth | 1 |
children | 1 |
last_payout | 2017-09-05 11:46:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 221 |
author_reputation | 53,157,047,517 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,220,825 |
net_rshares | -553,285,534 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smirks | 0 | -553,285,534 | -100% |
#spam
author | smirks |
---|---|
permlink | re-wahyue-re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t162023670z |
category | steemdev |
json_metadata | {"tags":["spam","steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 16:20:24 |
last_update | 2017-08-29 16:20:24 |
depth | 2 |
children | 0 |
last_payout | 2017-09-05 16:20:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 5,168,581,725 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,245,983 |
net_rshares | 0 |
# Interesting. I should usually read it again
author | yagoub |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t195331618z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 19:53:33 |
last_update | 2017-08-28 19:53:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 19:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 13,373,671,102,325 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,158,445 |
net_rshares | 0 |
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.
author | yogafitness |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t175605065z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"busy/1.0.0"} |
created | 2017-08-29 17:56:06 |
last_update | 2017-08-29 17:56:06 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 17:56:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 345 |
author_reputation | -31,918,439,208 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,254,831 |
net_rshares | -11,080,656,730 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edje | 0 | -11,080,656,730 | -10% |
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.
author | yogafitness |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t180057295z |
category | steemdev |
json_metadata | {"tags":["steemitabuse-appeals","steemdev"],"links":["https://steemit.com/@cheetah","https://busy.org/@cheetah"],"app":"steemit/0.1"} |
created | 2017-08-29 18:01:00 |
last_update | 2017-08-29 18:01:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 18:01:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 345 |
author_reputation | -31,918,439,208 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,255,310 |
net_rshares | -10,428,853,393 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edje | 0 | -10,428,853,393 | -10% |
A place more beautiful than my dear brother
author | youssif20 |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170828t210321566z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-28 21:03:21 |
last_update | 2017-08-28 21:03:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 21:03:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 11,974,212,365 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,163,931 |
net_rshares | 632,540,123 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghost0307 | 0 | 632,540,123 | 100% |
is post private key different from the master key?
author | yummyinmytummy |
---|---|
permlink | re-almost-digital-creating-accounts-with-dsteem-0-6-20170829t074814092z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-08-29 07:48:00 |
last_update | 2017-08-29 07:48:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-05 07:48:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 7,942,217,795 |
root_title | "Creating accounts with dsteem 0.6" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,204,469 |
net_rshares | 0 |