create account

EOS - Developer Log, Stardate 201707.7 by dan

View this thread on: hive.blogpeakd.comecency.com
· @dan ·
EOS - Developer Log, Stardate 201707.7
![](https://steemitimages.com/DQmPoWMGUwuR4Xe4udDfeD4RYyXdp185WgUmTkyHv9ehDh5/image.png)

This week we made great strides toward refining the architecture of EOS and defining the developer API. In particular we have identified a programming model that should enable parallelism while maximizing ease of use and clarity of the code.

### Updated Example Contracts

Those who have been following github may have noticed that we have started to integrate a number of [example contracts](https://github.com/EOSIO/eos/tree/master/contracts/currency) to test our architecture and ensure we can cover the desired use cases. 

This is what a simple currency contract looks like today:

```
/**
 *  Transfer requires that the sender and receiver be the first two
 *  accounts notified and that the sender has provided authorization.
 */
struct Transfer {
  AccountName from;
  AccountName to;
  uint64_t    amount = 0;
  char        memo[]; /// extra bytes are treated as a memo and ignored by logic
};

struct CurrencyAccount {
   CurrencyAccount( uint64_t b = 0 ):balance(b){}

   uint64_t balance = 0;

   /** used as a hint to Db::store to tell it which table name within the current 
    *  scope to use.  Data is stored in tables under a structure like
    *
    *  scope/code/table/key->value
    *
    *  In this case the "singleton" table is designed for constant named keys that
    *  refer to a unique object type. User account balances are stored here:
    *  
    *  username/currency/singleton/account -> CurrencyAccount
    */ 
   static Name tableId() { return NAME("singleton"); }
};


void apply_currency_transfer() {
   const auto& transfer  = currentMessage<Transfer>();

   /** will call apply_currency_transfer() method in code defined by transfer.to and transfer.from */
   requireNotice( transfer.to, transfer.from );
   requireAuth( transfer.from );

   static CurrencyAccount from_account;
   static CurrencyAccount to_account;

   Db::get( transfer.from, NAME("account"), from_account );
   Db::get( transfer.to, NAME("account"), to_account );

   assert( from_account.balance >= transfer.amount, "insufficient funds" );
   from_account.balance -= transfer.amount;
   to_account.balance   += transfer.amount;

   if( from_account.balance == 0 )
      Db::remove<CurrencyAccount>( transfer.from, NAME("account") );
   else
      Db::store( transfer.from, NAME("account"), from_account ); 

   Db::store( transfer.to, NAME("account"), to_account ); 
}

```

There are several notable aspects about this currency contract:

1. it looks like normal sequential code
2. but it can transfer among two pairs of users in parallel 

What does this mean?  **It means that while Alice is transferring to Bob, Sam can be transferring to Jill.  The performance of this currency contract is no longer limited by the single threaded performance constraints of prior currency contracts.**  


### Start of Exchange Contract
We have also implemented a simple [exchange contract that accepts deposits and withdraws](https://github.com/EOSIO/eos/blob/master/contracts/exchange/exchange.cpp) from two different currency contracts:

```
struct Account {
   uint64_t   a = 0;
   uint64_t   b = 0;
   int        open_orders = 0;

   bool isEmpty()const { return !(a|b|open_orders); }
   /**
    *  Balance records for all exchange users are stored here
    *  exchange/exchange/balance/username -> Balance
    */
   static Name tableId() { return Name("balance"); }
};



/**
 *  This method is called after the "transfer" action of code
 *  "currencya" is called and "exchange" is listed in the notifiers.
 */
void apply_currencya_transfer() {
   const auto& transfer  = currentMessage<Transfer>();

   if( transfer.to == "exchange" ) {
      static Balance to_balance;
      Db::get( transfer.from, to_balance );
      to_balance.a += transfer.amount;
      Db::store( transfer.from, to_balance );
   } else if( transfer.from == "exchange" ) {
      requireAuth( transfer.to ); /// require the reciever of funds (account owner) to authorize this transfer

      static Balance to_balance;
      auto balance = Db::get( transfer.to, to_balance );
      assert( balance.a >= transfer.amount, "insufficient funds to withdraw" );
      balance.a -= transfer.amount;

      if( balance.isEmpty() )
         Db::remove<Balance>( transfer.to );
      else
         Db::store( transfer.to, to_balance );
   } else {
      assert( false, "notified on transfer that is not relevant to this exchange" );
   }
}

/**
 *  This method is called after the "transfer" action of code
 *  "currencya" is called and "exchange" is listed in the notifiers.
 */
void apply_currencyb_transfer() {
   const auto& transfer  = currentMessage<Transfer>();

   if( transfer.to == "exchange" ) {
      static Balance to_balance;
      Db::get( transfer.from, to_balance );
      to_balance.b += transfer.amount;
      Db::store( transfer.from, to_balance );
   } else if( transfer.from == "exchange" ) {
      requireAuth( transfer.to ); /// require the reciever of funds (account owner) to authorize this transfer

      static Balance to_balance;
      auto balance = Db::get( transfer.to, to_balance );
      assert( balance.b >= transfer.amount, "insufficient funds to withdraw" );
      balance.b -= transfer.amount;

      if( balance.isEmpty() )
         Db::remove<Balance>( transfer.to );
      else
         Db::store( transfer.to, to_balance );
   } else {
      assert( false, "notified on transfer that is not relevant to this exchange" );
   }
}
```

What is interesting about this implementation is that deposits and withdraws occur without any asynchronous callbacks or other complex pending states. Rather than the user asking the exchange to tell the currency contract to withdraw funds, the exchange gives everyone permission to transfer from the exchange with the caveat that the exchange's handler for transfers is called on both deposits and withdraws. If a user attempts to withdraw more than their balance with the exchange contract the handler will reject the transfer attempt.

We have not quite yet implemented working tests of the exchange contract deposit and withdraw, but that is on the agenda for next week. We will also be implementing a basic social media application to prove that we have all the existing use cases covered.

### Synchronous Calls

One of the biggest developments this week as an architecture that allows synchronous calls among tightly coupled applications while still retaining most of the benefits of parallelism.  A future blog post will go into greater detail on our memory and parallel execution structure.  

### Cost of Storage

Some people have expressed concerns that if tokens are worth $30 billion dollars and there is only 1 TB of storage capacity that the cost of storage will be too high.  I have prepared an article that explains how we address this and keep the cost of storage mostly independent from token price.

EOS.IO development is making great strides!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 473 others
👎  , ,
properties (23)
authordan
permlinkeos-developer-log-stardate-201707-7
categoryeos
json_metadata{"tags":["eos","developerslog"],"image":["https://steemitimages.com/DQmPoWMGUwuR4Xe4udDfeD4RYyXdp185WgUmTkyHv9ehDh5/image.png"],"links":["https://github.com/EOSIO/eos/tree/master/contracts/currency","https://github.com/EOSIO/eos/blob/master/contracts/exchange/exchange.cpp"],"app":"steemit/0.1","format":"markdown"}
created2017-07-07 21:47:09
last_update2017-07-07 21:47:09
depth0
children109
last_payout2017-07-14 21:47:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,996
author_reputation155,470,101,136,708
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id7,690,373
net_rshares194,728,869,494,689
author_curate_reward""
vote details (540)
@abhijeet.singh ·
Great going with EOS development @dan! Was going through the [Whitepaper](https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md) and the vision seems to be: **Develop an OS for DApps**. Since we already have infrastructure to host DApps: Ethereum being one the most mature ones which envisions to have one Virtual Machine for all - **The EVM**:

* As an "Operating System", what EOS plans to offer beyond Ethereum?
* How easy/difficult it will be to port an Ethereum DApp to EOS DApp?
* Free Usage - Current frameworks charge a fees (gas) for using the Blockchain resources. How EOS plans to absorb the infra fees, won't the Miners be rewarded for provisioning infra?

Looking forward to a standard doc having a comparative analysis of frameworks, this would benefit potential users to decide EOS' use-cases. Again great work @dan, the async exchange contract is indeed a value add.
properties (22)
authorabhijeet.singh
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t164753719z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"links":["https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md"],"app":"steemit/0.1"}
created2017-07-08 16:47:51
last_update2017-07-08 16:47:51
depth1
children0
last_payout2017-07-15 16:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length902
author_reputation1,661,554,346
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,772,058
net_rshares0
@abit ·
$0.71
I wonder why an EOS-based exchange contract need deposit or withdrawals at all. It should like BitShares, all tokens are already in an exchange, users can place orders directly.
👍  ,
properties (23)
authorabit
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t141946500z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 14:19:48
last_update2017-07-08 14:19:48
depth1
children3
last_payout2017-07-15 14:19:48
cashout_time1969-12-31 23:59:59
total_payout_value0.532 HBD
curator_payout_value0.175 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation141,171,499,037,785
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,757,185
net_rshares160,666,139,701
author_curate_reward""
vote details (2)
@dan ·
$0.11
Because exchange contract runs in parallel.  A user could construct a transaction to transfer and then create order atomicly, but unless the order is filled immediately they will have to execute a withdrawal later.
👍  ,
properties (23)
authordan
permlinkre-abit-re-dan-eos-developer-log-stardate-201707-7-20170708t151238872z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 15:12:39
last_update2017-07-08 15:12:39
depth2
children1
last_payout2017-07-15 15:12:39
cashout_time1969-12-31 23:59:59
total_payout_value0.083 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length214
author_reputation155,470,101,136,708
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,762,469
net_rshares25,046,272,689
author_curate_reward""
vote details (2)
@abit · (edited)
$0.05
I think , if they're fully in parallel, then the two things (deposit then create order) are hard if not impossible to be processed atomically if there're two operations in one transaction. The deposit itself has to be a message from a user to the token contract, after it's done, communication should be made between the token contract and the exchange contract. Either the exchange contract explicitly ask the token contract to make sure the deposit is done, which requires a lock and perhaps a delay, or the token contract need to send a message to the exchange contract, which will need a delay as well, and contains the user's info when the user requested the deposit, but in this case, the user can directly request an "order creation" in the same way, so doesn't need a single "deposit" feature. When an order is filled, the exchange contract can immediately talk to another token contract directly to deposit the funds back to the user, so don't need the user to request a withdrawal. I do agree that simple deposit and withdrawal features are acceptable, which will help keep state in one contract only and simplify the logic, but perhaps it's not necessary. Ideally, the user should be able to attach a script with a deposit (which is a message to the token contract), for example, do nothing, or to place an order immediately; also in the script, the user can indicate when the order is filled/expired/cancelled, return the funds to the user or place another order, etc, etc.

//UPDATE: above comment was written before carefully read the blog post and the code, so it may be wrong. I will update with more info later.

//UPDATE2: so messages will be validated by all registered notifiers (contracts). If failed to pass a validation in one notifier then all changes done in other contracts will need to be rolled back. Interesting. How to do them in parallel?
👍  
properties (23)
authorabit
permlinkre-dan-re-abit-re-dan-eos-developer-log-stardate-201707-7-20170715t113512193z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 11:35:09
last_update2017-07-15 13:22:00
depth3
children0
last_payout2017-07-22 11:35:09
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,869
author_reputation141,171,499,037,785
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,559,847
net_rshares12,481,177,408
author_curate_reward""
vote details (1)
@rival ·
$0.02
I totally agree, bitshares is the way to go and the future
👍  ,
properties (23)
authorrival
permlinkre-abit-re-dan-eos-developer-log-stardate-201707-7-20170709t091305686z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 09:13:06
last_update2017-07-09 09:13:06
depth2
children0
last_payout2017-07-16 09:13:06
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation56,487,128,983,692
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,845,174
net_rshares5,425,100,806
author_curate_reward""
vote details (2)
@amnashahzad ·
$0.43
This is great work, specially "One of the biggest developments this week as an architecture that allows synchronous calls among tightly coupled applications while still retaining most of the benefits of parallelism." I read your post about "Storage" you explained the things in great way, good work dan
👍  , , , , , , , , , , ,
properties (23)
authoramnashahzad
permlinkre-dan-201779t134351119z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-07-09 08:43:54
last_update2017-07-09 08:43:54
depth1
children0
last_payout2017-07-16 08:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.430 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length302
author_reputation32,703,474,305
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,843,237
net_rshares109,510,974,839
author_curate_reward""
vote details (12)
@andrestales ·
Good morning @dan you are a character in steemit I like too much your post I learn enough thanks for contributing that grain of sand. a greeting
properties (22)
authorandrestales
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t140009696z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-08 14:00:12
last_update2017-07-08 14:00:12
depth1
children0
last_payout2017-07-15 14:00:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length144
author_reputation1,051,216,129,970
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,755,383
net_rshares0
@arcange ·
Congratulations @dan!
Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170707) in the following category:

* Pending payout - Ranked 1 with $ 1461,9
properties (22)
authorarcange
permlinkre-eos-developer-log-stardate-201707-7-20170707t163447000z
categoryeos
json_metadata""
created2017-07-08 14:33:51
last_update2017-07-08 14:33:51
depth1
children0
last_payout2017-07-15 14:33:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation1,148,338,046,623,517
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,758,507
net_rshares0
@automatedjanitor · (edited)
Much pine sol to @dan developer unit for increasing knowledge and development of blockchain. Much progress made and to be made. Continue efforts for great pine sol gains. Unit must return to steemit floor cleaning duty.
properties (22)
authorautomatedjanitor
permlinkre-dan-201779t95442613z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-09 14:54:45
last_update2017-07-09 14:55:57
depth1
children0
last_payout2017-07-16 14:54:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation25,295,943,921
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,875,617
net_rshares0
@banglasteve ·
@Dan lets show the naysayers the power of EOS (Ethereum On Steroids)...
👍  ,
properties (23)
authorbanglasteve
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t121718398z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-08 12:18:36
last_update2017-07-08 12:18:36
depth1
children0
last_payout2017-07-15 12:18:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation199,151,483,882
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,746,801
net_rshares2,414,394,215
author_curate_reward""
vote details (2)
@behamot ·
Hello @dan, Is it the case that EOS contract developer would need to understand how to write a code which can be executed in parallel. Or the rules will be somehow naturally enforced by the language. I believe that for average programmer is rather a difficult task to write bug free programs which can be executed safely in parallel.
properties (22)
authorbehamot
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t161531260z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-09 16:15:33
last_update2017-07-09 16:15:33
depth1
children0
last_payout2017-07-16 16:15:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length333
author_reputation86,301,808,625
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,884,234
net_rshares0
@belerophon ·
Ian Grigg explains EOS scaling:
https://steemit.com/eos/@belerophon/ian-grigg-explains-the-message-based-architecture-of-eos
properties (22)
authorbelerophon
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t211742675z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@belerophon/ian-grigg-explains-the-message-based-architecture-of-eos"],"app":"steemit/0.1"}
created2017-07-08 21:18:51
last_update2017-07-08 21:18:51
depth1
children0
last_payout2017-07-15 21:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation3,048,739,387,126
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,795,921
net_rshares0
@bilalhaider ·
I am a programmer and i love EOS :)
👍  
properties (23)
authorbilalhaider
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t063835681z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 06:38:39
last_update2017-07-09 06:38:39
depth1
children0
last_payout2017-07-16 06:38:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation-1,110,314,579,307
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,834,994
net_rshares922,740,652
author_curate_reward""
vote details (1)
@bindu ·
I wonder why an EOS-based exchange contract need deposit. Indeed a great post so far. I followed you and do follow me @bindu. I wanna be a good friend of yours
properties (22)
authorbindu
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t230016899z
categoryeos
json_metadata{"tags":["eos"],"users":["bindu"],"app":"steemit/0.1"}
created2017-07-09 10:16:03
last_update2017-07-09 10:16:03
depth1
children0
last_payout2017-07-16 10:16:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length159
author_reputation5,052,906,972,743
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,849,864
net_rshares0
@bipul ·
Great post
properties (22)
authorbipul
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t080820266z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 08:08:30
last_update2017-07-08 08:08:30
depth1
children0
last_payout2017-07-15 08:08:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation2,897,172,304,197
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,729,930
net_rshares0
@breezer ·
EOS is an ETH killer and is using ETH to do it! It's so poetic.... This is How Nerds Do Gangster Shit!
properties (22)
authorbreezer
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t132424859z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 13:24:24
last_update2017-07-08 13:24:24
depth1
children0
last_payout2017-07-15 13:24:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation182,757,597,590
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,752,209
net_rshares0
@cainplant ·
i BELIEVE in EOS
properties (22)
authorcainplant
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t034132968z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 03:41:36
last_update2017-07-09 03:41:36
depth1
children0
last_payout2017-07-16 03:41:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation1,434,153,896,510
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,822,995
net_rshares0
@captain85 ·
Sounds very innovative. trransfer among two pairs of users in parallel etc
properties (22)
authorcaptain85
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t105410764z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 10:54:06
last_update2017-07-08 10:54:06
depth1
children0
last_payout2017-07-15 10:54:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation6,599,765,786
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,740,270
net_rshares0
@cryptodata ·
It's amazing what you've done with Steemit so far! I can't imagine where we'll go from here. EOS is such a great supplement to Steemit and I'm thankful that you're here from the ground floor making the community a better place every day :)
properties (22)
authorcryptodata
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t232239222z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 23:22:39
last_update2017-07-08 23:22:39
depth1
children0
last_payout2017-07-15 23:22:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length239
author_reputation1,577,806,466,314
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,805,810
net_rshares0
@dana-edwards ·
This looks much better than Solidity. I can't wait to test EOS as a developer.
properties (22)
authordana-edwards
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t064215883z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 06:42:15
last_update2017-07-08 06:42:15
depth1
children0
last_payout2017-07-15 06:42:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation353,623,611,191,427
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,724,766
net_rshares0
@dkinx ·
helo guys, i am new in steemit and i understand that this platform works by blogging and getting paid if your followers like the content.pls follow me in my blog, i have written some little things and i will write more in the future like once every week, pls follow me at   @dkinx
properties (22)
authordkinx
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t223655872z
categoryeos
json_metadata{"tags":["eos"],"users":["dkinx"],"app":"steemit/0.1"}
created2017-07-08 22:36:54
last_update2017-07-08 22:36:54
depth1
children0
last_payout2017-07-15 22:36:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation17,499,415,125
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,802,444
net_rshares0
@dkinx ·
pls follow me and upvote me, i will follow you back, follow for follow @dkinx
properties (22)
authordkinx
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t223828769z
categoryeos
json_metadata{"tags":["eos"],"users":["dkinx"],"app":"steemit/0.1"}
created2017-07-08 22:38:27
last_update2017-07-08 22:38:27
depth1
children0
last_payout2017-07-15 22:38:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation17,499,415,125
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,802,553
net_rshares0
@dlina-v-metrah ·
Do you think that on other stock exchanges, except for Kraken, your tokens will soon appear?
properties (22)
authordlina-v-metrah
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t122536869z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 12:25:51
last_update2017-07-08 12:25:51
depth1
children1
last_payout2017-07-15 12:25:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation4,193,087,735,412
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,747,435
net_rshares0
@lowenbrau ·
$0.57
http://coinmarketcap.com/assets/eos/#markets
👍  
properties (23)
authorlowenbrau
permlinkre-dlina-v-metrah-re-dan-eos-developer-log-stardate-201707-7-20170709t151919430z
categoryeos
json_metadata{"tags":["eos"],"links":["http://coinmarketcap.com/assets/eos/#markets"],"app":"steemit/0.1"}
created2017-07-09 15:19:21
last_update2017-07-09 15:19:21
depth2
children0
last_payout2017-07-16 15:19:21
cashout_time1969-12-31 23:59:59
total_payout_value0.431 HBD
curator_payout_value0.143 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation436,324,059,730
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,878,285
net_rshares145,505,962,938
author_curate_reward""
vote details (1)
@doqstrader ·
I like EOS.. but I don't own it one..
👍  ,
properties (23)
authordoqstrader
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t093652865z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 09:36:54
last_update2017-07-08 09:36:54
depth1
children0
last_payout2017-07-15 09:36:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation756,354,394,224
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,735,431
net_rshares4,641,617,903
author_curate_reward""
vote details (2)
@ejemai · (edited)
thank you @dan for these steps you take everyday to redefine and sweeten human progression. You add and keep adding and sometimes i wonder if you are ever gonna stop getting better. please don't stop and Steemit, Bitshares, EOS and your contributions shouldn't stop too.
👍  ,
properties (23)
authorejemai
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t064956941z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1","users":["dan"]}
created2017-07-09 06:47:03
last_update2017-07-09 06:48:18
depth1
children0
last_payout2017-07-16 06:47:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation265,163,230,573,530
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,835,546
net_rshares1,535,679,043
author_curate_reward""
vote details (2)
@enazwahsdarb ·
So what's the concluding price? Is it $30 billion for 1TB? :)
properties (22)
authorenazwahsdarb
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t210703544z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 21:07:03
last_update2017-07-09 21:07:03
depth1
children0
last_payout2017-07-16 21:07:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation37,577,290,910,321
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,912,404
net_rshares0
@eulises ·
excelente post!
soy nuevo en la plataforma pero estare publicando contenido acerca de las cryptodivisas!
👍  
properties (23)
authoreulises
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t112224866z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 11:22:21
last_update2017-07-08 11:22:21
depth1
children0
last_payout2017-07-15 11:22:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation10,754,244,693
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,742,356
net_rshares980,774,774
author_curate_reward""
vote details (1)
@frankbacon ·
$0.23
You know... this post is a great example of how you guys SHOULD have been using SteemIt when you launched.  SteemIt is a PERFECT platform for Press Releases and documenting changes and news about something... anything.  In my case, I use Steem as a Publishing System.  The LEAST you guys could have done at SteemIt was to post REGULARLY about the Platform, the day to day operations, and important updates.

