EOS - Developer’s Log Stardate 20176.30 by dan

View this thread on steempeak.com
· @dan ·
EOS - Developer’s Log Stardate 20176.30
<div class="pull-right">

![](https://steemitimages.com/DQmeb1bXje2aQcnBhUwuV4ZY3xS1uNio3TedqabCLqFvMTU/image.png)
</div>

This week block.one’s blockchain c++ development team has picked up 4 new members and has been interviewing a few more. The new recruits have already begun making contributions to the code.
 
## Removing Registered Message Schemas
 
With the move to WebAssembly (WASM) we have had to re-evaluate some of our earlier design decisions based on the assumption of using Wren.  Because WASM is language independent, every application would have to provide different WASM for parsing the messages passed to the application. This means the ABI (application binary interface) is technically defined by the WASM parsing and not our prior builtin registered message types and formats. 
 
Since the blockchain is unable to enforce the message schemas and every contract would have to independently parse and validate the incoming binary data, we opted to remove the blockchain defined message schemas.  This gives more power to application developers.
 
## Changing Account Name Structure
One of the bigger [changes to the code](https://github.com/EOSIO/eos/issues/56)  this week was changing account names from 256 bit strings to 60 bit integers that convert to human-readable names via base32 encoding.  This limits the account names to 12 lowercase letters and a few numbers. The average Twitter account is only 12 characters long.
 
This change was made primarily out of bandwidth, memory, and performance considerations. From an applications logic perspective an account name is simply a unique identifier and they are used everywhere. The old ABI would serialize these account names as length-prefixed strings and require a computationally intensive unpacking process.  
 
By moving to a fixed-width integer representation for accounts we got performance, but the developer experience was less friendly. To resolve this we simply print the integers as base32 and this gives human-readable names.
 
Longer names can still be supported by registering them with a name service contract. 

A typical transfer message is 75% smaller after this change, which makes a big difference when you are processing 10's of thousands of them per second.
 
## Filtering Floating point from WASM
We updated the WASM processing to detect and reject code that uses floating point operations which can generate non-deterministic behavior. 
 
## Sandboxing WASM Runtime
We made significant progress toward injecting checkpoints into WASM to allow us to check the runtime and abort if too much time has passed.  This is a critical component of running untrusted code.
 
## New C++ Simplecoin  (80,000 TPS)
 
In one of my [prior updates I showed a proof-of-concept currency smart contract written in C](https://steemit.com/eos/@dantheman/web-assembly-on-eos-50-000-transfers-per-second) and achieving 50K transactions per second. I mentioned that I thought we could clean up the syntax and today I am happy to show a new implementation of the simplecoin in C++ that gets compiled to WASM and then executed.   Using a tight loop of generating and pushing transactions to the blockchain we achieved 80K TPS transferring funds from one account to another in a single thread.  
 
***Real world performance may be higher or lower based upon the evolving architecture, it is still too early to tell.  All measurements were made on a 4Ghz Intel Core i7 in a 2014 iMac.***
 
```
struct Transfer {
  uint64_t    from;
  uint64_t    to;
  uint64_t    amount;
  char        memo[];
};
 
static_assert( sizeof(Transfer) == 3*sizeof(uint64_t), "unexpected padding" );
 
struct Balance {  uint64_t    balance; };
 
void on_init() {
  static Balance initial = { 1000*1000 };
  static AccountName simplecoin;
  simplecoin = name_to_int64( "simplecoin" );
 
  store( simplecoin, initial ); 
}
 
void apply_simplecoin_transfer() {
   static Transfer message;
   static Balance from_balance;
   static Balance to_balance;
   to_balance.balance = 0;
 
   readMessage( message  );
   load( message.from, from_balance );
   load( message.to, to_balance );
 
   assert( from_balance.balance >= message.amount, "insufficient funds" );
   
   from_balance.balance -= message.amount;
   to_balance.balance   += message.amount;
   
   if( from_balance.balance )
      store( message.from, from_balance );
   else
      remove( message.from );
 
   store( message.to, to_balance );
}
```
 
Not only is the code cleaner and easier to read, the generated WASM code is much smaller too.  Most of this time and space savings is made possible by changing the account name and ABI for this contract.  In this case the ABI uses a zero-parse copy from the database to the c++ struct and all account names are fixed length.
 
You can experiment with this code on WasmFiddle with this [shared link](https://wasdk.github.io/WasmFiddle/?11oykv).
 
## Conclusion
 
The EOS development team is growing and the technology is progressing with all signs pointing toward a very high-performance platform even running in a single thread.  Stay tuned for more updates!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 715 others
👎  , , , , , , ,
properties (23)
post_id5,711,204
authordan
permlinkeos-developer-s-log-stardate-20176-30
categoryeos
json_metadata"{"app": "steemit/0.1", "format": "markdown", "links": ["https://github.com/EOSIO/eos/issues/56", "https://steemit.com/eos/@dantheman/web-assembly-on-eos-50-000-transfers-per-second", "https://wasdk.github.io/WasmFiddle/?11oykv"], "image": ["https://steemitimages.com/DQmeb1bXje2aQcnBhUwuV4ZY3xS1uNio3TedqabCLqFvMTU/image.png"], "tags": ["eos", "webassembly", "developerlog"]}"
created2017-06-30 21:19:27
last_update2017-06-30 21:19:27
depth0
children238
net_rshares269,248,275,286,736
last_payout2017-07-07 21:19:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5,114
author_reputation99,235,409,613,209
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout0.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (787)
@luigi-tecnologo ·
$0.51
Tried the example. "Build" and then "run", I get:

```
line 3: Uncaught TypeError: wasmInstance.exports.main is not a function
```

is supposed to output something?
👍  , , , , ,
properties (23)
post_id5,711,756
authorluigi-tecnologo
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t212548386z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:25:48
last_update2017-06-30 21:25:48
depth1
children1
net_rshares60,765,344,891
last_payout2017-07-07 21:25:48
cashout_time1969-12-31 23:59:59
total_payout_value0.440 SBD
curator_payout_value0.072 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length164
author_reputation27,192,206,173,573
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (6)
@dan ·
$0.42
no, you have to save the WASM and run it on the blockchain.
👍  , , , ,
properties (23)
post_id5,711,855
authordan
permlinkre-luigi-tecnologo-re-dan-eos-developer-s-log-stardate-20176-30-20170630t212657408z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:26:57
last_update2017-06-30 21:26:57
depth2
children0
net_rshares49,894,058,059
last_payout2017-07-07 21:26:57
cashout_time1969-12-31 23:59:59
total_payout_value0.344 SBD
curator_payout_value0.076 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length59
author_reputation99,235,409,613,209
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@lexiconical ·
*"A typical transfer message is 75% smaller after this change, which makes a big difference when you are processing 10's of thousands of them per second."*

Mmmm, efficiency.
👍  
properties (23)
post_id5,711,908
authorlexiconical
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t212735242z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:27:42
last_update2017-06-30 21:27:42
depth1
children0
net_rshares243,748,540
last_payout2017-07-07 21:27:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length174
author_reputation182,903,586,801,459
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@official-bitbean ·
$0.27
Just out of curiosity, where does all that money go if you decline a payout?
👍  , , ,
properties (23)
post_id5,711,932
authorofficial-bitbean
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t212757404z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:27:57
last_update2017-06-30 21:27:57
depth1
children5
net_rshares31,669,267,501
last_payout2017-07-07 21:27:57
cashout_time1969-12-31 23:59:59
total_payout_value0.238 SBD
curator_payout_value0.027 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length76
author_reputation46,297,288,412
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@dan ·
$0.40
it is as if I never made the post.
👍  , , ,
properties (23)
post_id5,712,024
authordan
permlinkre-official-bitbean-re-dan-eos-developer-s-log-stardate-20176-30-20170630t212905324z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:29:03
last_update2017-06-30 21:29:03
depth2
children4
net_rshares47,278,235,734
last_payout2017-07-07 21:29:03
cashout_time1969-12-31 23:59:59
total_payout_value0.330 SBD
curator_payout_value0.069 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length34
author_reputation99,235,409,613,209
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@official-bitbean ·
$0.18
I mean like does it circulate to the curators of the post , does it help boost the steem economy in other ways, aside from a well written post of course?  I was just curious.
👍  ,
properties (23)
post_id5,712,312
authorofficial-bitbean
permlinkre-dan-re-official-bitbean-re-dan-eos-developer-s-log-stardate-20176-30-20170630t213235759z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:32:36
last_update2017-06-30 21:32:36
depth3
children3
net_rshares22,064,354,217
last_payout2017-07-07 21:32:36
cashout_time1969-12-31 23:59:59
total_payout_value0.142 SBD
curator_payout_value0.041 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length174
author_reputation46,297,288,412
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@joe007 ·
Thank you
👍  
properties (23)
post_id5,711,990
authorjoe007
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t212838228z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:28:42
last_update2017-06-30 21:28:42
depth1
children0
net_rshares237,945,003
last_payout2017-07-07 21:28:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation1,177,907,294,060
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@steemian69 ·
Goos job @dan
👍  
properties (23)
post_id5,712,040
authorsteemian69
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t212910971z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-06-30 21:29:18
last_update2017-06-30 21:29:18
depth1
children0
net_rshares232,141,466
last_payout2017-07-07 21:29:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length13
author_reputation1,159,963,822,467
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@hms818 · (edited)
$7.64
Achieving 80K Transactions Per Second would be truly incredible,  i guess EOS will be the fastest among all crypto-currencies. Congratulations and warm welcome to all the new EOS developers .
👍  , , , , , , , , , , , , , , ,
properties (23)
post_id5,712,057
authorhms818
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t212929113z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:29:27
last_update2017-06-30 21:30:36
depth1
children6
net_rshares902,957,103,493
last_payout2017-07-07 21:29:27
cashout_time1969-12-31 23:59:59
total_payout_value6.000 SBD
curator_payout_value1.642 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length191
author_reputation11,510,948,505,908
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (16)
@dumponwallstreet ·
$0.02
If they can pull it off, it will be the fastest without a doubt, c++ and "c" are machine level coding languages basically, the closer you get to machine level, faster the data transmission because gpu's are hardware so no need for conversion after a hash hack. I truly applaud them on trying.
👍  , ,
properties (23)
post_id5,728,512
authordumponwallstreet
permlinkre-hms818-re-dan-eos-developer-s-log-stardate-20176-30-20170701t011317057z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 01:13:21
last_update2017-07-01 01:13:21
depth2
children1
net_rshares3,123,087,416
last_payout2017-07-08 01:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.020 SBD
curator_payout_value0.003 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length292
author_reputation14,307,229,891
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@roccofalcone ·
$0.23
Don't know man. With today's operating systems, you really never code at hardware / machine level anymore. Back in the DOS / Win 3.1 era you could make a C program talk directly with the parallel port. 
 When newer OS arrived, those same programs would crash as they no longer had permission to talk directly with the hardware, needing to go through the OS API instead. There is always some layers.  Unless you are making your own OS or using some tough guy Linux distro.
👍  , ,
properties (23)
post_id5,839,041
authorroccofalcone
permlinkre-dumponwallstreet-re-hms818-re-dan-eos-developer-s-log-stardate-20176-30-20170702t011648200z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 01:16:48
last_update2017-07-02 01:16:48
depth3
children0
net_rshares27,641,771,410
last_payout2017-07-09 01:16:48
cashout_time1969-12-31 23:59:59
total_payout_value0.178 SBD
curator_payout_value0.048 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length471
author_reputation-1,066,050,498,984
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@cryptoinvestor ·
$1.02
Bitshares already does 100k transactions per second.
👍  ,
properties (23)
post_id5,787,067
authorcryptoinvestor
permlinkre-hms818-re-dan-eos-developer-s-log-stardate-20176-30-20170701t145008532z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 14:50:09
last_update2017-07-01 14:50:09
depth2
children0
net_rshares121,420,838,024
last_payout2017-07-08 14:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.764 SBD
curator_payout_value0.251 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length52
author_reputation2,479,958,677,629
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@fuckmylife · (edited)
Is the 100K per second what they are saying they will achieve or has this technology already been put in place ? I heard some people quoting 1 million per second
properties (22)
post_id5,843,051
authorfuckmylife
permlinkre-hms818-re-dan-eos-developer-s-log-stardate-20176-30-20170702t022647117z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 02:26:48
last_update2017-07-02 02:30:03
depth2
children0
net_rshares0
last_payout2017-07-09 02:26:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length161
author_reputation6,165,950,018,614
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@liondani ·
$0.88
For now enjoy bitshares and steem.  Still the fastest in crypto land.
👍  ,
properties (23)
post_id5,927,135
authorliondani
permlinkre-hms818-re-dan-eos-developer-s-log-stardate-20176-30-20170702t200333454z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 20:03:39
last_update2017-07-02 20:03:39
depth2
children0
net_rshares120,442,749,942
last_payout2017-07-09 20:03:39
cashout_time1969-12-31 23:59:59
total_payout_value0.659 SBD
curator_payout_value0.216 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length69
author_reputation91,903,771,336,326
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@racolini ·
This could easily become the best crypto currency to be ever made if everything succeeded. 80,000 tx per second is going to be incredible. Looking forward to it's development.
properties (22)
post_id5,941,040
authorracolini
permlinkre-hms818-re-dan-eos-developer-s-log-stardate-20176-30-20170702t225845951z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 22:58:45
last_update2017-07-02 22:58:45
depth2
children0
net_rshares0
last_payout2017-07-09 22:58:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length175
author_reputation-2,015,786,092
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@vulturestkn ·
Wow alot of great information In this article 
Keep up the hard
👍  
properties (23)
post_id5,712,113
authorvulturestkn
permlinkre-dan-2017630t143011917z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-06-30 21:30:15
last_update2017-06-30 21:30:15
depth1
children0
net_rshares232,141,466
last_payout2017-07-07 21:30:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation73,001,760,450
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@treeleaves · (edited)
$0.04
awesome stuff, 

I wish to thank you personally for voting for me this past year.  Steem was very fun in the beginning, when most people recognized each other.  And now it is a little easier to get followers.  The middle time had my best unrewarded work, however.

dan, its actually dantheman the upvoted me a while back, but whatever.  Hoping you see this before everything comes in.
👍  ,
properties (23)
post_id5,712,140
authortreeleaves
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t213034229z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:30:33
last_update2017-06-30 21:31:42
depth1
children0
net_rshares4,387,521,945
last_payout2017-07-07 21:30:33
cashout_time1969-12-31 23:59:59
total_payout_value0.036 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length384
author_reputation3,841,001,214,129
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@yanyzx ·
That code is really easy to understand c:
👍  
properties (23)
post_id5,712,186
authoryanyzx
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t223939055z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:31:00
last_update2017-06-30 21:31:00
depth1
children0
net_rshares777,661,340
last_payout2017-07-07 21:31:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length41
author_reputation9,380,418,666
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@connecteconomy ·
I don't understand any of the code :) but I am keenly following this project! And from a girl's perspective (ahem..), EOS has the most beautiful logo of them all! 
Of course I won't base my investment decision on that alone :) but still, it needs to be said! :)
properties (22)
post_id5,712,271
authorconnecteconomy
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t213205757z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:32:06
last_update2017-06-30 21:32:06
depth1
children0
net_rshares0
last_payout2017-07-07 21:32:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length261
author_reputation162,596,469,388,148
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dealfinder ·
Looking forward to EOS :)    My understanding is the ICO is coming soon very soon :)
properties (22)
post_id5,712,311
authordealfinder
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t213226128z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:32:36
last_update2017-06-30 21:32:36
depth1
children0
net_rshares0
last_payout2017-07-07 21:32:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length84
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ronmamita ·
@dan What happened to the $2,567.42 payout declined?
I'm a newb so please explain what happened to that whopping payout.
properties (22)
post_id5,712,440
authorronmamita
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t213413962z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-06-30 21:34:12
last_update2017-06-30 21:34:12
depth1
children3
net_rshares0
last_payout2017-07-07 21:34:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length120
author_reputation770,312,005,797
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dan ·
$0.05
I declined to accept rewards, the payout goes to no one.
👍  
properties (23)
post_id5,712,518
authordan
permlinkre-ronmamita-re-dan-eos-developer-s-log-stardate-20176-30-20170630t213457070z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:34:57
last_update2017-06-30 21:34:57
depth2
children1
net_rshares6,332,728,705
last_payout2017-07-07 21:34:57
cashout_time1969-12-31 23:59:59
total_payout_value0.052 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length56
author_reputation99,235,409,613,209
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@ronmamita ·
$0.04
@dan what precisely happens to the upvotes then?
👍  
properties (23)
post_id5,712,955
authorronmamita
permlinkre-dan-re-ronmamita-re-dan-eos-developer-s-log-stardate-20176-30-20170630t213958497z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-06-30 21:39:57
last_update2017-06-30 21:39:57
depth3
children0
net_rshares4,684,417,538
last_payout2017-07-07 21:39:57
cashout_time1969-12-31 23:59:59
total_payout_value0.028 SBD
curator_payout_value0.009 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length48
author_reputation770,312,005,797
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@behamot ·
would be nice if the money could be used for a good cause/charity instead.
properties (22)
post_id5,945,929
authorbehamot
permlinkre-ronmamita-re-dan-eos-developer-s-log-stardate-20176-30-20170703t001438725z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 00:14:39
last_update2017-07-03 00:14:39
depth2
children0
net_rshares0
last_payout2017-07-10 00:14:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length74
author_reputation86,209,585,215
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@charles1 · (edited)
$0.12
This is a good development, thanks a lot to you and your team. Following you and thus will certainly stay tuned  for more updates. Team is great beacuse of you and your team working behind the scene to add value to the platform.
I wish you and your team more success.


Dont forget to check out my post for a link to collect free crypto..a once in a life time opportunity
👍  , , , ,
properties (23)
post_id5,712,735
authorcharles1
permlinkre-dan-eos-developer-s-log-stardate-20176-30-2017630t233720991z
categoryeos
json_metadata"{"tags": ["eos"], "format": "markdown+html", "app": "steemit/0.1"}"
created2017-06-30 21:37:27
last_update2017-06-30 21:44:09
depth1
children0
net_rshares17,058,424,050
last_payout2017-07-07 21:37:27
cashout_time1969-12-31 23:59:59
total_payout_value0.122 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length371
author_reputation73,564,225,445,964
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@daadog ·
Very nice, did you participate in the ICO ?
properties (22)
post_id5,713,306
authordaadog
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t214402827z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:44:03
last_update2017-06-30 21:44:03
depth1
children0
net_rshares0
last_payout2017-07-07 21:44:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation87,543,160,636
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@johnlim17 ·
Oh no . What is this ? 
You can show me  the real  what you post? 
Thank for your information. I will see this in the future. Thanks
properties (22)
post_id5,713,317
authorjohnlim17
permlinkre-dan-201771t44331186z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-06-30 21:44:12
last_update2017-06-30 21:44:12
depth1
children0
net_rshares0
last_payout2017-07-07 21:44:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length132
author_reputation235,625,463,700
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wekkel ·
This is too difficult to grasp for me but great to hear that code is being improved and problems are being solved. Let's bring it on with EOS.
properties (22)
post_id5,713,464
authorwekkel
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t214557175z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:45:57
last_update2017-06-30 21:45:57
depth1
children0
net_rshares0
last_payout2017-07-07 21:45:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length142
author_reputation794,328,234,724
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rubenalexander ·
$14.89
Thanks for using <a href="https://steemit.com/eos/@rubenalexander/fractals-introduction-to-chaotica-7-new-logos-for-eos-steemit-bitshares-bitcoin-28-total">my image</a>. : )

Nice to see these notes and a EOS POC.
👍  , , , , , ,
properties (23)
post_id5,713,496
authorrubenalexander
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t214618492z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/eos/@rubenalexander/fractals-introduction-to-chaotica-7-new-logos-for-eos-steemit-bitshares-bitcoin-28-total"], "tags": ["eos"]}"
created2017-06-30 21:46:18
last_update2017-06-30 21:46:18
depth1
children2
net_rshares1,758,687,075,198
last_payout2017-07-07 21:46:18
cashout_time1969-12-31 23:59:59
total_payout_value11.170 SBD
curator_payout_value3.717 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length213
author_reputation87,319,474,038,977
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (7)
@anyway ·
Good job.
👍  ,
properties (23)
post_id6,284,978
authoranyway
permlinkre-rubenalexander-re-dan-eos-developer-s-log-stardate-20176-30-20170706t011855850z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-06 01:18:54
last_update2017-07-06 01:18:54
depth2
children0
net_rshares1,129,624,339
last_payout2017-07-13 01:18:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation319,480,565,467
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@funny-videos ·
Nice post! What will happening, if someone resteem your post?
👍  
properties (23)
post_id18,924,641
authorfunny-videos
permlinkre-rubenalexander-re-dan-eos-developer-s-log-stardate-20176-30-20171128t120706602z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-11-28 12:07:06
last_update2017-11-28 12:07:06
depth2
children0
net_rshares52,224,330
last_payout2017-12-05 12:07:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length61
author_reputation-19,103,419,432
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@markjeffrey · (edited)
$8.69
My understanding of how EOS achieves massive transaction speed / scalability is that it delegates block production to a single actor for each block.  How is block forgery NOT possibly a problem?  I've read the explanations and it's somehow 'the longest chain wins' like Bitcoin ... but I don't see how that actually applies in a 'one actor per block' scheme?  One actor just forges, block is hashed, boom, done: nobody the wiser. Hope my question makes sense :) and I'd love to know the answer!  Big fan of EOS in all other ways than this lingering doubt.
👍  , , , , , , , , , , , , , , , , , ,
properties (23)
post_id5,714,084
authormarkjeffrey
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t215221201z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:52:21
last_update2017-06-30 21:53:15
depth1
children10
net_rshares1,026,872,287,541
last_payout2017-07-07 21:52:21
cashout_time1969-12-31 23:59:59
total_payout_value6.658 SBD
curator_payout_value2.027 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length555
author_reputation16,259,646,938
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (19)
@dan ·
$7.45
Bitcoin works same way, one actor per block.  Bitcoin uses hash and pow for signature which can be forged by anyone willing to spend as much pow, DPOS uses private key signatures which cannot be forged without hacking an account.
👍  , , , , , , , , , , , , , , , , , ,
properties (23)
post_id5,714,880
authordan
permlinkre-markjeffrey-re-dan-eos-developer-s-log-stardate-20176-30-20170630t220122593z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 22:01:21
last_update2017-06-30 22:01:21
depth2
children6
net_rshares880,369,822,385
last_payout2017-07-07 22:01:21
cashout_time1969-12-31 23:59:59
total_payout_value5.598 SBD
curator_payout_value1.849 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length229
author_reputation99,235,409,613,209
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (19)
@farhanali ·
$0.02
That's great informative comment.
👍  , ,
properties (23)
post_id5,754,993
authorfarhanali
permlinkre-dan-re-markjeffrey-re-dan-eos-developer-s-log-stardate-20176-30-20170701t080230138z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 08:02:30
last_update2017-07-01 08:02:30
depth3
children0
net_rshares2,646,368,983
last_payout2017-07-08 08:02:30
cashout_time1969-12-31 23:59:59
total_payout_value0.018 SBD
curator_payout_value0.003 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length33
author_reputation17,069,555,901,365
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@lqss64 ·
I'm glad to hear that with the increase in technology and performance, the safety is even more important.
👍  
properties (23)
post_id5,789,724
authorlqss64
permlinkre-dan-re-markjeffrey-re-dan-eos-developer-s-log-stardate-20176-30-20170701t151719651z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 15:17:18
last_update2017-07-01 15:17:18
depth3
children0
net_rshares1,160,687,473
last_payout2017-07-08 15:17:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length105
author_reputation4,774,071,168,640
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@fuckmylife · (edited)
So with all these layers of security it is still not safe from the threat of a hacker ? Now I totally feel safe with the $20,000 I just put into this project :(
👍  
properties (23)
post_id5,842,974
authorfuckmylife
permlinkre-dan-re-markjeffrey-re-dan-eos-developer-s-log-stardate-20176-30-20170702t022519687z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 02:25:21
last_update2017-07-02 02:25:54
depth3
children2
net_rshares2,258,967,869
last_payout2017-07-09 02:25:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length160
author_reputation6,165,950,018,614
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@rajag234 ·
dan why  this Payout decline of ur post?
properties (22)
post_id5,860,197
authorrajag234
permlinkre-dan-re-markjeffrey-re-dan-eos-developer-s-log-stardate-20176-30-20170702t072416524z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 07:24:27
last_update2017-07-02 07:24:27
depth3
children0
net_rshares0
last_payout2017-07-09 07:24:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length40
author_reputation1,895,735,652,406
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hirennamera ·
In an era of permissioned blockchains gaining favor with financial institutions over decentralized, freely trading cryptocurrencies like Bitcoin, Ethereum, or Ripple, Safe Cash is one of the first blockchains to be commercially viable that can meet the transaction processing speed and throughput requirements of today's market. Safe Cash employs instant settlement in under five seconds, improved security, and controlled consensus that does not rely on miners or any intermediary coin that must be purchased. It allows banks to wean themselves off the high-priced, inefficient SWIFT network that can take days to transfer money. Banks can have their own "white label" blockchain that they control and manage. Inter-bank settlement can be achieved with multi-currency wallets, a separate bank settlement blockchain, or a combination thereof, depending on bank requirements and legal compliance.
👍  ,
properties (23)
post_id5,775,830
authorhirennamera
permlinkre-markjeffrey-re-dan-eos-developer-s-log-stardate-20176-30-20170701t124902793z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 12:49:12
last_update2017-07-01 12:49:12
depth2
children0
net_rshares667,397,202
last_payout2017-07-08 12:49:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length895
author_reputation1,642,689,781,401
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mouradsayed ·
properties (23)
post_id5,828,163
authormouradsayed
permlinkre-markjeffrey-re-dan-eos-developer-s-log-stardate-20176-30-20170701t223116432z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 22:31:42
last_update2017-07-01 22:31:42
depth2
children0
net_rshares2,153,075,473
last_payout2017-07-08 22:31:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length3
author_reputation2,314,432,101
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@uneducated ·
I CAN'T STOP SAYING ABOUT THIS FILMS _ _ _YOU SHOULD WATCH THEM_ _ _BEST ON YOUTUBE
I WANT THIS FILM BE POPULAR. DON'T LOWER ME CARMA. ONLY WATCH on YOUTUBE.
https://steemit.com/neill/@uneducated/new-best-films-on-youtube-firebase-and-rakka-donate-them-if-you-like![25-reasons-why-you-should-come-to-america-020111-33-728.jpg](https://steemitimages.com/DQmZ6WU2Zi9NNR66aVe2hBru4vhJfBNkyeNywbPUuZxKDBZ/25-reasons-why-you-should-come-to-america-020111-33-728.jpg)
👎  , , , ,
properties (23)
post_id5,904,515
authoruneducated
permlinkre-markjeffrey-re-dan-eos-developer-s-log-stardate-20176-30-20170702t161109001z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/neill/@uneducated/new-best-films-on-youtube-firebase-and-rakka-donate-them-if-you-like"], "image": ["https://steemitimages.com/DQmZ6WU2Zi9NNR66aVe2hBru4vhJfBNkyeNywbPUuZxKDBZ/25-reasons-why-you-should-come-to-america-020111-33-728.jpg"], "tags": ["eos"]}"
created2017-07-02 16:13:09
last_update2017-07-02 16:13:09
depth2
children0
net_rshares-173,075,955,763,381
last_payout2017-07-09 16:13:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length461
author_reputation-2,664,130,874,305
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@johnsmith ·
$6.25
This is going to be interesting. Very interesting - hope you keep up the log over the next 12 months and look forward to reading your updates!
👍  , , , , ,
properties (23)
post_id5,714,261
authorjohnsmith
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t215413312z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 21:54:12
last_update2017-06-30 21:54:12
depth1
children1
net_rshares738,771,956,137
last_payout2017-07-07 21:54:12
cashout_time1969-12-31 23:59:59
total_payout_value6.238 SBD
curator_payout_value0.009 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length142
author_reputation22,733,518,989,206
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (6)
@fuckmylife ·
Me too hopefully there is a positive result some where along the lines of bitshares. Just bought 50 ether work and hoping for the best
properties (22)
post_id5,843,103
authorfuckmylife
permlinkre-johnsmith-re-dan-eos-developer-s-log-stardate-20176-30-20170702t022743581z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 02:27:45
last_update2017-07-02 02:27:45
depth2
children0
net_rshares0
last_payout2017-07-09 02:27:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length134
author_reputation6,165,950,018,614
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bluesky2100 ·
$0.35
EOS will be big in next 12-24 months!
👍  , , ,
properties (23)
post_id5,715,336
authorbluesky2100
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t220627410z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 22:06:27
last_update2017-06-30 22:06:27
depth1
children1
net_rshares41,666,578,218
last_payout2017-07-07 22:06:27
cashout_time1969-12-31 23:59:59
total_payout_value0.352 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length37
author_reputation39,506,328,139
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@roccofalcone ·
$0.03
Hope so, bought 1 EOS at Kraken, around 50K satoshi. May get some more as time goes on.
👍  ,
properties (23)
post_id5,839,133
authorroccofalcone
permlinkre-bluesky2100-re-dan-eos-developer-s-log-stardate-20176-30-20170702t011816862z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 01:18:18
last_update2017-07-02 01:18:18
depth2
children0
net_rshares3,286,588,243
last_payout2017-07-09 01:18:18
cashout_time1969-12-31 23:59:59
total_payout_value0.024 SBD
curator_payout_value0.001 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length87
author_reputation-1,066,050,498,984
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@indepthstory ·
why is your $$$ count scratched?
properties (22)
post_id5,715,338
authorindepthstory
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t220627552z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 22:06:27
last_update2017-06-30 22:06:27
depth1
children2
net_rshares0
last_payout2017-07-07 22:06:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length32
author_reputation1,490,504,643,386
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@stellabelle ·
because dan really doesn't need the money. he declined payout on this.
properties (22)
post_id5,735,080
authorstellabelle
permlinkre-indepthstory-re-dan-eos-developer-s-log-stardate-20176-30-20170701t024943140z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 02:49:42
last_update2017-07-01 02:49:42
depth2
children1
net_rshares0
last_payout2017-07-08 02:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length70
author_reputation436,515,832,240,166
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@indepthstory ·
wow   txs for the note
properties (22)
post_id5,785,638
authorindepthstory
permlinkre-stellabelle-re-indepthstory-re-dan-eos-developer-s-log-stardate-20176-30-20170701t143617366z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 14:36:18
last_update2017-07-01 14:36:18
depth3
children0
net_rshares0
last_payout2017-07-08 14:36:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length22
author_reputation1,490,504,643,386
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@omar171 ·
Thanks you @dan for keeping us informed
properties (22)
post_id5,715,430
authoromar171
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t220738465z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-06-30 22:07:39
last_update2017-06-30 22:07:39
depth1
children0
net_rshares0
last_payout2017-07-07 22:07:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length39
author_reputation74,511,314,002
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@eric-boucher ·
$2.58
Great update and very good news, what a potent crew in the making. This is awesome! All for one and one for all!!!   Namaste   :)
👍  , , , , ,
properties (23)
post_id5,715,665
authoreric-boucher
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t221020745z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 22:10:27
last_update2017-06-30 22:10:27
depth1
children0
net_rshares304,553,449,101
last_payout2017-07-07 22:10:27
cashout_time1969-12-31 23:59:59
total_payout_value2.572 SBD
curator_payout_value0.003 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length129
author_reputation68,478,707,640,592
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (6)
@cryptomania1 ·
Great information I will definitely look more into EOS.
properties (22)
post_id5,715,909
authorcryptomania1
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t221330287z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 22:13:30
last_update2017-06-30 22:13:30
depth1
children0
net_rshares0
last_payout2017-07-07 22:13:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length55
author_reputation53,429,090,049
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@vodenoff ·
$0.66
![Steem.png](https://steemitimages.com/DQmXsbFaW8RDvAhei31mvYE4oAZQnw1qzRk8yDtNNbVj4uF/Steem.png)
👍  , , , , , , , ,
properties (23)
post_id5,716,833
authorvodenoff
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t222518577z
categoryeos
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmXsbFaW8RDvAhei31mvYE4oAZQnw1qzRk8yDtNNbVj4uF/Steem.png"], "tags": ["eos"]}"
created2017-06-30 22:25:24
last_update2017-06-30 22:25:24
depth1
children6
net_rshares78,616,311,376
last_payout2017-07-07 22:25:24
cashout_time1969-12-31 23:59:59
total_payout_value0.522 SBD
curator_payout_value0.141 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length97
author_reputation192,014,193,863
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (9)
@melvzz ·
Very interesting. Will surely check all your blog
👍  
properties (23)
post_id5,740,564
authormelvzz
permlinkre-vodenoff-re-dan-eos-developer-s-log-stardate-20176-30-20170701t041238993z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 04:13:27
last_update2017-07-01 04:13:27
depth2
children0
net_rshares243,744,598
last_payout2017-07-08 04:13:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length49
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@coinlend ·
$1.32
That's funny :D
👍  ,
properties (23)
post_id5,832,845
authorcoinlend
permlinkre-vodenoff-re-dan-eos-developer-s-log-stardate-20176-30-20170701t233606286z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 23:36:06
last_update2017-07-01 23:36:06
depth2
children1
net_rshares159,601,398,727
last_payout2017-07-08 23:36:06
cashout_time1969-12-31 23:59:59
total_payout_value1.316 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length15
author_reputation2,261,749,195,153
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@vodenoff ·
hehe, thanks :)
properties (22)
post_id5,832,924
authorvodenoff
permlinkre-coinlend-re-vodenoff-re-dan-eos-developer-s-log-stardate-20176-30-20170701t233710080z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 23:37:09
last_update2017-07-01 23:37:09
depth3
children0
net_rshares0
last_payout2017-07-08 23:37:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length15
author_reputation192,014,193,863
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@colloidy ·
nice
properties (22)
post_id5,910,654
authorcolloidy
permlinkre-vodenoff-re-dan-eos-developer-s-log-stardate-20176-30-20170702t171200931z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 17:12:03
last_update2017-07-02 17:12:03
depth2
children0
net_rshares0
last_payout2017-07-09 17:12:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation7,922,986,006
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptowiesiek ·
First I though there will be 'EOS' not 'steemit' but it made me happier anyway :) Have a nice day :)
properties (22)
post_id5,947,753
authorcryptowiesiek
permlinkre-vodenoff-re-dan-eos-developer-s-log-stardate-20176-30-20170703t004343364z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 00:43:42
last_update2017-07-03 00:43:42
depth2
children0
net_rshares0
last_payout2017-07-10 00:43:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length100
author_reputation84,463,031,858
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rexgeorges ·
That was REALLY nice brother!
properties (22)
post_id7,659,633
authorrexgeorges
permlinkre-vodenoff-re-dan-eos-developer-s-log-stardate-20176-30-20170719t213119313z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-19 21:33:12
last_update2017-07-19 21:33:12
depth2
children0
net_rshares0
last_payout2017-07-26 21:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length29
author_reputation5,566,158,327
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@morality ·
why is the payout decline
properties (22)
post_id5,716,915
authormorality
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t222633835z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 22:26:36
last_update2017-06-30 22:26:36
depth1
children0
net_rshares0
last_payout2017-07-07 22:26:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length25
author_reputation174,671,569,352
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hendrix22 ·
This was a great post. I was searching the EOS vigorously yesterday trying to understand it. I'm not a computer wizard so a lot of seems complicated to me but I wish it wasn't. I have a question for you however. How come this post says payment declined and a line through it?
properties (22)
post_id5,717,451
authorhendrix22
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t223416515z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 22:33:57
last_update2017-06-30 22:33:57
depth1
children2
net_rshares0
last_payout2017-07-07 22:33:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length275
author_reputation22,046,179,206,361
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@andybets ·
Hi man, I'm a software developer and it seems complicated to me too at the moment! Some of the whales decide to decline a payout when posting. I guess they feel they have enough Steem, and don't want to take away from the broader distribution to the smaller players.
properties (22)
post_id6,086,449
authorandybets
permlinkre-hendrix22-re-dan-eos-developer-s-log-stardate-20176-30-20170704t062034971z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-04 06:20:33
last_update2017-07-04 06:20:33
depth2
children1
net_rshares0
last_payout2017-07-11 06:20:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length266
author_reputation15,174,385,435,089
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hendrix22 ·
Thanks for replying Andy. I see what you mean now.
properties (22)
post_id6,140,429
authorhendrix22
permlinkre-andybets-re-hendrix22-re-dan-eos-developer-s-log-stardate-20176-30-20170704t164907902z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-04 16:48:45
last_update2017-07-04 16:48:45
depth3
children0
net_rshares0
last_payout2017-07-11 16:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length50
author_reputation22,046,179,206,361
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jimbobbill · (edited)
$0.34
I put 0.5 ETH into the ICO on day 1. Just checked the contract address on Etherscan and with 14 hours left of the initial 5 day period 455,000 Ether have been received. Say another 45,000 ETH is received before the end of the period and the total ETH received is 500,000 I will end up with 400 EOS tokens based on my 0.5 ETH contribution. Is that right? When can they be claimed? At the end of the 5 days or at the end of the entire 300+ day period in which coins are being offered?
https://etherscan.io/address/0xd0a6e6c54dbc68db5db3a091b171a77407ff7ccf
👍  , ,
properties (23)
post_id5,718,162
authorjimbobbill
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t224301689z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://etherscan.io/address/0xd0a6e6c54dbc68db5db3a091b171a77407ff7ccf"], "tags": ["eos"]}"
created2017-06-30 22:43:00
last_update2017-06-30 22:46:39
depth1
children3
net_rshares40,019,189,167
last_payout2017-07-07 22:43:00
cashout_time1969-12-31 23:59:59
total_payout_value0.260 SBD
curator_payout_value0.076 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length554
author_reputation12,981,752,750,498
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@chryspano ·
You will get 200 eos because you participated with 0.5 eth.  (200000000 eos / 500000 eth) * 0.5 eth