Glad to see you've FINALLY learned this for EOS.  Maybe @ned will get a clue after this post and go back to some regular posting about the Company he's in charge of...

Also, please understand that I'm just being FRANK and not looking to insult YOU or anyone related to SteemIt Inc.  I just think it's hysterically obvious and felt the need to point it out.

Good luck with EOS and SteemON my man...

![Imgur](http://i.imgur.com/pu6UEMO.jpg)
👍  , , , , ,
properties (23)
authorfrankbacon
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t220858108z
categoryeos
json_metadata{"tags":["eos"],"users":["ned"],"image":["http://i.imgur.com/pu6UEMO.jpg"],"app":"steemit/0.1"}
created2017-07-07 22:08:33
last_update2017-07-07 22:08:33
depth1
children0
last_payout2017-07-14 22:08:33
cashout_time1969-12-31 23:59:59
total_payout_value0.180 HBD
curator_payout_value0.054 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length849
author_reputation36,630,927,301,955
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,692,050
net_rshares53,374,539,404
author_curate_reward""
vote details (6)
@freedomengineer ·
$19.10
You @Dan are one of the vital few who are pushing human progress forward. Thank you. Most of the rest of us here are just hairless monkeys. (Myself included). Keep on building that market for liberty.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorfreedomengineer
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t223238016z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-07 22:32:39
last_update2017-07-07 22:32:39
depth1
children8
last_payout2017-07-14 22:32:39
cashout_time1969-12-31 23:59:59
total_payout_value15.425 HBD
curator_payout_value3.671 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation5,979,020,815,385
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,694,023
net_rshares4,304,968,745,042
author_curate_reward""
vote details (29)
@bnft ·
$0.83
I second this notion, Kudos to @dan!
👍  , ,
properties (23)
authorbnft
permlinkre-freedomengineer-re-dan-eos-developer-log-stardate-201707-7-20170708t185556285z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-08 18:55:57
last_update2017-07-08 18:55:57
depth2
children0
last_payout2017-07-15 18:55:57
cashout_time1969-12-31 23:59:59
total_payout_value0.623 HBD
curator_payout_value0.206 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation60,088,106,058
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,783,851
net_rshares191,987,551,118
author_curate_reward""
vote details (3)
@cryptosteve ·
$0.03
EOS is still fighting for a good place in the market, anyway the idea and technology behind it is great. But Marketing and usage is the main key to gain value in the market and EOS still Lacks that.
so my message: Do not focus only on the development of the coin itself in terms of technology, but focus as well on gaining a lot of Merchants in order to rise the value. Furthermore try to include EOS in other famous exchanges.
Cheers
👍  , , , , ,
properties (23)
authorcryptosteve
permlinkre-freedomengineer-re-dan-eos-developer-log-stardate-201707-7-20170708t131004120z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 13:10:18
last_update2017-07-08 13:10:18
depth2
children1
last_payout2017-07-15 13:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length434
author_reputation210,207,479,550
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,751,081
net_rshares6,731,470,326
author_curate_reward""
vote details (6)
@phxurbangardens ·
I feel like once the tech is proven worthy of use it will be adopted with ease which makes marketing easier as well
👍  ,
properties (23)
authorphxurbangardens
permlinkre-cryptosteve-re-freedomengineer-re-dan-eos-developer-log-stardate-201707-7-20170708t225441517z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 22:54:39
last_update2017-07-08 22:54:39
depth3
children0
last_payout2017-07-15 22:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation5,134,350,334
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,803,685
net_rshares2,303,982,873
author_curate_reward""
vote details (2)
@johnsmith ·
$4.80
Most people do not understand why Dan is doing what he is doing - Dan isn't making money or neat tech, he is making a better future for all of us. Sounds a bit grandiose but it is simply the truth. One day EOS and other blockchain tech may enable governance without the coercion, violence, corruption, disparity and waste we all seem to accept as normal today. The big picture for these blockchains is very, very big...
👍  , , , , , , , ,
properties (23)
authorjohnsmith
permlinkre-freedomengineer-re-dan-eos-developer-log-stardate-201707-7-20170708t142640843z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 14:26:42
last_update2017-07-08 14:26:42
depth2
children2
last_payout2017-07-15 14:26:42
cashout_time1969-12-31 23:59:59
total_payout_value4.713 HBD
curator_payout_value0.083 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length419
author_reputation22,729,726,767,685
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,757,833
net_rshares1,085,891,827,632
author_curate_reward""
vote details (9)
@imransoudagar ·
That's the idea, let's see how things will turn out in future.
👍  
properties (23)
authorimransoudagar
permlinkre-johnsmith-re-freedomengineer-re-dan-eos-developer-log-stardate-201707-7-20170709t180142511z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:01:45
last_update2017-07-09 18:01:45
depth3
children0
last_payout2017-07-16 18:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation28,320,157,974,975
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,894,669
net_rshares2,628,964,969
author_curate_reward""
vote details (1)
@satoshimoto ·
I could not have said it better myself. Thank you
👍  
properties (23)
authorsatoshimoto
permlinkre-johnsmith-re-freedomengineer-re-dan-eos-developer-log-stardate-201707-7-20170709t015350457z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 01:53:51
last_update2017-07-09 01:53:51
depth3
children0
last_payout2017-07-16 01:53:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation269,916,745,612
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,815,982
net_rshares1,096,856,501
author_curate_reward""
vote details (1)
@mralan ·
$0.64
Thank you Dan for all your devotion on the EOS project. It's exciting to see big names beginning to back EOS. 
https://media.giphy.com/media/n0ZIZjeF4w0bS/giphy.gif
👍  , , , ,
properties (23)
authormralan
permlinkre-freedomengineer-re-dan-eos-developer-log-stardate-201707-7-20170709t055611183z
categoryeos
json_metadata{"tags":["eos"],"image":["https://media.giphy.com/media/n0ZIZjeF4w0bS/giphy.gif"],"app":"steemit/0.1"}
created2017-07-09 05:56:12
last_update2017-07-09 05:56:12
depth2
children0
last_payout2017-07-16 05:56:12
cashout_time1969-12-31 23:59:59
total_payout_value0.491 HBD
curator_payout_value0.149 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation-888,240,113,906
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,832,103
net_rshares149,141,664,102
author_curate_reward""
vote details (5)
@spaceguard ·
True Flip {ICO} - Already running a transparent blockchain lottery! Bomb! Bonus 20%! Hurry! :)
The platform is already working and making a profit :)
https://steemit.com/ico/@happycoin/true-flip-ico-already-running-a-transparent-blockchain-lottery-bomb-bonus-20-hurry
https://steemitimages.com/0x0/https://gifyu.com/images/20_600x200.gif
👍  ,
👎  ,
properties (23)
authorspaceguard
permlinkre-freedomengineer-re-dan-eos-developer-log-stardate-201707-7-20170709t183624359z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/0x0/https://gifyu.com/images/20_600x200.gif"],"links":["https://steemit.com/ico/@happycoin/true-flip-ico-already-running-a-transparent-blockchain-lottery-bomb-bonus-20-hurry"],"app":"steemit/0.1"}
created2017-07-09 18:36:24
last_update2017-07-09 18:36:24
depth2
children0
last_payout2017-07-16 18:36:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length337
author_reputation-14,986,899,242
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,897,936
net_rshares-893,608,061
author_curate_reward""
vote details (4)
@fuckmylife ·
$0.67
Keep up the great work, I know all of that money can be distracting and so can the pressure of trying to create something great.
👍  , , , , , ,
properties (23)
authorfuckmylife
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t023413530z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 02:34:15
last_update2017-07-08 02:34:15
depth1
children1
last_payout2017-07-15 02:34:15
cashout_time1969-12-31 23:59:59
total_payout_value0.504 HBD
curator_payout_value0.164 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation1,365,524,722,971
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,709,563
net_rshares152,150,871,063
author_curate_reward""
vote details (7)
@lightviz ·
Hi, guys, Follow me and Upvote my  posts in my blog and i will do the same thing!!!
![DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif](https://steemitimages.com/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif)![DQmSU1hzsgYXpLoTgCd69jJHNJaNfZZj15c4dFDAwSLLxwM_1680x8400.png](https://steemitimages.com/DQmb4ngovQyVMvzvcAyhmNsDJ3gf5XJzku4zHSUTjQHchSj/DQmSU1hzsgYXpLoTgCd69jJHNJaNfZZj15c4dFDAwSLLxwM_1680x8400.png)
👎  
properties (23)
authorlightviz
permlinkre-fuckmylife-re-dan-eos-developer-log-stardate-201707-7-20170708t170648221z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif","https://steemitimages.com/DQmb4ngovQyVMvzvcAyhmNsDJ3gf5XJzku4zHSUTjQHchSj/DQmSU1hzsgYXpLoTgCd69jJHNJaNfZZj15c4dFDAwSLLxwM_1680x8400.png"],"app":"steemit/0.1"}
created2017-07-08 17:09:12
last_update2017-07-08 17:09:12
depth2
children0
last_payout2017-07-15 17:09:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length466
author_reputation5,029,332,800
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,774,240
net_rshares-1,096,863,246
author_curate_reward""
vote details (1)
@healthbeautyfl ·
Keep it Up Great
👍  
properties (23)
authorhealthbeautyfl
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t225338503z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 05:53:21
last_update2017-07-08 05:53:21
depth1
children0
last_payout2017-07-15 05:53:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation45,672,832,470
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,721,874
net_rshares173,975,200
author_curate_reward""
vote details (1)
@healthiswealth ·
Congrats Dan, keep up the great work mate.

I cant wait to read your article that explains how you address the cost of storage capacity.
👍  
properties (23)
authorhealthiswealth
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t234423810z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 23:44:24
last_update2017-07-08 23:44:24
depth1
children0
last_payout2017-07-15 23:44:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation40,730,529,105,487
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,807,311
net_rshares4,423,784,821
author_curate_reward""
vote details (1)
@hellojohnnymac ·
I'm invested in EOS. It has a lot of capability to push development onto the block chain and help us developers make better more simple apps that we can get into prod faster. Thanks for the hard work!
properties (22)
authorhellojohnnymac
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t045206918z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 04:52:06
last_update2017-07-09 04:52:06
depth1
children0
last_payout2017-07-16 04:52:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation55,798,842,276
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,827,890
net_rshares0
@hornetto ·
when bot taking the place LOL
properties (22)
authorhornetto
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t181737820z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 18:17:42
last_update2017-07-08 18:17:42
depth1
children0
last_payout2017-07-15 18:17:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation781,124,145,788
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,780,663
net_rshares0
@ibcrypto ·
Dan is the Man!

You Rock!
properties (22)
authoribcrypto
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t003405005z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 00:34:06
last_update2017-07-08 00:34:06
depth1
children0
last_payout2017-07-15 00:34:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation820,110,012
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,702,220
net_rshares0
@imransoudagar ·
This is great, all the best with EOS.
👍  
properties (23)
authorimransoudagar
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t175924468z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 17:59:27
last_update2017-07-09 17:59:27
depth1
children0
last_payout2017-07-16 17:59:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation28,320,157,974,975
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,894,454
net_rshares2,684,900,393
author_curate_reward""
vote details (1)
@incomepal ·
Excellent well explained article.
Highly informative and definitely worth the read.
Put a lot of things into perspective for me.
Much appreciated
@incomepal
👍  
properties (23)
authorincomepal
permlinkre-dan-201779t13837787z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-09 00:38:39
last_update2017-07-09 00:38:39
depth1
children0
last_payout2017-07-16 00:38:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length156
author_reputation144,322,585,330
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,810,990
net_rshares2,662,555,010
author_curate_reward""
vote details (1)
@jaskaran ·
Wow
properties (22)
authorjaskaran
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t171250384z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 17:12:54
last_update2017-07-09 17:12:54
depth1
children0
last_payout2017-07-16 17:12:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation35,364,446
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,889,850
net_rshares0
@joe28 ·
This is amazing revolution of eos, amazing creation in steemit. Thanks for motivation
properties (22)
authorjoe28
permlinkre-dan-201779t114526747z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-09 04:45:30
last_update2017-07-09 04:45:30
depth1
children0
last_payout2017-07-16 04:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation3,952,928,185,623
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,827,436
net_rshares0
@johnrenald ·
keep up the work @dan. it is great
👍  ,
properties (23)
authorjohnrenald
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t034440124z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-08 03:44:36
last_update2017-07-08 03:44:36
depth1
children0
last_payout2017-07-15 03:44:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation1,137,677,309,147
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,713,934
net_rshares2,235,841,820
author_curate_reward""
vote details (2)
@joshuaatiemo ·
Great work and effort. Peace, love  and decentralization is all we meed. Good post.
👍  
properties (23)
authorjoshuaatiemo
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t230909028z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 23:11:06
last_update2017-07-07 23:11:06
depth1
children0
last_payout2017-07-14 23:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation4,189,940,271,139
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,696,764
net_rshares839,940,156
author_curate_reward""
vote details (1)
@ladylemon ·
@gosu
properties (22)
authorladylemon
permlinkre-dan-201779t103533735z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-09 08:35:30
last_update2017-07-09 08:35:30
depth1
children0
last_payout2017-07-16 08:35:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation2,221,494,918
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,842,702
net_rshares0
@larrsonek ·
https://steemit.com/travel/@larrsonek/mytrip-1-bastei-in-germany-bastei-w-niemczech
👎  ,
properties (23)
authorlarrsonek
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t001557543z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/travel/@larrsonek/mytrip-1-bastei-in-germany-bastei-w-niemczech"],"app":"steemit/0.1"}
created2017-07-08 00:16:00
last_update2017-07-08 00:16:00
depth1
children0
last_payout2017-07-15 00:16:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation113,625,602,420
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,701,060
net_rshares-1,722,066,344,921
author_curate_reward""
vote details (2)
@leobliss ·
Great work
properties (22)
authorleobliss
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t231500026z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 23:15:09
last_update2017-07-07 23:15:09
depth1
children0
last_payout2017-07-14 23:15:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation527,644,989,697
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,697,042
net_rshares0
@leomoon ·
thx your information...
properties (22)
authorleomoon
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t151556024z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 15:15:54
last_update2017-07-09 15:15:54
depth1
children0
last_payout2017-07-16 15:15:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation82,305,334
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,877,925
net_rshares0
@lightviz ·
Hi, guys, Follow me and Upvote my posts in my blog and i will do the same thing!!!
![DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif](https://steemitimages.com/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif)
👍  ,
properties (23)
authorlightviz
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t113058574z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif"],"app":"steemit/0.1"}
created2017-07-08 11:33:24
last_update2017-07-08 11:33:24
depth1
children1
last_payout2017-07-15 11:33:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation5,029,332,800
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,743,300
net_rshares1,665,577,983
author_curate_reward""
vote details (2)
@warrenvee ·
not cool....
properties (22)
authorwarrenvee
permlinkre-lightviz-re-dan-eos-developer-log-stardate-201707-7-20170708t113445132z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 11:34:48
last_update2017-07-08 11:34:48
depth2
children0
last_payout2017-07-15 11:34:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation345,569,415,638
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,743,406
net_rshares0
@lightviz ·
Hi, guys, Follow me and Upvote my  posts in my blog and i will do the same thing!!!
![DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif](https://steemitimages.com/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif)![DQmSU1hzsgYXpLoTgCd69jJHNJaNfZZj15c4dFDAwSLLxwM_1680x8400.png](https://steemitimages.com/DQmb4ngovQyVMvzvcAyhmNsDJ3gf5XJzku4zHSUTjQHchSj/DQmSU1hzsgYXpLoTgCd69jJHNJaNfZZj15c4dFDAwSLLxwM_1680x8400.png)
properties (22)
authorlightviz
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t170622908z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif","https://steemitimages.com/DQmb4ngovQyVMvzvcAyhmNsDJ3gf5XJzku4zHSUTjQHchSj/DQmSU1hzsgYXpLoTgCd69jJHNJaNfZZj15c4dFDAwSLLxwM_1680x8400.png"],"app":"steemit/0.1"}
created2017-07-08 17:08:48
last_update2017-07-08 17:08:48
depth1
children0
last_payout2017-07-15 17:08:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length466
author_reputation5,029,332,800
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,774,193
net_rshares0
@linuslee0216 · (edited)
$0.48
properties (23)
authorlinuslee0216
permlinkre-dan-201779t094778z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1","format":"markdown+html","community":"esteem","users":["dan"]}
created2017-07-08 16:09:09
last_update2017-07-08 16:09:27
depth1
children1
last_payout2017-07-15 16:09:09
cashout_time1969-12-31 23:59:59
total_payout_value0.475 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation79,197,233,939,262
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,768,184
net_rshares115,754,157,753
author_curate_reward""
vote details (10)
@lightviz ·
Hi, guys, Follow me and Upvote my  posts in my blog and i will do the same thing!!!
![DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif](https://steemitimages.com/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif)![DQmSU1hzsgYXpLoTgCd69jJHNJaNfZZj15c4dFDAwSLLxwM_1680x8400.png](https://steemitimages.com/DQmb4ngovQyVMvzvcAyhmNsDJ3gf5XJzku4zHSUTjQHchSj/DQmSU1hzsgYXpLoTgCd69jJHNJaNfZZj15c4dFDAwSLLxwM_1680x8400.png)
👍  ,
properties (23)
authorlightviz
permlinkre-linuslee0216-re-dan-201779t094778z-20170708t170707895z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ/DQmTiCwPX5Eh6J9TrHZ9Aki1E8u7jM6gc2LqvycQ91JFrjQ.gif","https://steemitimages.com/DQmb4ngovQyVMvzvcAyhmNsDJ3gf5XJzku4zHSUTjQHchSj/DQmSU1hzsgYXpLoTgCd69jJHNJaNfZZj15c4dFDAwSLLxwM_1680x8400.png"],"app":"steemit/0.1"}
created2017-07-08 17:09:36
last_update2017-07-08 17:09:36
depth2
children0
last_payout2017-07-15 17:09:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length466
author_reputation5,029,332,800
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,774,278
net_rshares1,781,650,374
author_curate_reward""
vote details (2)
@liuhf ·
Great to see we have made progress every day. Thank you!
Looking forward your updates again.
properties (22)
authorliuhf
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t083218764z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 08:32:21
last_update2017-07-08 08:32:21
depth1
children0
last_payout2017-07-15 08:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation640,130,890
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,731,320
net_rshares0
@luckysteem ·
Hi, we desperatly need more humans like you! :)
properties (22)
authorluckysteem
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t203933013z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 20:40:39
last_update2017-07-08 20:40:39
depth1
children0
last_payout2017-07-15 20:40:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation889,983,479,001
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,792,773
net_rshares0
@macmac007 ·
Pivx  Lisk
👍  
👎  ,
properties (23)
authormacmac007
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t131106582z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 13:11:06
last_update2017-07-09 13:11:06
depth1
children0
last_payout2017-07-16 13:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation-26,070,443,373
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,864,606
net_rshares-1,721,015,930,410
author_curate_reward""
vote details (3)
@mady27 ·
Nice ,thank you sir for giving us such a wonderful platform
properties (22)
authormady27
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t145309893z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 14:53:18
last_update2017-07-09 14:53:18
depth1
children0
last_payout2017-07-16 14:53:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation5,586,980,299,477
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,875,459
net_rshares0
@moremoola ·
Hi Dan ,I 'm shocked ,why is Your post is decline from earnings???
properties (22)
authormoremoola
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t164049839z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 16:40:48
last_update2017-07-08 16:40:48
depth1
children0
last_payout2017-07-15 16:40:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation50,169,116
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,771,364
net_rshares0
@mountrock ·
Nice feature of allowing that Synchronous Calls. Thanks for posting. Time to buy EOS.... followed n upvoted
properties (22)
authormountrock
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t220412534z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 22:04:00
last_update2017-07-07 22:04:00
depth1
children0
last_payout2017-07-14 22:04:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation10,118,100,819,203
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,691,665
net_rshares0
@mrceebo ·
great post but EOS long way to go :-)
👍  
properties (23)
authormrceebo
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t050332156z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 05:03:30
last_update2017-07-08 05:03:30
depth1
children0
last_payout2017-07-15 05:03:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation85,526,342,051
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,719,021
net_rshares1,160,680,026
author_curate_reward""
vote details (1)
@munzil ·
Hey brother, can you help me. Because every post I always have a little supporters and make me less enthusiasm.
https://steemit.com/introduceyourself/@munzil/introduce-meet-me-munzil-from-aceh-perkenalan-2017728t124144191z#@gaman/introduce-meet-me-munzil-from-aceh-perkenalan-2017728t124144191z-gaman-07292017
properties (22)
authormunzil
permlinkre-dan-201787t13624573z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-08-06 18:36:33
last_update2017-08-06 18:36:33
depth1
children0
last_payout2017-08-13 18:36:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length309
author_reputation339,090,123,331
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,975,008
net_rshares0
@musliadialasyi ·
https://steemit.com/steemit/@musliadialasyi/when-is-the-best-time-to-post-on-the-steemit-and-seen-a-lot-of-people-kapan-waktu-yang-tepat-untuk-posting-di-steemit-dan
👎  , ,
properties (23)
authormusliadialasyi
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t040942565z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/steemit/@musliadialasyi/when-is-the-best-time-to-post-on-the-steemit-and-seen-a-lot-of-people-kapan-waktu-yang-tepat-untuk-posting-di-steemit-dan"],"app":"steemit/0.1"}
created2017-07-08 04:09:42
last_update2017-07-08 04:09:42
depth1
children0
last_payout2017-07-15 04:09:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation-19,267,151,061
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,715,568
net_rshares-1,723,163,187,470
author_curate_reward""
vote details (3)
@nakedchef89 ·
Hey, good luck on your journey in our fine community! I'll follow your account to see how you doing :). Please follow me @nakedchef89.
properties (22)
authornakedchef89
permlinkre-dan-eos-developer-log-stardate-201707-7-20170710t043415515z
categoryeos
json_metadata{"tags":["eos"],"users":["nakedchef89"],"app":"steemit/0.1"}
created2017-07-10 04:34:03
last_update2017-07-10 04:34:03
depth1
children0
last_payout2017-07-17 04:34:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation778,084,211,374
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,945,635
net_rshares0
@nakedchef89 ·
Hey, good luck on your journey in our fine community! I'll follow your account to see how you doing :). Please follow me @nakedchef89.
properties (22)
authornakedchef89
permlinkre-dan-eos-developer-log-stardate-201707-7-20170710t144304649z
categoryeos
json_metadata{"tags":["eos"],"users":["nakedchef89"],"app":"steemit/0.1"}
created2017-07-10 14:43:09
last_update2017-07-10 14:43:09
depth1
children0
last_payout2017-07-17 14:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation778,084,211,374
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,993,472
net_rshares0
@nealwalters ·
The code samples  in your post are all C++ right?  When and where will Wren fit in?
properties (22)
authornealwalters
permlinkre-dan-eos-developer-log-stardate-201707-7-20170710t194600863z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 19:46:00
last_update2017-07-10 19:46:00
depth1
children0
last_payout2017-07-17 19:46:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation97,758,276,802
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,024,335
net_rshares0
@niiamo42 ·
Thats awesome!
properties (22)
authorniiamo42
permlinkre-dan-201778t161435169z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-08 16:14:39
last_update2017-07-08 16:14:39
depth1
children0
last_payout2017-07-15 16:14:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation0
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,768,757
net_rshares0
@noganoo ·
We are in the wild west of the crypto age and Dan is the Great Pioneer!  I can't wait to make Garden Shares on the EOS blockchain!  Keep up the great work, friend!
👍  , , , , , , , , , , , , , , , , , , , , , ,
👎  , ,
properties (23)
authornoganoo
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t001038377z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 00:10:45
last_update2017-07-08 00:10:45
depth1
children0
last_payout2017-07-15 00:10:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation-12,409,054,499,907
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,700,752
net_rshares-1,521,934,568,629
author_curate_reward""
vote details (26)
@onepieceluffy ·
EOS IS good blockchain technology  but it needs to fulfill the promise and hype it created. That's the reason why many corporate backs EOS
👍  
properties (23)
authoronepieceluffy
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t085741263z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 08:57:42
last_update2017-07-09 08:57:42
depth1
children0
last_payout2017-07-16 08:57:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation38,312,885,961
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,844,127
net_rshares1,143,269,191
author_curate_reward""
vote details (1)
@opanyin ·
EOS is awesome
properties (22)
authoropanyin
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t072938115z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 07:29:39
last_update2017-07-08 07:29:39
depth1
children0
last_payout2017-07-15 07:29:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation-886,813,737,279
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,727,650
net_rshares0
@orangepenrose ·
I'm new info blockchain technology and don't understand exactly what you've programmed or what ESO means.  But I feel that many people can benefit from it and that it's again a step towards a central authority free world. And that is great.  I'm going to follow you Dan and hope I can help you in reaching your goal. Thanks and keep up the good work.
properties (22)
authororangepenrose
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t204423777z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 20:44:24
last_update2017-07-09 20:44:24
depth1
children0
last_payout2017-07-16 20:44:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length350
author_reputation0
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,910,484
net_rshares0
@patrickpeace ·
FOLLOWED. Keep up the great work @dan. That's a great initiative we must all learn from
properties (22)
authorpatrickpeace
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t013601194z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-08 01:36:33
last_update2017-07-08 01:36:33
depth1
children0
last_payout2017-07-15 01:36:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation239,424,111,166
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,706,011
net_rshares0
@praxiseven ·
I get more excited with every post, the world is way over-due for EOS ..
properties (22)
authorpraxiseven
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t081718785z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 08:17:18
last_update2017-07-09 08:17:18
depth1
children0
last_payout2017-07-16 08:17:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation6,940,209,740
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,841,486
net_rshares0
@rapidaax ·
EOS is gonna be huge. Glad I own some EOS.
properties (22)
authorrapidaax
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t182904753z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 18:29:06
last_update2017-07-08 18:29:06
depth1
children0
last_payout2017-07-15 18:29:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation1,746,712,210
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,781,656
net_rshares0
@revelationquotes ·
Brand new to the Crypto space and Steemit.  This is way above my head, but I'm excited to start learning this space. 
Thank you
properties (22)
authorrevelationquotes
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t075809491z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 07:58:09
last_update2017-07-08 07:58:09
depth1
children0
last_payout2017-07-15 07:58:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation74,119,741,091,678
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,729,325
net_rshares0
@rickctv ·
I am saving some money for next month to buy a *&^% load of EOS! 
I think this will be massive!!
Looking forward to hearing more form you.

definitely got a new follower!
properties (22)
authorrickctv
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t120156120z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 12:01:57
last_update2017-07-08 12:01:57
depth1
children0
last_payout2017-07-15 12:01:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation148,272,842
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,745,513
net_rshares0
@rokerzfirst101 ·
https://steemit.com/beginning/@rokerzfirst101/to-infinity-and-beyond-1-the-start
👍  
properties (23)
authorrokerzfirst101
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t045853667z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/beginning/@rokerzfirst101/to-infinity-and-beyond-1-the-start"],"app":"steemit/0.1"}
created2017-07-09 04:59:00
last_update2017-07-09 04:59:00
depth1
children0
last_payout2017-07-16 04:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation19,997,392,610
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,828,355
net_rshares1,050,415,349
author_curate_reward""
vote details (1)
@rowena ·
Hello goodmorning. Amanew steemians. I thank you for this  information that you shared to us. I find it very helpful since am new. Hoping you will vote me also. Your feedback on my posts is very much appreciated. Thank you
properties (22)
authorrowena
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t010404232z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 01:04:12
last_update2017-07-09 01:04:12
depth1
children0
last_payout2017-07-16 01:04:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length222
author_reputation20,980,865,407
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,812,671
net_rshares0
@rubo ·
Excellent post continues to publish quality content :D
properties (22)
authorrubo
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t215831635z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 21:57:15
last_update2017-07-07 21:57:15
depth1
children0
last_payout2017-07-14 21:57:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation648,542,095,787
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,691,100
net_rshares0
@sdilan ·
Glad to see progress here!
👍  ,
properties (23)
authorsdilan
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t231208975z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 23:12:03
last_update2017-07-07 23:12:03
depth1
children0
last_payout2017-07-14 23:12:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation126,588,638,903
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,696,841
net_rshares2,348,511,283
author_curate_reward""
vote details (2)
@senor ·
Going to be big.
properties (22)
authorsenor
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t220733809z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 22:07:33
last_update2017-07-07 22:07:33
depth1
children0
last_payout2017-07-14 22:07:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation431,911,756,947
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,691,962
net_rshares0
@shirish5 ·
$0.66
Nice to read about the progress made in steemit. Keep up the work.
👍  , , ,
properties (23)
authorshirish5
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t000623222z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 00:06:27
last_update2017-07-08 00:06:27
depth1
children0
last_payout2017-07-15 00:06:27
cashout_time1969-12-31 23:59:59
total_payout_value0.496 HBD
curator_payout_value0.162 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation3,732,828,580,745
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,700,495
net_rshares148,778,021,754
author_curate_reward""
vote details (4)
@stefen ·
Thanks for the code man i have been searching for this. Big upvote for you :-)
properties (22)
authorstefen
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t060313694z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 06:03:18
last_update2017-07-08 06:03:18
depth1
children0
last_payout2017-07-15 06:03:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation6,803,833,244,756
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,722,437
net_rshares0
@susanli3769 ·
Price of EOS continues to go down. Hopefully people see the efforts your team has put into it. I am a stronger believer of it myself and will hold onto it. Thanks for the great work.
👍  , ,
properties (23)
authorsusanli3769
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t011343151z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 01:13:45
last_update2017-07-08 01:13:45
depth1
children3
last_payout2017-07-15 01:13:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation1,314,180,289,530,945
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,704,630
net_rshares3,778,778,005
author_curate_reward""
vote details (3)
@doqstrader ·
All marketcap down.. don't worry.. it great network and project.. i trust dan larimer.. as what steem goes.
👍  ,
properties (23)
authordoqstrader
permlinkre-susanli3769-re-dan-eos-developer-log-stardate-201707-7-20170708t094055969z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 09:40:57
last_update2017-07-08 09:40:57
depth2
children0
last_payout2017-07-15 09:40:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation756,354,394,224
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,735,692
net_rshares4,454,567,873
author_curate_reward""
vote details (2)
@fuckmylife ·
Me too. I just wish I didn't buy as much as I have. One cent swings make me cringe.
properties (22)
authorfuckmylife
permlinkre-susanli3769-re-dan-eos-developer-log-stardate-201707-7-20170708t023508832z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 02:35:09
last_update2017-07-08 02:35:09
depth2
children1
last_payout2017-07-15 02:35:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation1,365,524,722,971
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,709,612
net_rshares0
@igster ·
You've bought way too much then. Crypto can burn you badly.. Just hold and forget it if you believe in the project.
properties (22)
authorigster
permlinkre-fuckmylife-re-susanli3769-re-dan-eos-developer-log-stardate-201707-7-20170708t162046454z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 16:20:48
last_update2017-07-08 16:20:48
depth3
children0
last_payout2017-07-15 16:20:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation17,415,198,441,969
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,769,442
net_rshares0
@teukurobbybinor ·
Nice n great work @dan
Warm regards from Aceh
@teukurobbybinor
properties (22)
authorteukurobbybinor
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t005730601z
categoryeos
json_metadata{"tags":["eos"],"users":["dan","teukurobbybinor"],"app":"steemit/0.1"}
created2017-07-08 00:57:33
last_update2017-07-08 00:57:33
depth1
children0
last_payout2017-07-15 00:57:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation2,114,612,743,120
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,703,589
net_rshares0
@tinashe ·
$0.03
"EOS.IO development is making great strides!"This is good.
WE have to introduce eos to steemitzimbabwe members this will change everything.We still in the early stages of adopting cryptocurrency,and Zimbabwe is the best thriving environment for crypto because of shortage of fiat. Thank you
![Steemit-Zimbabwe-Watercolor.jpg](https://steemitimages.com/DQmZmdBqv8U68vgM7yu5nKh3nBJ6Z9LY3YGgvVHbTUuFCMS/Steemit-Zimbabwe-Watercolor.jpg)
👍  , , , ,
properties (23)
authortinashe
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t215334413z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmZmdBqv8U68vgM7yu5nKh3nBJ6Z9LY3YGgvVHbTUuFCMS/Steemit-Zimbabwe-Watercolor.jpg"],"app":"steemit/0.1"}
created2017-07-07 21:53:39
last_update2017-07-07 21:53:39
depth1
children0
last_payout2017-07-14 21:53:39
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length432
author_reputation5,493,082,869,809
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,690,845
net_rshares7,617,792,275
author_curate_reward""
vote details (5)
@tushar2017 ·
In my leisure i just think why this world is going smoothly coz i found that people are getting selfish .their world is only the house,family ,office for them. But trust me dan guyz like u make this world running. Proud of u bro.
👍  
properties (23)
authortushar2017
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t094413501z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 09:46:54
last_update2017-07-09 09:46:54
depth1
children0
last_payout2017-07-16 09:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation34,782,979,669
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,847,668
net_rshares957,560,353
author_curate_reward""
vote details (1)
@uwais334 ·
Great post
👎  
properties (23)
authoruwais334
permlinkre-dan-201778t0237317z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-07-07 23:23:12
last_update2017-07-07 23:23:12
depth1
children0
last_payout2017-07-14 23:23:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation52,466,521,134
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,697,552
net_rshares0
author_curate_reward""
vote details (1)
@virtualgrowth ·
Loving the strides you are making towards the future of smart contracts and so much more with eos!
http://s21.postimg.org/4vka0twc7/steemblueheart.png
http://www.onlinesignature.in/animateText/text785697588.gif
👍  
properties (23)
authorvirtualgrowth
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t223730662z
categoryeos
json_metadata{"tags":["eos"],"image":["http://s21.postimg.org/4vka0twc7/steemblueheart.png","http://www.onlinesignature.in/animateText/text785697588.gif"],"app":"steemit/0.1"}
created2017-07-07 22:37:33
last_update2017-07-07 22:37:33
depth1
children0
last_payout2017-07-14 22:37:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation194,279,551,234,595
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,694,359
net_rshares1,121,222,741
author_curate_reward""
vote details (1)
@vizualsamuri · (edited)
$0.10
Great job coding. im not too familiar on how it hows, but i did I put together a quick video feat. @crypt0. Hope you guys enjoy it! 
 ![image](https://img.esteem.ws/vdm6nh3x7q.jpg)
https://steemit.com/crypto-news/@vizualsamuri/why-this-crypto-ep-2-omar-bham-aka-crypt0-ethereum-201777t13421939z
👍  
properties (23)
authorvizualsamuri
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t231750412z
categoryeos
json_metadata{"tags":["eos"],"users":["crypt0"],"image":["https://img.esteem.ws/vdm6nh3x7q.jpg"],"links":["https://steemit.com/crypto-news/@vizualsamuri/why-this-crypto-ep-2-omar-bham-aka-crypt0-ethereum-201777t13421939z"],"app":"steemit/0.1"}
created2017-07-07 23:17:51
last_update2017-07-07 23:19:09
depth1
children0
last_payout2017-07-14 23:17:51
cashout_time1969-12-31 23:59:59
total_payout_value0.097 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length294
author_reputation4,643,310,820,610
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,697,219
net_rshares22,449,484,010
author_curate_reward""
vote details (1)
@warrkin ·
Interesting post, its nice to see Steemit progress, thanks for sharing! #keepsteemin
properties (22)
authorwarrkin
permlinkre-dan-eos-developer-log-stardate-201707-7-20170708t184430564z
categoryeos
json_metadata{"tags":["keepsteemin","eos"],"app":"steemit/0.1"}
created2017-07-08 18:44:30
last_update2017-07-08 18:44:30
depth1
children0
last_payout2017-07-15 18:44:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation78,294,456,006,051
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,782,953
net_rshares0
@watchout2017 ·
$0.20
Im a EOS investor.  Hold because it will go to 3digits....

Domi
👍  
properties (23)
authorwatchout2017
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t220740763z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 22:07:51
last_update2017-07-07 22:07:51
depth1
children4
last_payout2017-07-14 22:07:51
cashout_time1969-12-31 23:59:59
total_payout_value0.148 HBD
curator_payout_value0.048 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation237,607,560,257
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,691,983
net_rshares44,593,856,512
author_curate_reward""
vote details (1)
@autonomy117 ·
I would like to buy some
👍  
properties (23)
authorautonomy117
permlinkre-watchout2017-re-dan-eos-developer-log-stardate-201707-7-20170708t041011535z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-08 04:14:18
last_update2017-07-08 04:14:18
depth2
children1
last_payout2017-07-15 04:14:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation25,125,177,166
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,715,862
net_rshares1,214,108,522
author_curate_reward""
vote details (1)
@watchout2017 ·
$0.17
Are you reffering to being in the USA?

Domi
👍  
properties (23)
authorwatchout2017
permlinkre-autonomy117-re-watchout2017-re-dan-eos-developer-log-stardate-201707-7-20170709t194356938z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:43:57
last_update2017-07-09 19:43:57
depth3
children0
last_payout2017-07-16 19:43:57
cashout_time1969-12-31 23:59:59
total_payout_value0.124 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation237,607,560,257
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,904,757
net_rshares43,033,071,534
author_curate_reward""
vote details (1)
@cryptoboss711 ·
I hold eos as well
👍  
properties (23)
authorcryptoboss711
permlinkre-watchout2017-re-dan-eos-developer-log-stardate-201707-7-20170709t042828639z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 04:28:30
last_update2017-07-09 04:28:30
depth2
children1
last_payout2017-07-16 04:28:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation122,640,427
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,826,235
net_rshares445,938,565
author_curate_reward""
vote details (1)
@watchout2017 ·
$0.17
Were in a tough situation because USA Can Not participate.  Also, they are offloading shares every so offten so get used to the price rising/dropping throughout this process.

What do you think will happen to this coin?

Domi
👍  
properties (23)
authorwatchout2017
permlinkre-cryptoboss711-re-watchout2017-re-dan-eos-developer-log-stardate-201707-7-20170709t194233715z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:42:33
last_update2017-07-09 19:42:33
depth3
children0
last_payout2017-07-16 19:42:33
cashout_time1969-12-31 23:59:59
total_payout_value0.127 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation237,607,560,257
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,904,614
net_rshares43,701,979,382
author_curate_reward""
vote details (1)
@wavemaster ·
Well everybody is blockchain block chaining  It is going to change the world. Sure it is and the people that do this kind of work and enjoy it I love them. Humanity will only move forward when people wake up and develop as humans. Maybe the blockchain is part of human growth. As soon as our owners realize how to control the shit its over. So far they have been doing a real good job controlling peoples minds. I say they are experts. People believe they are free dont they!
properties (22)
authorwavemaster
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t170003132z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 17:00:06
last_update2017-07-09 17:00:06
depth1
children0
last_payout2017-07-16 17:00:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length475
author_reputation102,708,627,411
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,888,590
net_rshares0
@wekkel ·
Love the innovation that is happening as we speak. And people are still able to join the ICO and be part of what EOS is trying to bring to the world. Can't wait to see it live in action.
properties (22)
authorwekkel
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t101711114z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 10:17:12
last_update2017-07-09 10:17:12
depth1
children0
last_payout2017-07-16 10:17:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation793,854,297,842
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,849,962
net_rshares0
@zamzamiali ·
It's beautiful to look at him, what's with this picture taken @dan
👍  
properties (23)
authorzamzamiali
permlinkre-dan-eos-developer-log-stardate-201707-7-20170709t094721327z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-09 09:47:24
last_update2017-07-09 09:47:24
depth1
children0
last_payout2017-07-16 09:47:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation3,223,599,731,184
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,847,715
net_rshares177,081,900
author_curate_reward""
vote details (1)
@zeartul ·
$0.49
Let's get this show on the Road Have me some 100 EOS can't wait for the tech! Thanks, Dan!
👍  , ,
properties (23)
authorzeartul
permlinkre-dan-eos-developer-log-stardate-201707-7-20170707t214903964z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-07 21:49:03
last_update2017-07-07 21:49:03
depth1
children0
last_payout2017-07-14 21:49:03
cashout_time1969-12-31 23:59:59
total_payout_value0.380 HBD
curator_payout_value0.112 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation85,710,273,406,514
root_title"EOS - Developer Log, Stardate 201707.7"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,690,489
net_rshares111,408,274,962
author_curate_reward""
vote details (3)