You can claim them any time after the end of the 5 days period.
👍  
properties (23)
post_id5,728,184
authorchryspano
permlinkre-jimbobbill-re-dan-eos-developer-s-log-stardate-20176-30-20170701t010839011z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 01:08:45
last_update2017-07-01 01:08:45
depth2
children0
net_rshares226,334,269
last_payout2017-07-08 01:08:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length164
author_reputation1,737,800,828,749
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@revulv ·
The way I understand it is the amount of tokens you received is fixed. The value of a token will of course fluctuate.  

I don't think you need to 'claim' them since etherscan.io already shows them being transfered to you.

https://etherscan.io/address/YOURADDRESS#tokentxns
Replace YOURADDRESS with the address you sent from.

I hope someone will comment if I have this wrong.
properties (22)
post_id5,729,141
authorrevulv
permlinkre-jimbobbill-re-dan-eos-developer-s-log-stardate-20176-30-20170701t012222104z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://etherscan.io/address/YOURADDRESS#tokentxns"], "tags": ["eos"]}"
created2017-07-01 01:22:21
last_update2017-07-01 01:22:21
depth2
children1
net_rshares0
last_payout2017-07-08 01:22:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length377
author_reputation131,152,863,700
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@alimiami ·
Definitely, you will need to **claim your tokens**  as supposed to be transferred to your Ether Address
Instructions to follow are posted in the EOS Token Distribution https://www.eos.io/instructions
👍  
properties (23)
post_id6,343,714
authoralimiami
permlinkre-revulv-re-jimbobbill-re-dan-eos-developer-s-log-stardate-20176-30-20170706t144119468z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://www.eos.io/instructions"], "tags": ["eos"]}"
created2017-07-06 14:41:18
last_update2017-07-06 14:41:18
depth3
children0
net_rshares0
last_payout2017-07-13 14:41:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length199
author_reputation3,170,378,477
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@ugaard ·
Excellent news! Nice to be a frontrow sitter following the program.  Good work!
👍  ,
properties (23)
post_id5,718,725
authorugaard
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t225013618z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 22:50:12
last_update2017-06-30 22:50:12
depth1
children0
net_rshares1,243,849,318
last_payout2017-07-07 22:50:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length79
author_reputation29,361,468,835
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@bbrewer ·
$0.38
It is nice to see great progress being made on the team building and especially the code. Thanks for the update.
👍  ,
properties (23)
post_id5,719,269
authorbbrewer
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t225714896z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-06-30 22:57:21
last_update2017-06-30 22:57:21
depth1
children0
net_rshares44,887,621,692
last_payout2017-07-07 22:57:21
cashout_time1969-12-31 23:59:59
total_payout_value0.376 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length112
author_reputation5,994,842,503,189
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@sdilan ·
Great update @dan! I look foward to the future of EOS!
👍  
properties (23)
post_id5,719,366
authorsdilan
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t225851060z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-06-30 22:58:48
last_update2017-06-30 22:58:48
depth1
children0
net_rshares1,397,804,387
last_payout2017-07-07 22:58:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length54
author_reputation126,538,366,041
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@freshstuff ·
Amazing !!future is here ,only we need wait a little bit, great to know that team is collecting and growing , I know here is huge potential . Thank.y ou for the article ,good news.
👍  
properties (23)
post_id5,721,949
authorfreshstuff
permlinkre-dan-201771t23437519z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-06-30 23:34:39
last_update2017-06-30 23:34:39
depth1
children0
net_rshares1,628,629,049
last_payout2017-07-07 23:34:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length180
author_reputation4,073,802,778,041
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@forykw ·
$0.65
Really nice this. I wish to start experimenting with genetic algorithms kind of stuff on EOS. Then I will also like to test simple codes to gather data from multiple sources and concentrate them on a single database. The usage from EOS on this last one is that I need to do some processing on the fly before storing the results, and by using EOS makes it perfect to loose the dependency of having a computer or expensive computational device near the collection source.
👍  , ,
properties (23)
post_id5,727,160
authorforykw
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t005400419z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 00:53:57
last_update2017-07-01 00:53:57
depth1
children0
net_rshares77,168,859,021
last_payout2017-07-08 00:53:57
cashout_time1969-12-31 23:59:59
total_payout_value0.648 SBD
curator_payout_value0.001 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length469
author_reputation24,990,662,983,063
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@dumponwallstreet ·
Been waiting on c++ based crypto, this is the only real way get super fast transaction speeds, will have further look at the doc but I know NEM is trying to do this same thing because they found out that Java based script is not good enough especially when it's derived from c++. Plus better to do this on the machine level anyway. Like what I read so far, yes it will be bugs but all cryptos have some bugs in it.
properties (22)
post_id5,727,531
authordumponwallstreet
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t005900923z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 00:59:03
last_update2017-07-01 00:59:03
depth1
children0
net_rshares0
last_payout2017-07-08 00:59:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length414
author_reputation14,307,229,891
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@barrydutton ·
$2.25
Hey Dan!!!   I came by to learn some more and say have a good weekend.

You must be stoked about the Poloniex news I broke on my page today about 10 mins after they finally released the stranglehold  on everyone's BTS wallets for like 100 years *slight hyperbole* ---- they still cannot find the 500 SBD I transferred to them a week ago and I cannot reach them.

----

Like with BTS, I am still telling people to check it out, sending people over -- I am still learning.

It is our Canadastan Day long weekend  here like your Almost Independence Day there coming up.... I wish you the best always, some  rest and fun and stay strong man.

## I am always rooting for you!!!
👍  , , , ,
properties (23)
post_id5,729,076
authorbarrydutton
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t012128996z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 01:21:30
last_update2017-07-01 01:21:30
depth1
children0
net_rshares266,248,362,675
last_payout2017-07-08 01:21:30
cashout_time1969-12-31 23:59:59
total_payout_value2.243 SBD
curator_payout_value0.007 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length672
author_reputation333,682,425,228,294
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@barrydutton ·
$1.97
### https://twitter.com/BarryDutton/status/880960010783686658

----

![](https://steemitimages.com/DQmbibvbqXWDMukYkg5HfcY5wRFYkBAkpwq6dEdoZjEZjuW/image.png)
👍  , ,
properties (23)
post_id5,729,305
authorbarrydutton
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t012428299z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://twitter.com/BarryDutton/status/880960010783686658"], "image": ["https://steemitimages.com/DQmbibvbqXWDMukYkg5HfcY5wRFYkBAkpwq6dEdoZjEZjuW/image.png"], "tags": ["eos"]}"
created2017-07-01 01:24:27
last_update2017-07-01 01:24:27
depth1
children1
net_rshares232,893,837,033
last_payout2017-07-08 01:24:27
cashout_time1969-12-31 23:59:59
total_payout_value1.962 SBD
curator_payout_value0.007 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length157
author_reputation333,682,425,228,294
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@twitterbot ·
### ![BarryDutton](https://pbs.twimg.com/profile_images/854864179164987392/k3mqH1-D_normal.jpg) **[Barry Dutton](https://twitter.com/@BarryDutton/status/880960010783686658)** tweeted @ 01 Jul 2017 - 01:23 UTC

> Brand new $EOS [#EOS](https://twitter.com/search?q=%23EOS) update. @EOS_io @bytemaster7 [#CryptoCurrency](https://twitter.com/search?q=%23CryptoCurrency) [#Blockchain](https://twitter.com/search?q=%23Blockchain) 

[steemit.com/eos/@dan/eos-d…](https://t.co/9d4rjSpKmI)


###### *Disclaimer: I am just a bot trying to be helpful.*
👍  
properties (23)
post_id5,729,356
authortwitterbot
permlinkre-re-dan-eos-developer-s-log-stardate-20176-30-20170701t012428299z-20170701t012518
categoryeos
json_metadata{}
created2017-07-01 01:25:18
last_update2017-07-01 01:25:18
depth2
children0
net_rshares266,958,369
last_payout2017-07-08 01:25:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length541
author_reputation2,789,687,494,229
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@freedomnation ·
Eos moon?
properties (22)
post_id5,731,776
authorfreedomnation
permlinkre-dan-201771t35910780z
categoryeos
json_metadata"{"app": "esteem/1.4.5", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-01 01:59:12
last_update2017-07-01 01:59:12
depth1
children0
net_rshares0
last_payout2017-07-08 01:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation3,686,945,064,519
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@stellabelle ·
wow, cool. I love the Stardate title! Nice to get a detailed update from you.
Continue coding the future..
is that @rubenalexander's art? it looks familiar..
properties (22)
post_id5,734,950
authorstellabelle
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t024756808z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["rubenalexander"], "tags": ["eos"]}"
created2017-07-01 02:47:57
last_update2017-07-01 02:47:57
depth1
children0
net_rshares0
last_payout2017-07-08 02:47:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length157
author_reputation436,515,832,240,166
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@stellabelle ·
> Using a tight loop of generating and pushing transactions to the blockchain we achieved 80K TPS transferring funds from one account to another in a single thread.

this is nuts!
properties (22)
post_id5,735,173
authorstellabelle
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t025108572z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 02:51:09
last_update2017-07-01 02:51:09
depth1
children0
net_rshares0
last_payout2017-07-08 02:51:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length179
author_reputation436,515,832,240,166
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steempowerpics ·
@dan Why is US participation always blocked for early crowdsales and ICOs for new offerings like EOS?
properties (22)
post_id5,736,154
authorsteempowerpics
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t030437674z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-07-01 03:04:48
last_update2017-07-01 03:04:48
depth1
children0
net_rshares0
last_payout2017-07-08 03:04:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length101
author_reputation83,176,377,110,267
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kingscrown ·
ive got into this ICO lets see how it rolls :)
properties (22)
post_id5,738,512
authorkingscrown
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t034119563z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 03:41:21
last_update2017-07-01 03:41:21
depth1
children0
net_rshares0
last_payout2017-07-08 03:41:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length46
author_reputation1,990,164,104,714,661
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@btcbtcbtc20155 ·
$0.28
The project is super interesting and can't get enough of it.
👍  ,
properties (23)
post_id5,738,669
authorbtcbtcbtc20155
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t034343239z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 03:43:48
last_update2017-07-01 03:43:48
depth1
children0
net_rshares33,721,045,804
last_payout2017-07-08 03:43:48
cashout_time1969-12-31 23:59:59
total_payout_value0.282 SBD
curator_payout_value0.001 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length60
author_reputation3,557,223,159,170
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@rubenalexander ·
<pre>
static Balance initial = { 1000*1000 };
</pre>
<br>
<p>Dumb question. Why did you write the starting balance as the product of two 1000s instead of a million?</p>
properties (22)
post_id5,738,925
authorrubenalexander
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t034749504z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 03:47:48
last_update2017-07-01 03:47:48
depth1
children2
net_rshares0
last_payout2017-07-08 03:47:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length168
author_reputation87,319,474,038,977
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dan ·
$0.57
Star acts as a comma so I don't have trouble counting 0s.
👍  
properties (23)
post_id5,775,637
authordan
permlinkre-rubenalexander-re-dan-eos-developer-s-log-stardate-20176-30-20170701t124651966z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 12:46:51
last_update2017-07-01 12:46:51
depth2
children1
net_rshares67,692,430,083
last_payout2017-07-08 12:46:51
cashout_time1969-12-31 23:59:59
total_payout_value0.428 SBD
curator_payout_value0.141 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length57
author_reputation99,235,409,613,209
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@rubenalexander ·
Nice trick.
properties (22)
post_id5,783,483
authorrubenalexander
permlinkre-dan-re-rubenalexander-re-dan-eos-developer-s-log-stardate-20176-30-20170701t141551868z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 14:15:51
last_update2017-07-01 14:15:51
depth3
children0
net_rshares0
last_payout2017-07-08 14:15:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation87,319,474,038,977
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@drhitch ·
well that was a long read lol
properties (22)
post_id5,739,505
authordrhitch
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t035700607z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 03:57:03
last_update2017-07-01 03:57:03
depth1
children0
net_rshares0
last_payout2017-07-08 03:57:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length29
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@suziescorner ·
This is exciting and one to watch!!
properties (22)
post_id5,743,381
authorsuziescorner
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t050026512z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 05:00:27
last_update2017-07-01 05:00:27
depth1
children0
net_rshares0
last_payout2017-07-08 05:00:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length35
author_reputation632,573,670,086
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@brianphobos ·
I love how this blog started with a stardate!  
![spock-steem.jpg](https://steemitimages.com/DQmSQxYmhS4a7j3DcdnHfvY1GswjogkcJETZxoYAYrBnM22/spock-steem.jpg)
👍  
properties (23)
post_id5,746,031
authorbrianphobos
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t054304114z
categoryeos
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmSQxYmhS4a7j3DcdnHfvY1GswjogkcJETZxoYAYrBnM22/spock-steem.jpg"], "tags": ["eos"]}"
created2017-07-01 05:43:03
last_update2017-07-01 05:43:03
depth1
children1
net_rshares2,401,984,789
last_payout2017-07-08 05:43:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length157
author_reputation106,332,657,163,716
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@surfyogi ·
Live long and prosper, M*therf*cker!
properties (22)
post_id6,080,244
authorsurfyogi
permlinkre-brianphobos-re-dan-eos-developer-s-log-stardate-20176-30-20170704t044432645z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-04 04:44:33
last_update2017-07-04 04:44:33
depth2
children0
net_rshares0
last_payout2017-07-11 04:44:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length36
author_reputation31,141,055,844,467
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jen8 · (edited)
That's great, @dan!  I'm very excited about EOS.  I just learned how to participate in the EOS token sale yesterday and bought some tokens that I should be able to claim on July 1st.  Exciting times and I think it's great that EOS tokens will be distributed out over a full year.  That's actually the main reason why I feel a smaller investor like myself even had a chance to invest.  My plan was to forgo the whole ico sale scene entirely as I didn't feel I would even be able to get in, until I heard about EOS that is.
properties (22)
post_id5,746,342
authorjen8
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t054836208z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-07-01 05:48:33
last_update2017-07-01 05:50:30
depth1
children0
net_rshares0
last_payout2017-07-08 05:48:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length521
author_reputation340,582,416,232
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@pal ·
$11.56
Report from bytemaster himself, just like good old days :) I would be great if payout wasn't declined.
👍  ,
properties (23)
post_id5,747,219
authorpal
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t060129803z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 06:01:30
last_update2017-07-01 06:01:30
depth1
children0
net_rshares1,367,394,739,950
last_payout2017-07-08 06:01:30
cashout_time1969-12-31 23:59:59
total_payout_value8.676 SBD
curator_payout_value2.888 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length102
author_reputation12,208,622,540,590
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@fourlapse ·
So uh.... why did you decline payout?!?!
properties (22)
post_id5,749,863
authorfourlapse
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t064001708z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 06:40:00
last_update2017-07-01 06:40:00
depth1
children0
net_rshares0
last_payout2017-07-08 06:40:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length40
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kirillkozlenko ·
Nice info. Thank you
properties (22)
post_id5,754,606
authorkirillkozlenko
permlinkre-dan-201771t85658578z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-01 07:57:00
last_update2017-07-01 07:57:00
depth1
children0
net_rshares0
last_payout2017-07-08 07:57:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation14,981,508,863
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kaarel ·
$2.29
Very interesting, thank you!
👍  ,
properties (23)
post_id5,759,689
authorkaarel
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t091550770z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 09:16:00
last_update2017-07-01 09:16:00
depth1
children0
net_rshares270,618,059,820
last_payout2017-07-08 09:16:00
cashout_time1969-12-31 23:59:59
total_payout_value1.720 SBD
curator_payout_value0.570 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length28
author_reputation519,464,119,831
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@kryptokayden ·
$1.17
This could easily become the best crypto currency to be ever made if everything succeeded. 80,000 tx per second is going to be incredible. Looking forward to it's development.
👍  , ,
properties (23)
post_id5,761,338
authorkryptokayden
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t093900488z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 09:39:12
last_update2017-07-01 09:39:12
depth1
children3
net_rshares139,075,573,274
last_payout2017-07-08 09:39:12
cashout_time1969-12-31 23:59:59
total_payout_value0.920 SBD
curator_payout_value0.253 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length175
author_reputation5,154,923,471,082
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@mexbit ·
$4.06
All Graphene based cryptos have that already (Bitshares, Steem, Peerplays etc...) with a 100.000 or 150.000 transactions...
👍  , ,
properties (23)
post_id5,938,823
authormexbit
permlinkre-kryptokayden-re-dan-eos-developer-s-log-stardate-20176-30-20170702t222541285z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 22:25:42
last_update2017-07-02 22:25:42
depth2
children2
net_rshares559,369,254,821
last_payout2017-07-09 22:25:42
cashout_time1969-12-31 23:59:59
total_payout_value4.060 SBD
curator_payout_value0.003 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length123
author_reputation9,143,471,406,700
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@kryptokayden ·
$0.52
Oh,that is awesomer then!
👍  , ,
properties (23)
post_id5,966,578
authorkryptokayden
permlinkre-mexbit-re-kryptokayden-re-dan-eos-developer-s-log-stardate-20176-30-20170703t052236937z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 05:22:45
last_update2017-07-03 05:22:45
depth3
children1
net_rshares72,246,135,069
last_payout2017-07-10 05:22:45
cashout_time1969-12-31 23:59:59
total_payout_value0.392 SBD
curator_payout_value0.128 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length25
author_reputation5,154,923,471,082
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@richreck ·
$0.87
Found this article very informative and fascinating and about the  possibilities that lie ahead.
👍  , , ,
properties (23)
post_id5,763,233
authorrichreck
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t100428804z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 10:04:30
last_update2017-07-01 10:04:30
depth1
children0
net_rshares103,091,264,097
last_payout2017-07-08 10:04:30
cashout_time1969-12-31 23:59:59
total_payout_value0.864 SBD
curator_payout_value0.005 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length96
author_reputation263,700,595,848
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@lisvitania ·
Picture is most nice @dan
properties (22)
post_id5,766,408
authorlisvitania
permlinkre-dan-201771t174758517z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-01 10:48:00
last_update2017-07-01 10:48:00
depth1
children0
net_rshares0
last_payout2017-07-08 10:48:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length25
author_reputation156,875,656,237
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@amdinesh ·
Your post is too valuable to me. Keep this kind of post
properties (22)
post_id5,766,831
authoramdinesh
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t105330883z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 10:53:33
last_update2017-07-01 10:53:33
depth1
children0
net_rshares0
last_payout2017-07-08 10:53:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length55
author_reputation12,334,203,545
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@satoshimoto ·
Hi Dan, thanks for your informative post. perhaps you can shed some light on this at a noob level for me please, I followed the steps to purchase some tokens during the crows sale using the MetaMask wallet in chrome, from the metamask wallet while logged into the https://eos.io/distribution/ website I transferred ethereum to the EOS distribution address provided, but in the intructions it didn't actually stipulate whether you need to generate a EOS public key first, so I didn't, once I had already donated around $50 worth of ethereum to test this procedure it looked like it wasn't complete so I selected to generate the EOS public key and to generate this key I had to donate another small amount of ethereum, there was no way to generate this key without donating more ethereum so I did, and now I'm left with a complete process. I have my EOS public key, it looks like the full amount of money has reached the EOS distribution address but my Token balances and the "Your ETH" section below in the screenshot do not match? did I need to be concerned by the order in which I've done this process? I'm kinda worried I wont get to claim tokens worth the full amount of initial investment once they get distributed, apologies for the long winded question but I figured you would probably be able to help with some info? thanks Dan.

 ![EOS.PNG](https://steemitimages.com/DQmWNDeTy9UmDSQKxJ7HcSLUPCdFrKCEZ6LdfENaKgfK59C/EOS.PNG)
properties (22)
post_id5,767,818
authorsatoshimoto
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t110706028z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://eos.io/distribution/"], "image": ["https://steemitimages.com/DQmWNDeTy9UmDSQKxJ7HcSLUPCdFrKCEZ6LdfENaKgfK59C/EOS.PNG"], "tags": ["eos"]}"
created2017-07-01 11:07:06
last_update2017-07-01 11:07:06
depth1
children4
net_rshares0
last_payout2017-07-08 11:07:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,431
author_reputation269,842,971,792
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@xbm ·
You're okay as long as you register your key before the final window in 2018. Don't worry.
properties (22)
post_id5,785,082
authorxbm
permlinkre-satoshimoto-re-dan-eos-developer-s-log-stardate-20176-30-20170701t143052341z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 14:30:54
last_update2017-07-01 14:30:54
depth2
children3
net_rshares0
last_payout2017-07-08 14:30:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation15,808,435,401
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hendrix22 ·
Hello @xbm do you have to claim the tokens or can you just leave them as (unclaimed) ?
properties (22)
post_id6,048,936
authorhendrix22
permlinkre-xbm-re-satoshimoto-re-dan-eos-developer-s-log-stardate-20176-30-20170703t212029981z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["xbm"], "tags": ["eos"]}"
created2017-07-03 21:20:06
last_update2017-07-03 21:20:06
depth3
children2
net_rshares0
last_payout2017-07-10 21:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length86
author_reputation22,046,179,206,361
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sonu ·
Thanks for sharing @dan
👎  
properties (23)
post_id5,768,605
authorsonu
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t111732275z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-07-01 11:17:42
last_update2017-07-01 11:17:42
depth1
children0
net_rshares-1,721,780,297,551
last_payout2017-07-08 11:17:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23
author_reputation8,665,183,773,468
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@sam99 ·
Thanks for sharing @dan
👎  ,
properties (23)
post_id5,769,082
authorsam99
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t112359310z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-07-01 11:24:12
last_update2017-07-01 11:24:12
depth1
children0
net_rshares-1,721,832,393,485
last_payout2017-07-08 11:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23
author_reputation20,003,735,853,259
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@olgalucia97 ·
wow I dint know
👎  
properties (23)
post_id5,770,730
authorolgalucia97
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t114513199z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 11:45:15
last_update2017-07-01 11:45:15
depth1
children0
net_rshares-1,721,780,297,551
last_payout2017-07-08 11:45:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length15
author_reputation5,397,867,529
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@malay11 ·
You Great. Its make person account  Security to a high level.
👎  
properties (23)
post_id5,770,818
authormalay11
permlinkre-dan-201771t171621643z
categoryeos
json_metadata"{"app": "esteem/1.4.5", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-01 11:46:27
last_update2017-07-01 11:46:27
depth1
children0
net_rshares-1,721,780,297,551
last_payout2017-07-08 11:46:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length61
author_reputation10,964,781,961,431
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@rukshan ·
Hi everyone Follow4follow Vote4vote <3 :)
👎  , ,
properties (23)
post_id5,772,285
authorrukshan
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t120532709z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 12:05:39
last_update2017-07-01 12:05:39
depth1
children0
net_rshares-1,722,993,084,118
last_payout2017-07-08 12:05:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length41
author_reputation-28,111,815,178
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@sam99 ·
![flowers02.gif](https://steemitimages.com/DQmSH8Tri2cewo1qCkyP2or4RJ6u7QVYpsJrPagPZKV572q/flowers02.gif)
👎  
properties (23)
post_id5,772,672
authorsam99
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t121020301z
categoryeos
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmSH8Tri2cewo1qCkyP2or4RJ6u7QVYpsJrPagPZKV572q/flowers02.gif"], "tags": ["eos"]}"
created2017-07-01 12:10:33
last_update2017-07-01 12:10:33
depth1
children0
net_rshares-1,721,780,297,551
last_payout2017-07-08 12:10:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length105
author_reputation20,003,735,853,259
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bxt ·
great post ! hope you check my post , thanks !
👎  
properties (23)
post_id5,774,521
authorbxt
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t123229591z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 12:32:33
last_update2017-07-01 12:32:33
depth1
children0
net_rshares-1,721,780,297,551
last_payout2017-07-08 12:32:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length46
author_reputation98,225,041,782,550
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@aminhosseini · (edited)
The great news
Im newcomer. I need your help dude. Help me please. please follow and like me bro. I upvoted you
👎  
properties (23)
post_id5,775,699
authoraminhosseini
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t124710561z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 12:47:36
last_update2017-07-01 12:51:06
depth1
children0
net_rshares-1,721,780,297,551
last_payout2017-07-08 12:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length111
author_reputation-28,619,804,755
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@shafeulamin ·
Many thanks
👎  
properties (23)
post_id5,775,962
authorshafeulamin
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t125042023z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 12:50:54
last_update2017-07-01 12:50:54
depth1
children0
net_rshares-1,721,780,297,551
last_payout2017-07-08 12:50:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation-26,846,575,075
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@arcange ·
$0.02
You have been mentionned in my hit-parade of 2017.06.30
Congratulations @dan!
Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170630) in the following category:

* Pending payout - Ranked 1 with $ 3023,87
👍  ,
properties (23)
post_id5,776,404
authorarcange
permlinkre-eos-developer-s-log-stardate-20176-30-20170630t145606000z
categoryeos
json_metadata{}
created2017-07-01 12:56:06
last_update2017-07-01 12:56:06
depth1
children0
net_rshares2,888,045,435
last_payout2017-07-08 12:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.020 SBD
curator_payout_value0.001 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length203
author_reputation231,443,210,169,699
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@kirillkozlenko ·
Really great, consistent post. The topic tought here's kinda significant nowadays. Keep sharing you content.
properties (22)
post_id5,776,683
authorkirillkozlenko
permlinkre-dan-201771t13593835z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-01 12:59:39
last_update2017-07-01 12:59:39
depth1
children0
net_rshares0
last_payout2017-07-08 12:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length108
author_reputation14,981,508,863
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@outhori5ed ·
very interesting. i am following you now
properties (22)
post_id5,777,386
authorouthori5ed
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t130700185z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 13:07:09
last_update2017-07-01 13:07:09
depth1
children0
net_rshares0
last_payout2017-07-08 13:07:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length40
author_reputation39,607,531,636,946
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@vladimirk800i · (edited)
it's july 1, but still no signs of trade on bitfinex. any info, when will be the gates open?))
👍  
properties (23)
post_id5,781,804
authorvladimirk800i
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t135722191z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 13:57:21
last_update2017-07-01 13:57:45
depth1
children0
net_rshares684,806,704
last_payout2017-07-08 13:57:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length94
author_reputation251,188,643,150
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@travelersmemoire ·
$0.03
Real world performance will definitely be lower due to network lag and such.  For testing I'd try running over the Internet and posting those results.
👍  
properties (23)
post_id5,782,251
authortravelersmemoire
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t140227733z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 14:02:27
last_update2017-07-01 14:02:27
depth1
children0
net_rshares3,821,959,674
last_payout2017-07-08 14:02:27
cashout_time1969-12-31 23:59:59
total_payout_value0.030 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length150
author_reputation5,115,509,421,776
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@lisvitania ·
Well done post @dan . You deserve for getting Upvote from me. I appreciate on it and like it so much . Waiting for your latest post. Keep your good work and steeming on. Let's walk to my blog. I have a latest post. Your upvote is high motivation for me. Almost all Steemians do their best on this site. Keep steeming and earning.
properties (22)
post_id5,784,809
authorlisvitania
permlinkre-dan-201771t212810383z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-01 14:28:15
last_update2017-07-01 14:28:15
depth1
children0
net_rshares0
last_payout2017-07-08 14:28:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length329
author_reputation156,875,656,237
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@timcrypto ·
Man...I think i'd go crazy if i lost out on a 3k payout. So unlucky
properties (22)
post_id5,790,684
authortimcrypto
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t152635045z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 15:26:30
last_update2017-07-01 15:26:30
depth1
children0
net_rshares0
last_payout2017-07-08 15:26:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length67
author_reputation68,654,129,782
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptokom · (edited)
https://www.youtube.com/watch?v=lS58BJvxpBg
How to claim EOS tokens (MEW)
https://steemit.com/eos/@cryptokom/video-how-to-claim-eos-tokens
👍  
properties (23)
post_id5,791,521
authorcryptokom
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t153434618z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://www.youtube.com/watch?v=lS58BJvxpBg", "https://steemit.com/eos/@cryptokom/video-how-to-claim-eos-tokens"], "image": ["https://img.youtube.com/vi/lS58BJvxpBg/0.jpg"], "tags": ["eos"]}"
created2017-07-01 15:34:45
last_update2017-07-01 15:37:03
depth1
children0
net_rshares513,136,729
last_payout2017-07-08 15:34:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length138
author_reputation569,581,081,073
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bitzoner ·
Same as BTC work with sign and bow but as per my knowledge it does not work one actor per click event triggered in that way although it uses same digital signature.
properties (22)
post_id5,791,536
authorbitzoner
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t153454108z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 15:34:54
last_update2017-07-01 15:34:54
depth1
children0
net_rshares0
last_payout2017-07-08 15:34:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length164
author_reputation458,259,114,007
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jonesta ·
I like it the informasion, so thanks you :)
properties (22)
post_id5,791,851
authorjonesta
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170630t173742221z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 15:38:00
last_update2017-07-01 15:38:00
depth1
children0
net_rshares0
last_payout2017-07-08 15:38:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation154,091,178,885
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wingz ·
Welcome to the 3 comma club!
properties (22)
post_id5,794,653
authorwingz
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t160749516z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 16:07:51
last_update2017-07-01 16:07:51
depth1
children0
net_rshares0
last_payout2017-07-08 16:07:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length28
author_reputation33,971,217,438,318
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@madu94 ·
:) :) <3
properties (22)
post_id5,796,034
authormadu94
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t162132780z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 16:21:36
last_update2017-07-01 16:21:36
depth1
children0
net_rshares0
last_payout2017-07-08 16:21:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length8
author_reputation1,066,050,498
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@futuresmart ·
what happen to the payouts Bro , why is that decline
properties (22)
post_id5,797,108
authorfuturesmart
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t163349503z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 16:33:45
last_update2017-07-01 16:33:45
depth1
children0
net_rshares0
last_payout2017-07-08 16:33:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length52
author_reputation660,693,448,007
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@doctor.mimaid · (edited)
goog
properties (22)
post_id5,800,221
authordoctor.mimaid
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t170718406z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 17:07:18
last_update2017-07-01 18:58:39
depth1
children1
net_rshares0
last_payout2017-07-08 17:07:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation585,838,322,788
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@doctor.mimaid · (edited)
..
properties (22)
post_id5,808,980
authordoctor.mimaid
permlinkre-doctormimaid-re-dan-eos-developer-s-log-stardate-20176-30-20170701t184123956z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 18:41:24
last_update2017-07-01 18:59:03
depth2
children0
net_rshares0
last_payout2017-07-08 18:41:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length2
author_reputation585,838,322,788
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gheidyart ·
nice
properties (22)
post_id5,801,286
authorgheidyart
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t171841369z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 17:18:57
last_update2017-07-01 17:18:57
depth1
children0
net_rshares0
last_payout2017-07-08 17:18:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation6,261,331,052
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jwolf ·
That's insane. $3k
properties (22)
post_id5,801,805
authorjwolf
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t172354955z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 17:24:00
last_update2017-07-01 17:24:00
depth1
children0
net_rshares0
last_payout2017-07-08 17:24:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation124,929,978,911,873
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@joe007 ·
Thank you for the valuable information
properties (22)
post_id5,804,254
authorjoe007
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t175046853z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 17:50:48
last_update2017-07-01 17:50:48
depth1
children0
net_rshares0
last_payout2017-07-08 17:50:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length38
author_reputation1,177,907,294,060
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@satheeshkumar ·
Follow me for interesting and sarcastic memes
👍  
properties (23)
post_id5,805,050
authorsatheeshkumar
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t175912643z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 17:58:54
last_update2017-07-01 17:58:54
depth1
children0
net_rshares510,702,740
last_payout2017-07-08 17:58:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length45
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@satheeshkumar ·
This is going to be very interesting.  hope you keep up the log over the coming months and look forward to reading your posts!
👍  
properties (23)
post_id5,805,195
authorsatheeshkumar
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t180041631z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 18:00:24
last_update2017-07-01 18:00:24
depth1
children0
net_rshares499,095,860
last_payout2017-07-08 18:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length126
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yy15997182159 ·
WOW,expect!
👍  
properties (23)
post_id5,805,794
authoryy15997182159
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t180712121z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 18:07:15
last_update2017-07-01 18:07:15
depth1
children0
net_rshares1,073,636,043
last_payout2017-07-08 18:07:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation1,847,849,797
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@joshuaatiemo ·
Great work man on future development of codes.
👍  
properties (23)
post_id5,808,772
authorjoshuaatiemo
permlinkre-dan-201771t18397862z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-01 18:39:12
last_update2017-07-01 18:39:12
depth1
children0
net_rshares719,386,833
last_payout2017-07-08 18:39:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length46
author_reputation4,190,079,105,786
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@joshuaatiemo ·
I really like your projects Dan.
👍  
properties (23)
post_id5,808,857
authorjoshuaatiemo
permlinkre-dan-201771t18405898z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-01 18:40:09
last_update2017-07-01 18:40:09
depth1
children0
net_rshares699,403,866
last_payout2017-07-08 18:40:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length32
author_reputation4,190,079,105,786
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@hamzaoui ·
$0.58
Well done post  You deserve for getting Upvote from me. I appreciate on it and like it so much . Waiting for your latest post. Keep your good work and steeming on. Let's walk to my blog. I have a latest post. Your upvote is high motivation for me. Almost all Steemians do their best on this site. Keep steeming and earning.
👍  
properties (23)
post_id5,814,071
authorhamzaoui
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t193519533z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 19:35:21
last_update2017-07-01 19:35:21
depth1
children1
net_rshares70,056,350,136
last_payout2017-07-08 19:35:21
cashout_time1969-12-31 23:59:59
total_payout_value0.434 SBD
curator_payout_value0.144 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length323
author_reputation2,664,130,874,305
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@booster ·
<p>This comment has received a 0.07 % upvote from @booster thanks to: @hamzaoui.</p>
properties (22)
post_id6,463,536
authorbooster
permlinkre-hamzaoui-re-dan-eos-developer-s-log-stardate-20176-30-20170701t193519533z-20170707t165514549z
categoryeos
json_metadata"{"app": "drotto/0.0.1", "tags": ["eos-developer-s-log-stardate-20176-30"]}"
created2017-07-07 16:55:36
last_update2017-07-07 16:55:36
depth2
children0
net_rshares0
last_payout2017-07-14 16:55:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length85
author_reputation68,830,001,303,403
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@warrior1996 ·
follow me and I follow you
properties (22)
post_id5,814,729
authorwarrior1996
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t194234487z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 19:42:39
last_update2017-07-01 19:42:39
depth1
children0
net_rshares0
last_payout2017-07-08 19:42:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length26
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@abit ·
Not bad.
properties (22)
post_id5,815,349
authorabit
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t194949269z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 19:49:39
last_update2017-07-01 19:49:39
depth1
children0
net_rshares0
last_payout2017-07-08 19:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length8
author_reputation111,629,191,115,088
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mcsamm ·
The feeling is always good and deep whenever l get introduced to such great ideas....l am not just new herre am new to some of dis good and great ideas...l really need dem and so keep these ideas coming
properties (22)
post_id5,816,506
authormcsamm
permlinkre-dan-201771t20332678z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-01 20:03:57
last_update2017-07-01 20:03:57
depth1
children0
net_rshares0
last_payout2017-07-08 20:03:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length202
author_reputation138,746,559,339,991
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@espanol ·
Why the post earnings are crossed out?
👍  
properties (23)
post_id5,816,903
authorespanol
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t200859728z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 20:09:03
last_update2017-07-01 20:09:03
depth1
children1
net_rshares222,121,787
last_payout2017-07-08 20:09:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length38
author_reputation247,995,867,762
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@joshuatucker · (edited)
Was going to ask the same thing.  Google has no answers.

UPdate:  It's implied above that 'crossed out' is due to 'declined payment'.  "Just out of curiosity, where does all that money go if you decline a payout?"
properties (22)
post_id5,909,862
authorjoshuatucker
permlinkre-espanol-re-dan-eos-developer-s-log-stardate-20176-30-20170702t170458034z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 17:05:03
last_update2017-07-02 17:07:03
depth2
children0
net_rshares0
last_payout2017-07-09 17:05:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length214
author_reputation505,048,788,109
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mouradsayed ·
My understanding of how EOS achieves massive transaction speed / scalability is that it delegates block production to a single actor for each block. How is block forgery NOT possibly a problem? I've read the explanations and it's somehow 'the longest chain wins' like Bitcoin ... but I don't see how that actually applies in a 'one actor per block' scheme? One actor just forges, block is hashed, boom, done: nobody the wiser. Hope my question makes sense :) and I'd love to know the answer! Big fan of EOS in all other ways than this lingering doubt.
👍  ,
properties (23)
post_id5,822,059
authormouradsayed
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t211327643z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 21:13:39
last_update2017-07-01 21:13:39
depth1
children0
net_rshares1,245,701,633
last_payout2017-07-08 21:13:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length551
author_reputation2,314,432,101
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@yusef26 ·
follow me and upvote my content and ill do the same for everybody just reply to this comment so i know, thanks!!
👍  
👎  , ,
properties (23)
post_id5,824,601
authoryusef26
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t214619991z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 21:46:21
last_update2017-07-01 21:46:21
depth1
children0
net_rshares-169,595,437,373,693
last_payout2017-07-08 21:46:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length112
author_reputation-2,650,533,717,901
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@olgalucia97 ·
Hi dan very interesting your post, if u wanna see my first sexiest photoshoot in the Caribe you are welcome to my blog https://steemit.com/photography/@olgalucia97/photoshoot-bikini-margarita-venezuela 
you will not regret
👎  ,
properties (23)
post_id5,824,805
authorolgalucia97
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t214920605z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/photography/@olgalucia97/photoshoot-bikini-margarita-venezuela"], "tags": ["eos"]}"
created2017-07-01 21:49:24
last_update2017-07-01 21:49:24
depth1
children0
net_rshares-1,721,832,393,485
last_payout2017-07-08 21:49:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length222
author_reputation5,397,867,529
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@jnkz ·
nice entry pump today! thank's guys
properties (22)
post_id5,827,609
authorjnkz
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t222421494z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 22:24:21
last_update2017-07-01 22:24:21
depth1
children0
net_rshares0
last_payout2017-07-08 22:24:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length35
author_reputation5,594,712,548
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptopreneur ·
did anybody saw that tweet by Brock Pierce from Blockchain Captital from tweeting this article too as wellt? He shared dan article from steemit!!!! whoa.
https://twitter.com/brockpierce/status/880905167301783552
properties (22)
post_id5,828,514
authorcryptopreneur
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170701t223602827z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://twitter.com/brockpierce/status/880905167301783552"], "tags": ["eos"]}"
created2017-07-01 22:36:06
last_update2017-07-01 22:36:06
depth1
children2
net_rshares0
last_payout2017-07-08 22:36:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length211
author_reputation40,117,451,230
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@twitterbot ·
### ![brockpierce](https://pbs.twimg.com/profile_images/807020835122724865/ajoU7QjI_normal.jpg) **[Ƀrock Pierce](https://twitter.com/@brockpierce/status/880905167301783552)** tweeted @ 30 Jun 2017 - 21:45 UTC

> EOS - Developer’s Log Stardate 20176.30 — Steemit [steemit.com/eos/@dan/eos-d…](https://t.co/8JPDv8Z9Wu)


###### *Disclaimer: I am just a bot trying to be helpful.*
👍  
properties (23)
post_id5,828,594
authortwitterbot
permlinkre-re-dan-eos-developer-s-log-stardate-20176-30-20170701t223602827z-20170701t223705
categoryeos
json_metadata{}
created2017-07-01 22:37:06
last_update2017-07-01 22:37:06
depth2
children1
net_rshares523,279,128
last_payout2017-07-08 22:37:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length377
author_reputation2,789,687,494,229
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@cryptopreneur ·
wow. This twitter bot fast. good one!
properties (22)
post_id5,828,912
authorcryptopreneur
permlinkre-twitterbot-re-re-dan-eos-developer-s-log-stardate-20176-30-20170701t223705-20170701t224114094z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-01 22:41:12
last_update2017-07-01 22:41:12
depth3
children0
net_rshares0
last_payout2017-07-08 22:41:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length37
author_reputation40,117,451,230
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@marco-delsalto ·
$0.23
I am very optimistic EOS will be the dominate worlds Blockchain
👍  , ,
👎  
properties (23)
post_id5,834,529
authormarco-delsalto
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t000141759z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 00:01:42
last_update2017-07-02 00:01:42
depth1
children1
net_rshares27,991,514,572
last_payout2017-07-09 00:01:42
cashout_time1969-12-31 23:59:59
total_payout_value0.228 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation7,356,422,544,596
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@fuckmylife ·
Me too, I was optimistic enough to put a fair share of my portfolio into it. After all the time I have spent trading crypto the biggest issues I have found is lack of bandwidth. Hopefully EOS can address all these issues moving forward.
properties (22)
post_id5,843,170
authorfuckmylife
permlinkre-marco-delsalto-re-dan-eos-developer-s-log-stardate-20176-30-20170702t022904812z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 02:29:09
last_update2017-07-02 02:29:09
depth2
children0
net_rshares0
last_payout2017-07-09 02:29:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length236
author_reputation6,165,950,018,614
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@roccofalcone ·
Cool! Bought 1 EOS at Kraken :)
👍  
properties (23)
post_id5,838,767
authorroccofalcone
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t011141846z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 01:11:42
last_update2017-07-02 01:11:42
depth1
children0
net_rshares1,571,448,642
last_payout2017-07-09 01:11:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length31
author_reputation-1,066,050,498,984
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@imagin8orr ·
Awesome post - thanks for sharing! I'm just learning about EOS and am looking forward to more of your posts - followed! tyty
properties (22)
post_id5,840,703
authorimagin8orr
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t014440760z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 01:44:39
last_update2017-07-02 01:44:39
depth1
children0
net_rshares0
last_payout2017-07-09 01:44:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length124
author_reputation992,354,096,132
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fuckmylife ·
Well Just bought 9275 Units of EOS, wish me luck. I have plenty of faith in this platform. Wish me luck 

https://steemit.com/eos/@fuckmylife/just-bought-5000-unis-of-eos-am-i-stupid-for-doing-so
properties (22)
post_id5,841,765
authorfuckmylife
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t020350425z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/eos/@fuckmylife/just-bought-5000-unis-of-eos-am-i-stupid-for-doing-so"], "tags": ["eos"]}"
created2017-07-02 02:03:51
last_update2017-07-02 02:03:51
depth1
children0
net_rshares0
last_payout2017-07-09 02:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length195
author_reputation6,165,950,018,614
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@morseke1 · (edited)
Can someone explain why a high quality post like this would have its payout declined?  It makes absolutely no sense!
properties (22)
post_id5,842,266
authormorseke1
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t021252381z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 02:12:51
last_update2017-07-02 02:13:39
depth1
children0
net_rshares0
last_payout2017-07-09 02:12:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length116
author_reputation518,136,806,985
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@muhammadilham ·
Follow me
properties (22)
post_id5,849,701
authormuhammadilham
permlinkre-dan-201772t11212257z
categoryeos
json_metadata"{"app": "esteem/1.4.5", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-02 04:21:15
last_update2017-07-02 04:21:15
depth1
children0
net_rshares0
last_payout2017-07-09 04:21:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation160,529,759,686
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@riskaayunda ·
@dan very nice your post
properties (22)
post_id5,853,804
authorriskaayunda
permlinkre-dan-201772t123825858z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-02 05:38:36
last_update2017-07-02 05:38:36
depth1
children0
net_rshares0
last_payout2017-07-09 05:38:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length24
author_reputation88,217,664,418
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jondahl ·
I do not really understand EOS but after I read your post. All so interesting Thanks
properties (22)
post_id5,857,808
authorjondahl
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t064552310z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 06:46:06
last_update2017-07-02 06:46:06
depth1
children0
net_rshares0
last_payout2017-07-09 06:46:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length84
author_reputation12,334,203,545,676
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@life-dailydose ·
seems quite technical but feels good. LOL!
properties (22)
post_id5,860,885
authorlife-dailydose
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t073553460z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 07:35:45
last_update2017-07-02 07:35:45
depth1
children0
net_rshares0
last_payout2017-07-09 07:35:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length42
author_reputation68,830,001,303
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ward01 ·
Is it a job opportunity for unemployment?
properties (22)
post_id5,865,122
authorward01
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t084121850z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 08:41:15
last_update2017-07-02 08:41:15
depth1
children0
net_rshares0
last_payout2017-07-09 08:41:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length41
author_reputation7,337,625,723,461
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tohamy7 ·
A good topic for you
properties (22)
post_id5,869,657
authortohamy7
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t084749340z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 09:48:12
last_update2017-07-02 09:48:12
depth1
children0
net_rshares0
last_payout2017-07-09 09:48:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation8,799,225,435,691
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@swtcamito ·
great very informative post thanks  for sharing
properties (22)
post_id5,872,389
authorswtcamito
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t102852888z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 10:28:54
last_update2017-07-02 10:28:54
depth1
children0
net_rshares0
last_payout2017-07-09 10:28:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length47
author_reputation919,037,713,363
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@suppercurrency ·
With a bit more development EOS will be one of the most dominant cryptocurrencies better get in early
properties (22)
post_id5,889,459
authorsuppercurrency
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t134144543z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 13:41:45
last_update2017-07-02 13:41:45
depth1
children0
net_rshares0
last_payout2017-07-09 13:41:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length101
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mwesigwa ·
great info
👍  
properties (23)
post_id5,892,976
authormwesigwa
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t141710236z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 14:17:12
last_update2017-07-02 14:17:12
depth1
children0
net_rshares1,114,269,047
last_payout2017-07-09 14:17:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bambang ·
http://www.gambaranimasi.org/data/media/1317/animasi-bergerak-101-dalmatians-0020.gif
properties (22)
post_id5,895,239
authorbambang
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t144035545z
categoryeos
json_metadata"{"app": "steemit/0.1", "image": ["http://www.gambaranimasi.org/data/media/1317/animasi-bergerak-101-dalmatians-0020.gif"], "tags": ["eos"]}"
created2017-07-02 14:40:39
last_update2017-07-02 14:40:39
depth1
children0
net_rshares0
last_payout2017-07-09 14:40:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length85
author_reputation-42,986,623,470
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hendraabyie ·
Hy @dan 
This is going to be interesting. Very interesting hope you keep up the log over the next 12 months and look forward to reading your updates!
Good luck
properties (22)
post_id5,900,260
authorhendraabyie
permlinkre-dan-201772t223044892z
categoryeos
json_metadata"{"app": "esteem/1.4.5", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-02 15:30:51
last_update2017-07-02 15:30:51
depth1
children0
net_rshares0
last_payout2017-07-09 15:30:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length159
author_reputation53,292,570,288
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@belarbiridadz27 ·
Very interesting, thank you!
👍  
properties (23)
post_id5,905,305
authorbelarbiridadz27
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t161422528z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 16:21:00
last_update2017-07-02 16:21:00
depth1
children0
net_rshares928,549,358
last_payout2017-07-09 16:21:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length28
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yannis ·
Verry nice article man it is verry informatif and let's see what there next step is
properties (22)
post_id5,907,241
authoryannis
permlinkre-dan-201772t18400181z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-02 16:40:03
last_update2017-07-02 16:40:03
depth1
children0
net_rshares0
last_payout2017-07-09 16:40:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length83
author_reputation5,261,518,613
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@socoar15556 ·
Thanks for the info.  Not sure this is the future,
properties (22)
post_id5,911,083
authorsocoar15556
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t171604441z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 17:16:03
last_update2017-07-02 17:16:03
depth1
children0
net_rshares0
last_payout2017-07-09 17:16:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length50
author_reputation1,969,901,198
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@biggy345 ·
very useful info,thanks alot for this
properties (22)
post_id5,913,847
authorbiggy345
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t174247703z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 17:42:48
last_update2017-07-02 17:42:48
depth1
children0
net_rshares0
last_payout2017-07-09 17:42:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length37
author_reputation340,582,416,232
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nutela ·
First time I see `code` on steemit!
properties (22)
post_id5,915,363
authornutela
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t175754241z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 17:57:54
last_update2017-07-02 17:57:54
depth1
children0
net_rshares0
last_payout2017-07-09 17:57:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length35
author_reputation12,751,332,063,284
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@slicken ·
great post, got two questions:

is EOS an an Etherium token ( ERI20) ?
what is the total EOS tokens , maximum total?
properties (22)
post_id5,920,584
authorslicken
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t185302783z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 18:53:03
last_update2017-07-02 18:53:03
depth1
children0
net_rshares0
last_payout2017-07-09 18:53:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length116
author_reputation5,739,695,974
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dbzfan4awhile ·
$0.04
80K TPS is incredible! Well done! And I thought I was all cool today having made a simple little He-Man finding Skeletor game. Now I feel like a complete programming novice, lol.
👍  
properties (23)
post_id5,921,401
authordbzfan4awhile
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t190250511z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 19:02:51
last_update2017-07-02 19:02:51
depth1
children0
net_rshares6,356,289,698
last_payout2017-07-09 19:02:51
cashout_time1969-12-31 23:59:59
total_payout_value0.033 SBD
curator_payout_value0.011 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length178
author_reputation6,165,950,018,614
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@elisaul ·
Great post. Thanks for sharing upvote and followed
properties (22)
post_id5,925,664
authorelisaul
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t194826763z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 19:48:30
last_update2017-07-02 19:48:30
depth1
children0
net_rshares0
last_payout2017-07-09 19:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length50
author_reputation2,981,566,117,435
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dannnielli ·
I'm curious to know why your payout was declined...?
properties (22)
post_id5,935,927
authordannnielli
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t214642099z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 21:46:42
last_update2017-07-02 21:46:42
depth1
children0
net_rshares0
last_payout2017-07-09 21:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length52
author_reputation30,276,879,411
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@goof ·
Glad to see EOS progressing. I have high hopes for this blockchain concept and implementation.
properties (22)
post_id5,935,979
authorgoof
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170702t214741276z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-02 21:47:30
last_update2017-07-02 21:47:30
depth1
children0
net_rshares0
last_payout2017-07-09 21:47:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length94
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@behamot ·
Instead denying payout, you could use the money for a good cause etc..
properties (22)
post_id5,945,878
authorbehamot
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t001354412z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 00:13:54
last_update2017-07-03 00:13:54
depth1
children0
net_rshares0
last_payout2017-07-10 00:13:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length70
author_reputation86,209,585,215
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kboslice ·
I'm confused oh well. Let the smart people do their thing.
properties (22)
post_id5,953,913
authorkboslice
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t022447631z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 02:24:48
last_update2017-07-03 02:24:48
depth1
children0
net_rshares0
last_payout2017-07-10 02:24:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length58
author_reputation17,511,902,611
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steemitboard ·
Congratulations @dan! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@dan) Award for the number of upvotes

Click on any badge to view your own Board of Honnor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
post_id5,961,641
authorsteemitboard
permlinksteemitboard-notify-dan-20170703t041042000z
categoryeos
json_metadata"{"image": ["https://steemitboard.com/img/notifications.png"]}"
created2017-07-03 04:10:42
last_update2017-07-03 04:10:42
depth1
children0
net_rshares0
last_payout2017-07-10 04:10:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length675
author_reputation38,705,954,145,809
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@praxiseven ·
It's a new world, and EOS is leading the way .
properties (22)
post_id5,961,976
authorpraxiseven
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t041540757z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 04:15:39
last_update2017-07-03 04:15:39
depth1
children0
net_rshares0
last_payout2017-07-10 04:15:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length46
author_reputation6,936,032,367
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptodata ·
It's amazing to see everything that EOS is capable of. I can't wait to see where it goes from here and the disruption it makes. Thanks for sharing :)
properties (22)
post_id5,968,242
authorcryptodata
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t054616222z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 05:46:15
last_update2017-07-03 05:46:15
depth1
children0
net_rshares0
last_payout2017-07-10 05:46:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length149
author_reputation1,576,804,235,259
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tzap90 ·
it looks like EOS has a very good start (+257 % today), will be interesting what they will do with the first big wave of interest
properties (22)
post_id5,979,938
authortzap90
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t084742593z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 08:47:21
last_update2017-07-03 08:47:21
depth1
children0
net_rshares0
last_payout2017-07-10 08:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length129
author_reputation3,043,219,887,107
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@geo-geo ·
$0.44
I bought some EOS a few hours ago at Bitfinex.  Went very smooth, Bitfinex is a class exchange.  I bought based on Suppoman's youtube video.  He's a steemer too.   Hope it makes top 3 coins soon.  :)
👍  
properties (23)
post_id5,981,741
authorgeo-geo
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t091239106z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 09:12:36
last_update2017-07-03 09:12:36
depth1
children0
net_rshares62,266,547,127
last_payout2017-07-10 09:12:36
cashout_time1969-12-31 23:59:59
total_payout_value0.444 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length199
author_reputation133,864,884,206
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@tylersr ·
Excuse me, can someone tell me why the payout for this post is grayed and slashed (screenshot included below for reference)?
![Screen Shot 2017-07-03 at 3.50.19 AM.png](https://steemitimages.com/DQmRct2xGupwVwqcoh8a4NnzpviML7MHpquWUGwo49gJX4v/Screen%20Shot%202017-07-03%20at%203.50.19%20AM.png)
properties (22)
post_id5,988,801
authortylersr
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t105140812z
categoryeos
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmRct2xGupwVwqcoh8a4NnzpviML7MHpquWUGwo49gJX4v/Screen%20Shot%202017-07-03%20at%203.50.19%20AM.png"], "tags": ["eos"]}"
created2017-07-03 10:51:42
last_update2017-07-03 10:51:42
depth1
children0
net_rshares0
last_payout2017-07-10 10:51:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length294
author_reputation3,138,099,189,175
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@atom ·
$2.59
Slow and steady win the game.
👍  ,
properties (23)
post_id5,990,676
authoratom
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t111702813z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 11:17:00
last_update2017-07-03 11:17:00
depth1
children0
net_rshares364,082,416,423
last_payout2017-07-10 11:17:00
cashout_time1969-12-31 23:59:59
total_payout_value1.948 SBD
curator_payout_value0.646 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length29
author_reputation1,107,756,850,509
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@yuvi ·
$0.26
Great stuff @dan 👍
👍  , ,
properties (23)
post_id5,990,691
authoryuvi
permlinkre-dan-eos-developer-s-log-stardate-20176-30-201773t16471292z
categoryeos
json_metadata"{"tags": [], "format": "markdown+html", "app": "chainbb/0.3"}"
created2017-07-03 11:17:06
last_update2017-07-03 11:17:06
depth1
children0
net_rshares42,379,759,559
last_payout2017-07-10 11:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.255 SBD
curator_payout_value0.001 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation387,059,541,458
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@younginvesting ·
I have written a post with remarks on this.  My honest opinion why you should be careful investing in it.
properties (22)
post_id6,024,060
authoryounginvesting
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t170008604z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 17:00:09
last_update2017-07-03 17:00:09
depth1
children0
net_rshares0
last_payout2017-07-10 17:00:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length105
author_reputation71,340,037,507
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@toscani40 ·
Great post ! Today i just lost my job...i worked really hard as a waiter for like 10 years in a restaurant...worked night after night shifts but still they decide they don't need my services anymore and that they don't have money to pay me so they just kick me out . It was really hard for me to find this job because i don't have much education....i did't go to college...
The real problem is that i have a debt of 759 $ to my apartment rent and if i don't pay till the end of the month they gonna kick me out from my own home. I don't have friends and my family won't lend me any money...
My only hope now to raise this money is steemit...i like it alot here and the community is very nice...

Please if anybody would like to help me , a upvote would be awesome and would help me tremendously to raise the money i need .

Thank you very much for your help and i hope you have a great day .
properties (22)
post_id6,033,557
authortoscani40
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t183003220z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 18:30:15
last_update2017-07-03 18:30:15
depth1
children0
net_rshares0
last_payout2017-07-10 18:30:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length891
author_reputation-808,682,002,378
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@atp11 ·
What do you guys think? After we like 4-7x our profits sell it and buy back after a year when it goes back down instead of holding for a whole year?>
👍  
properties (23)
post_id6,033,919
authoratp11
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t183323241z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 18:33:24
last_update2017-07-03 18:33:24
depth1
children0
net_rshares577,802,859
last_payout2017-07-10 18:33:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length149
author_reputation-18,764,341,719
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@waiyan29291 ·
Hello! I just upvoted you! I help new Steemit members! Upvote this comment and follow me! i will upvote your future posts! To any other visitor, upvote this post also to receive free UpVotes from me! Happy SteemIt!<code>code</code>
👍  
properties (23)
post_id6,036,313
authorwaiyan29291
permlinkre-dan-201774t12738839z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-03 18:57:42
last_update2017-07-03 18:57:42
depth1
children0
net_rshares737,035,213
last_payout2017-07-10 18:57:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length231
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@automatedjanitor ·
Janitor Unit finds Eos development interesting. Much pine sol.
properties (22)
post_id6,047,417
authorautomatedjanitor
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170703t210202489z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-03 21:02:03
last_update2017-07-03 21:02:03
depth1
children0
net_rshares0
last_payout2017-07-10 21:02:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length62
author_reputation25,312,400,495
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ejemai ·
really cute this eos. Hope we get to see more coming
properties (22)
post_id6,071,186
authorejemai
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170704t022535109z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-04 02:25:39
last_update2017-07-04 02:25:39
depth1
children0
net_rshares0
last_payout2017-07-11 02:25:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length52
author_reputation236,229,066,263,446
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@surfyogi ·
Thanks for posting your notes. I appreciate the transparency ;-)
properties (22)
post_id6,080,183
authorsurfyogi
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170704t044334642z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-04 04:43:33
last_update2017-07-04 04:43:33
depth1
children0
net_rshares0
last_payout2017-07-11 04:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length64
author_reputation31,141,055,844,467
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@vinyprop ·
Wishing and hoping that EOS becomes the next ethereum as we know it. ✌️👍👌🤞
properties (22)
post_id6,135,021
authorvinyprop
permlinkre-dan-201774t211817821z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-04 15:48:18
last_update2017-07-04 15:48:18
depth1
children0
net_rshares0
last_payout2017-07-11 15:48:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length74
author_reputation3,649,406,340,175
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@blockchainbros ·
This is great! Much promising advancements to come
properties (22)
post_id6,139,195
authorblockchainbros
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170704t163601012z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-04 16:36:00
last_update2017-07-04 16:36:00
depth1
children0
net_rshares0
last_payout2017-07-11 16:36:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length50
author_reputation190,546,071,796
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dan345 ·
Please upvote me im a poor dev
👍  
properties (23)
post_id6,169,805
authordan345
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170704t224926340z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-04 22:49:30
last_update2017-07-04 22:49:30
depth1
children0
net_rshares1,195,358,810
last_payout2017-07-11 22:49:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation55,377,498,415
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@manish2303 ·
nice post man !!! i recently started language c and i can understand a little bit of your code
properties (22)
post_id6,207,461
authormanish2303
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170705t090234523z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-05 09:02:00
last_update2017-07-05 09:02:00
depth1
children0
net_rshares0
last_payout2017-07-12 09:02:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length94
author_reputation42,331,793,280
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sukhvir ·
Hello Friend Nice Post by You

Please see my post under the title 
"Please Check the POST"
& Respond...

Thank you very much
properties (22)
post_id6,213,217
authorsukhvir
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170705t102537332z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-05 10:25:45
last_update2017-07-05 10:25:45
depth1
children0
net_rshares0
last_payout2017-07-12 10:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length124
author_reputation19,201,419,386
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@binarycrypto ·
I've been learning c++/c for the past year. Pick me up for an interview.
properties (22)
post_id6,720,117
authorbinarycrypto
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170710t062915852z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-10 06:29:21
last_update2017-07-10 06:29:21
depth1
children0
net_rshares0
last_payout2017-07-17 06:29:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length72
author_reputation74,511,314,002
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@xgrosz ·
$0.03
I just hope Dan will stay with the project - 
That would make it a 100% success as we all wish it to be
👍  
properties (23)
post_id6,790,859
authorxgrosz
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170710t213028395z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-10 21:30:30
last_update2017-07-10 21:30:30
depth1
children0
net_rshares7,714,416,749
last_payout2017-07-17 21:30:30
cashout_time1969-12-31 23:59:59
total_payout_value0.019 SBD
curator_payout_value0.006 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length103
author_reputation4,455,422,450,444
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@istiaq69 ·
Welcome to steemit, happy to have you here
I comment to your post to follow me. and I will follow you

I am@istiaq69 , my real name istiaq ahmed:)
Checkout my blog posts, Enjoy your time here and let's get this party started :)
properties (22)
post_id6,886,404
authoristiaq69
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170711t184641416z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-11 18:47:27
last_update2017-07-11 18:47:27
depth1
children0
net_rshares0
last_payout2017-07-18 18:47:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length227
author_reputation992,354,096,132
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@africa ·
hey upvoted and followed ! check my blog about cryptos :) follow for follow ?
properties (22)
post_id7,102,209
authorafrica
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170713t212806696z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-13 21:28:09
last_update2017-07-13 21:28:09
depth1
children0
net_rshares0
last_payout2017-07-20 21:28:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length77
author_reputation209,464,828,796,168
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@thehumblebee · (edited)
$0.03
Hi @dan 
You really are genius! I'm new to all this but trying to understand it, thanks for these informative reads.  My mind is boggled but for less than a month into this - I think i'm okay... :D
👍  
properties (23)
post_id7,340,548
authorthehumblebee
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170716t093309403z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-07-16 09:33:15
last_update2017-07-16 09:36:09
depth1
children0
net_rshares5,733,494,389
last_payout2017-07-23 09:33:15
cashout_time1969-12-31 23:59:59
total_payout_value0.026 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length197
author_reputation659,005,271,928
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@fastdraw07 ·
Hi Dan. I emailed Block.one about a project called Memreez about its viability on EOS, but I haven't heard back.
properties (22)
post_id8,079,101
authorfastdraw07
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170724t034126340z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-24 03:41:15
last_update2017-07-24 03:41:15
depth1
children0
net_rshares0
last_payout2017-07-31 03:41:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length112
author_reputation9,648,158,833
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@resteemable ·
*breathing intensifies*
properties (22)
post_id8,150,803
authorresteemable
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170724t175832754z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-24 17:58:33
last_update2017-07-24 17:58:33
depth1
children0
net_rshares0
last_payout2017-07-31 17:58:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23
author_reputation711,577,524,471
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ankansheth ·
its been always my dream to get an upvote from you @dantheman, u can visit me any time @ankansheth i have huge collection of photography,which
properties (22)
post_id8,210,908
authorankansheth
permlinkre-dan-2017725t125433200z
categoryeos
json_metadata"{"app": "esteem/1.4.6", "format": "markdown+html", "community": "esteem", "tags": "eos"}"
created2017-07-25 07:24:39
last_update2017-07-25 07:24:39
depth1
children0
net_rshares0
last_payout2017-08-01 07:24:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length142
author_reputation42,548,954,077
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@lynda-j-leonard ·
Dan, Grateful to you and others who are brilliant enough to figure all this out and share it. It all makes my head explode but I love to try to learn and understand it a teensy bit. Thanks much for making all this happen. ~ljl~
properties (22)
post_id8,751,299
authorlynda-j-leonard
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170730t193105789z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-07-30 19:31:06
last_update2017-07-30 19:31:06
depth1
children0
net_rshares0
last_payout2017-08-06 19:31:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length227
author_reputation2,052,211,997,492
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nickpoz1122 ·
Interesting.
👍  
properties (23)
post_id8,858,119
authornickpoz1122
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170801t005741243z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-08-01 00:55:12
last_update2017-08-01 00:55:12
depth1
children0
net_rshares377,212,636
last_payout2017-08-08 00:55:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length12
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@malekalmsaddi ·
The most precious coin here is the mind of this man, and the most fast blockchain is his mind.
i really admire this guy @dan
👍  
properties (23)
post_id9,118,094
authormalekalmsaddi
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170803t170146501z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2017-08-03 17:01:45
last_update2017-08-03 17:01:45
depth1
children0
net_rshares737,204,138
last_payout2017-08-10 17:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length124
author_reputation2,691,534,803,926
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bien ·
Wow...EOS is now develop and continue growing this man dan is really the man..very genius man @dantheman
properties (22)
post_id9,554,478
authorbien
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170808t104431627z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dantheman"], "tags": ["eos"]}"
created2017-08-08 10:40:12
last_update2017-08-08 10:40:12
depth1
children0
net_rshares0
last_payout2017-08-15 10:40:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length104
author_reputation115,996,382,246,766
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ganeshaji ·
Hey Dan, i would love to hear your opinion on my article regarding my thoughts on why we need more oversight in the cryptosphere. 

https://steemit.com/cryptocurrency/@ganeshaji/reason-why-we-need-more-regulation-in-cryptocurrency-space
properties (22)
post_id9,756,379
authorganeshaji
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170810t115958755z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/cryptocurrency/@ganeshaji/reason-why-we-need-more-regulation-in-cryptocurrency-space"], "tags": ["eos"]}"
created2017-08-10 12:00:00
last_update2017-08-10 12:00:00
depth1
children0
net_rshares0
last_payout2017-08-17 12:00:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length236
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@willstephens ·
$0.44
So much great progress on EOS, is there a published roadmap or expected release date for the EOS blockchain? Thanks for your amazing contribution to the decentralised world we are creating ;-)
👍  
properties (23)
post_id11,201,016
authorwillstephens
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170827t133740010z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-08-27 13:37:39
last_update2017-08-27 13:37:39
depth1
children0
net_rshares108,853,234,092
last_payout2017-09-03 13:37:39
cashout_time1969-12-31 23:59:59
total_payout_value0.444 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length192
author_reputation486,034,017,599
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yash0108 ·
hi
why your earning is 0.00
properties (22)
post_id11,379,054
authoryash0108
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170829t132042316z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-08-29 13:20:42
last_update2017-08-29 13:20:42
depth1
children0
net_rshares0
last_payout2017-09-05 13:20:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length27
author_reputation3,388,441,561,392
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@knowledgehubb ·
Hlw @dan really sorry for that but now my life is  on last stage because all of my work got punished but sure I don't know how this tag is used ( Eos , bitcoin ) but after I know I am changed this with real tags check my previous post am never try to spam anymore 

Please sorry sorry sorry

Please do something good for me I never try to do it again

Sorry sorry

Please please please help me


Welcome 

 @OriginalWorks
Tip!
👍  
properties (23)
post_id11,741,466
authorknowledgehubb
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170902t112427930z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan", "originalworks"], "tags": ["eos"]}"
created2017-09-02 11:24:54
last_update2017-09-02 11:24:54
depth1
children2
net_rshares508,496,188
last_payout2017-09-09 11:24:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length426
author_reputation-1,764,682,856,619
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@tipu ·
Sorry, the tip is higher then your deposit.<br>You can check your balance by sending 0.001 SBD to @tipu with memo: balance<br>(the minimal tip is 0.1 SBD)
properties (22)
post_id11,741,486
authortipu
permlinkre-re-dan-eos-developer-s-log-stardate-20176-30-20170902t112427930z-20170902t112508
categoryeos
json_metadata{}
created2017-09-02 11:25:15
last_update2017-09-02 11:25:15
depth2
children0
net_rshares0
last_payout2017-09-09 11:25:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length154
author_reputation55,804,171,747,699
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@originalworks ·
originalworks
@OriginalWorks Mention Bot activated by @knowledgehubb. The @OriginalWorks bot has determined this post by @dan to be original material and upvoted it! 
<center>![OW2.gif](https://steemitimages.com/DQmezPDjarzhbcNvy3CGQqf55zSnCfUJCFreUKLWdNyiL7m/OW2.gif)</center> 

To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message! 

For more information, [Click Here!](https://steemit.com/writing/@originalworks/originalworks-bot-explanation-and-info)
properties (22)
post_id11,741,540
authororiginalworks
permlinkre-re-dan-eos-developer-s-log-stardate-20176-30-20170902t112427930z-20170902t112610
categoryeos
json_metadata"{"app": "pysteem/0.5.6"}"
created2017-09-02 11:26:09
last_update2017-09-02 11:26:09
depth2
children0
net_rshares0
last_payout2017-09-09 11:26:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length490
author_reputation79,229,860,066,508
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hasanhemon ·
nice post
properties (22)
post_id12,395,002
authorhasanhemon
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20170909t181526031z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-09-09 18:15:33
last_update2017-09-09 18:15:33
depth1
children0
net_rshares0
last_payout2017-09-16 18:15:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@splendorhub ·
Thank you for the info. Best wishes.
properties (22)
post_id14,847,470
authorsplendorhub
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20171009t034738929z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-10-09 03:47:18
last_update2017-10-09 03:47:18
depth1
children0
net_rshares0
last_payout2017-10-16 03:47:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length36
author_reputation12,915,496,650,148
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@antoniodpz ·
Good morning, please, I need to verify a transaction made in which I made a shipping error.
I send my steem to a bitcoin portfolio in bittrex and I need my steem to be returned to my steemit portfolio, this is the transaction made

yesterday	Transfer 14.298 STEEM to bittrex	1bNaaF85GokZCmWfoRRQPFkfEGeRaLoKe


Appreciating the attention, greetings and thanks
properties (22)
post_id15,559,387
authorantoniodpz
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20171018t091928858z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-10-18 09:24:00
last_update2017-10-18 09:24:00
depth1
children0
net_rshares0
last_payout2017-10-25 09:24:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length359
author_reputation363,078,054,770
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@papa-pepper ·
https://i.imgur.com/Hz5c8Q6.jpg

I am not sure if you saw that some of these had been minted, or if you would be interesting in having one of your own, but i have one reserved as a gift for you.
properties (22)
post_id15,685,713
authorpapa-pepper
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20171020t042020054z
categoryeos
json_metadata"{"app": "steemit/0.1", "image": ["https://i.imgur.com/Hz5c8Q6.jpg"], "tags": ["eos"]}"
created2017-10-20 04:20:30
last_update2017-10-20 04:20:30
depth1
children0
net_rshares0
last_payout2017-10-27 04:20:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length194
author_reputation1,441,746,443,905,746
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@soonfest ·
$0.51
@dantheman when will the next EOS update happen?
👍  
properties (23)
post_id16,565,451
authorsoonfest
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20171031t204104444z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dantheman"], "tags": ["eos"]}"
created2017-10-31 20:41:06
last_update2017-10-31 20:41:06
depth1
children0
net_rshares245,483,016,115
last_payout2017-11-07 20:41:06
cashout_time1969-12-31 23:59:59
total_payout_value0.499 SBD
curator_payout_value0.006 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length48
author_reputation3,831,186,849
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@zacknight ·
Great update and very good news, what a potent crew in the making. This is awesome! All for one and one for all!!! Namaste :)
properties (22)
post_id20,933,513
authorzacknight
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20171218t183808339z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-18 18:33:21
last_update2017-12-18 18:33:21
depth1
children0
net_rshares0
last_payout2017-12-25 18:33:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length125
author_reputation-690,063,233,552
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@saysay ·
https://steemit.com/food/@saysay/losing-weight-tip-portion-control-police-your-portions
properties (22)
post_id23,352,212
authorsaysay
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180103t173501058z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/food/@saysay/losing-weight-tip-portion-control-police-your-portions"], "tags": ["eos"]}"
created2018-01-03 17:35:00
last_update2018-01-03 17:35:00
depth1
children0
net_rshares0
last_payout2018-01-10 17:35:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length87
author_reputation29,968,614,598
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mihailo489 ·
Follow for follow :) lets earn money
properties (22)
post_id24,654,123
authormihailo489
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180109t210459469z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2018-01-09 21:05:00
last_update2018-01-09 21:05:00
depth1
children0
net_rshares0
last_payout2018-01-16 21:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length36
author_reputation36,775,243,377
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@a381 ·
great we are also arranging simple approach blockchain classes for tech interested people here are the details https://steemit.com/adnan/@a381/free-blockchain-development-classes-through-google-classroom
properties (22)
post_id35,146,624
authora381
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180225t164253831z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/adnan/@a381/free-blockchain-development-classes-through-google-classroom"], "tags": ["eos"]}"
created2018-02-25 16:42:57
last_update2018-02-25 16:42:57
depth1
children0
net_rshares0
last_payout2018-03-04 16:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length203
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jmhb85 ·
https://steemit.com/steemit/@jmhb85/campaign-to-get-sbd-listed-on-binance
properties (22)
post_id36,956,111
authorjmhb85
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180306t034457307z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/steemit/@jmhb85/campaign-to-get-sbd-listed-on-binance"], "tags": ["eos"]}"
created2018-03-06 03:44:57
last_update2018-03-06 03:44:57
depth1
children0
net_rshares0
last_payout2018-03-13 03:44:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length73
author_reputation6,726,323,919,212
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mattygrace ·
Searching for a better way to transact business without going through stressful and unnecessary government procedures?UNLOCKED! FIVE HIDDEN BENEFITS OF CRYPTOCURRENCY https://steemit.com/crypto/@mattygrace/unlocked-five-hidden-benefits-of-cryptocurrency#comments![unnamed (2)1.jpg](https://steemitimages.com/DQmRDkP5wFc654d9RtiMoyyjiQmLqokdvC9sVUWB4gVfcSq/unnamed%20(2)1.jpg)
properties (22)
post_id38,700,372
authormattygrace
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180316t020938868z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/crypto/@mattygrace/unlocked-five-hidden-benefits-of-cryptocurrency#comments"], "image": ["https://steemitimages.com/DQmRDkP5wFc654d9RtiMoyyjiQmLqokdvC9sVUWB4gVfcSq/unnamed%20(2)1.jpg"], "tags": ["eos"]}"
created2018-03-15 06:08:15
last_update2018-03-15 06:08:15
depth1
children0
net_rshares0
last_payout2018-03-22 06:08:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length375
author_reputation0
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@eyemon1 ·
really cool to read that progress on my pick for the year....last year was ripple,,,,,,always doge.   lol.... YES  E O S!!!!! or E O S YES
nice
👍  
properties (23)
post_id38,993,958
authoreyemon1
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180317t014806157z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2018-03-17 01:48:09
last_update2018-03-17 01:48:09
depth1
children0
net_rshares485,269,504
last_payout2018-03-24 01:48:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length143
author_reputation33,539,420,580
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@jlalvarez ·
Bitcoin has a lot of similarity. Bitcoin we use our own footprint, which can be plagiarized for other investors. DPOS uses fingerprints that are totally private and difficult to decipher, which makes it safer according to @dan
properties (22)
post_id42,528,281
authorjlalvarez
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180407t184906515z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["dan"], "tags": ["eos"]}"
created2018-04-07 18:20:57
last_update2018-04-07 18:20:57
depth1
children0
net_rshares0
last_payout2018-04-14 18:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length226
author_reputation158,895,321,882
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@trending2018 ·
Here I am seeing that your payout has been declined. Can you explain why?
properties (22)
post_id54,671,176
authortrending2018
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180628t094107153z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit\/0.1"}
created2018-06-28 09:41:06
last_update2018-06-28 09:41:06
depth1
children0
net_rshares0
last_payout2018-07-05 09:41:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length73
author_reputation9,120,108,393
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dragonplan ·
HI. nice to meet you. this is Brian Liu from China. i read a lot about your blog,you have many fresh ideas.

Here in china we are developing a Blockchain community named bihu, website is www.bihu.com, where people can communicate and share new and innovative ideas.

I'm thinking about translate your blog and post it on the community if you agree, just sharing knowledge with people, it's not for commercial purpose.

I'm looking forward to your early response.
properties (22)
post_id56,783,062
authordragonplan
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180717t033546839z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit\/0.1"}
created2018-07-17 03:35:48
last_update2018-07-17 03:35:48
depth1
children0
net_rshares0
last_payout2018-07-24 03:35:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length462
author_reputation4,524,343,346
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sohelsarowar ·
Thank's for your good post. I follow you, please follow me, sir. I'm totally new to Steemit. Hope you will follow me and help me get filled up by Upvoting.  Thank you so much.
properties (22)
post_id58,480,101
authorsohelsarowar
permlinkre-dan-eos-developer-s-log-stardate-20176-30-20180802t042638867z
categoryeos
json_metadata{"links":[],"tags":["eos"],"app":"busy\/2.5.4","format":"markdown","image":[],"users":[],"community":"busy"}
created2018-08-02 04:26:42
last_update2018-08-02 04:26:42
depth1
children0
net_rshares0
last_payout2018-08-09 04:26:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length175
author_reputation81,075,360,585
root_title"EOS - Developer’s Log Stardate 20176.30"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000