create account

EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9 by dan

View this thread on: hive.blogpeakd.comecency.com
· @dan · (edited)
EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9
<div class="center">

![](https://steemitimages.com/DQmZWjRzX696igR6tq7QEgGfQeMdHVfJTgfWrqzzD8R9mVt/image.png)

</div>

Today I would like to take a moment to explain the current structure of an EOS.IO transaction so that developers can better understand the concurrency model.  Below is a JSON representation of a transaction that will transfer **currency** from **sam** to **alice**.   In this case, **currency**, **sam**, and **alice** are all account names; however, they are used in different ways.


```
{
  "refBlockNum": "12",
  "refBlockPrefix": "2792049106",
  "expiration": "2015-05-15T14:29:01",
  "scope": [
    "alice",
    "sam"
  ],
  "messages": [
    {
      "code": "currency",
      "type": "transfer",
      "recipients": [
        "sam",
        "alice"
      ],
      "authorization": [
        {
          "account": "sam",
          "permission": "active"
        }
      ],
      "data": "a34a59dcc8000000c9251a0000000000501a00000000000008454f53000000000568656c6c6f"
    }
  ],
  "signatures": []
}
```

When serialized to binary with a single signature, this transaction is about 160 bytes in size which is slightly larger than a Steem transfer which is about 120 bytes or a BitShares transfer which is about 94 bytes. Much of the extra size comes from having to explicitly specify *recipients*, *authorization*, and *scope* which collectively add 51 bytes to the message.


### TaPoS - Transactions as Proof of Stake
Those of you familiar with Steem & BitShares will recognize the first 3 fields of the transaction; they remain unchanged. These fields are used by TaPoS (Transactions as Proof of Stake) and ensure that this transaction can only be included after the referenced block and before the expiration.  

### Scope 
The next field, "scope", is new to EOS.IO and specifies the range of data that may be read and/or written to. If a message attempts to read or write data outside of scope then the transaction will fail. Transactions can be processed in parallel so long as there is no overlap in their scope.

A key innovation of the EOS.IO software is that *scope* and *code* are two entirely separate concepts. You will notice that the **currency** contract is not referenced in the *scope* even though we are executing a transfer using the **currency** contract's code.

### Messages

A transaction can have one or more messages that must be applied in order and atomically (all succeed or all fail).  In this case there is exactly one message, so lets look closer at the message:

#### code:

Every message must specify which code it will be executing, in this case the currency contract's code will be executing resulting in the following method being called:

```
currency::apply_currency_transfer(data)
```

#### type: 

The type field defines the type of message (and implicitly the format of *data*). From an object oriented programming perspective you could view type as a *method* "name" on the "currency" *class*. In this example the *type* is "transfer" and hence explains the naming of the method being called:

```
${namespace}::apply_${code}_${type}( data )
```

In case the "namespace" is the **currency** contract; however, this same method `apply_currency_transfer` may also be called in other namespaces.

#### recipients:

In addition to calling `currency::apply_currency_transfer(data)`, the method `apply_currency_transfer(data)` will also be called for each recipient listed.  For example, the following methods would be called sequentially in this order: 
 
```
currency::apply_currency_transfer(data)
alice::apply_currency_transfer(data)
sam::apply_currency_transfer(data)
```
<br/>

The notation `account::` specifies the contract which implements the method.  **alice** and **sam** may choose to not implement this method if they don't have any special logic to perform when `currency::apply_currency_transfer` is executed.  However, if **sam** was an exchange, then **sam** would probably want to process deposits and withdraws when ever a currency transfer is made.

The person who generates the transaction can add any number of recipients (provided they all execute quickly enough). In addition some contracts can require that certain parties be notified. In the case of **currency** both the sender and receiver are required to be notified.  You can see how this is [specified in the currency contract](https://github.com/EOSIO/eos/blob/master/contracts/currency/currency.cpp#L25).

```
void apply_currency_transfer() {
   const auto& transfer  = currentMessage<Transfer>();
   requireNotice( transfer.to, transfer.from );
   ...
}
```

#### authorization:

Each message may require authorization from one or more accounts. In Steem and BitShares the required authorization is implicitly defined based on the message type; however, with EOS.IO the message must explicitly define the authorization that is provided. The EOS.IO system will automatically verify that the transaction has been signed by all of the necessary signatures to grant the specified authorization.

In this case the message is indicating that it must be signed by **sam**'s **active** permission level.  The **currency** code will verify that **sam**'s authorization was provided. You can view this check in the [example currency contract](https://github.com/EOSIO/eos/blob/master/contracts/currency/currency.cpp#L26).

```
void apply_currency_transfer() {
   const auto& transfer  = currentMessage<Transfer>();
   requireNotice( transfer.to, transfer.from );
   requireAuth( transfer.from );
   ...
}
```

#### data: 
Every contract can define it's own data format. Without the ABI the data can only be interpreted as a hexadecimal data; however, the **currency** contract defines the format of *data* to be a **Transfer** struct:

```
struct Transfer {
  AccountName from;
  AccountName to;
  uint64_t    amount = 0;
};
```

With this definition in hand we can convert the binary blob to something similar to:

```
{ "from" : "sam",  "to": "alice",  "amount": 100 }
```

## Scheduling 

Now that we understand the structure of an EOS.IO transaction, we can look at the structure of an EOS.IO block.  Each block is divided into *cycles* which are executed sequentially.  Within each cycle there are any number of threads that execute in parallel.  The trick is to ensure that no two threads contain transactions with intersecting scopes.  A block can be declared invalid without reference to any external data if there is any scope overlap among the threads within a single cycle.

## Conclusion

The single biggest challenge to parallel execution is ensuring the same data is not being accessed by two threads at the same time. Unlike traditional parallel programming, it is not possible to use locks around memory access because the the resulting execution would necessarily be non-deterministic and potentially break consensus. Even if locks were possible, they would be undesirable because heavy use of locks can degrade performance below that of single threaded execution.

The alternative to locking at the time data is accessed, is to lock at the time execution is scheduled. From this perspective, the **scope** field defines the accounts a transaction wishes to acquire a lock on.  The scheduler (aka block producer) ensures no two threads attempt to grab the same lock at the same time. With this transaction structure and scheduling it is possible to dramatically deconflict memory access and increase opportunities for parallel execution. 

Unlike other platforms the separation of code (currency contract) from data (account storage) enables a separation of locking requirements. If the currency contract and its data were bundled then every transfer would have to lock the currency contract and all transfers would be limited by single threaded throughput. But because the transfer message only has to lock on the sender and receiver's data the currency contract is no longer the bottleneck.  

Removing the currency contract from being a bottleneck is incredibly important when you consider an exchange contract. Every time there is a deposit or withdraw from the exchange the currency contract and the exchange contract get forced into the same thread. If both of these contracts are heavily used then it will degrade the performance of all currency and all exchange users.  

Under the EOS.IO model two users can transfer without worrying about the sequential (single threaded) throughput of any other accounts/contracts than those involved in the transfer.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 393 others
πŸ‘Ž  ,
properties (23)
authordan
permlinkeos-developer-s-log-stardate-201707-9
categoryeos
json_metadata{"tags":["eos","developerslog"],"image":["https://steemitimages.com/DQmZWjRzX696igR6tq7QEgGfQeMdHVfJTgfWrqzzD8R9mVt/image.png"],"links":["https://github.com/EOSIO/eos/blob/master/contracts/currency/currency.cpp#L25","https://github.com/EOSIO/eos/blob/master/contracts/currency/currency.cpp#L26"],"app":"steemit/0.1","format":"markdown"}
created2017-07-09 18:45:51
last_update2017-07-09 18:48:21
depth0
children104
last_payout2017-07-16 18:45: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_length8,515
author_reputation155,470,101,136,708
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id7,898,893
net_rshares186,882,873,189,496
author_curate_reward""
vote details (459)
@aaronaugustine ·
Its TRUE.....
properties (22)
authoraaronaugustine
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t020546612z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 02:05:51
last_update2017-07-10 02:05:51
depth1
children0
last_payout2017-07-17 02:05: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_length13
author_reputation27,297,453,080
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,934,966
net_rshares0
@abit ·
If `requireAuth( transfer.from );` is defined in currency contract, how will an exchange contract modify it to be able to process withdrawals?
πŸ‘  
properties (23)
authorabit
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170716t085608827z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-16 08:56:06
last_update2017-07-16 08:56:06
depth1
children0
last_payout2017-07-23 08:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation141,171,499,037,785
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,650,901
net_rshares0
author_curate_reward""
vote details (1)
@almost-digital ·
$1.63
What happens if sam is evil and implements a `sam::apply_currency_transfer(data)` that never returns?
πŸ‘  , , , , , ,
properties (23)
authoralmost-digital
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t191302338z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:13:03
last_update2017-07-09 19:13:03
depth1
children7
last_payout2017-07-16 19:13:03
cashout_time1969-12-31 23:59:59
total_payout_value1.225 HBD
curator_payout_value0.402 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation12,829,718,661,429
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,901,565
net_rshares419,004,181,772
author_curate_reward""
vote details (7)
@dan ·
An transaction that cannot execute in a couple of milliseconds is abandoned and never included in a block.
πŸ‘  , ,
properties (23)
authordan
permlinkre-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20170709t203201447z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 20:32:00
last_update2017-07-09 20:32:00
depth2
children0
last_payout2017-07-16 20:32: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_length106
author_reputation155,470,101,136,708
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,909,383
net_rshares2,992,790,484
author_curate_reward""
vote details (3)
@troglodactyl · (edited)
That depends on how much EOS sam buys.  If he bought the entire supply of EOS, he could freeze the network until all the witnesses abandoned him.  The previous holders of EOS could all thank him for the massive piles of cash he gave them, and then fork the network with sam excluded.

If he only has a small stake in EOS, his code should execute briefly (proportional to his stake) on the witness nodes and then be abandoned with minimal inconvenience to anyone.
πŸ‘  , ,
properties (23)
authortroglodactyl
permlinkre-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20170709t192759179z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:28:00
last_update2017-07-09 19:29:51
depth2
children5
last_payout2017-07-16 19:28: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_length462
author_reputation5,089,817,438,884
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,903,060
net_rshares4,003,940,940
author_curate_reward""
vote details (3)
@almost-digital ·
I was thinking more along the lines of that he could block any transfers involving him, but I reread that part and it seems the sender could just exclude him from the `recipients` list and still have the transfer go through?
properties (22)
authoralmost-digital
permlinkre-troglodactyl-re-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20170709t195153392z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:51:54
last_update2017-07-09 19:51:54
depth3
children2
last_payout2017-07-16 19:51: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_length224
author_reputation12,829,718,661,429
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,905,574
net_rshares0
@eikr ·
Very nice answer !
properties (22)
authoreikr
permlinkre-troglodactyl-re-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20171028t212606575z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-10-28 21:26:06
last_update2017-10-28 21:26:06
depth3
children0
last_payout2017-11-04 21:26: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_length18
author_reputation184,848,194
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,819,293
net_rshares0
@jonuzi ·
$0.03
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSFVRDSU9IYoBFbGZ2NbhYUVCG807y3WUBKMpIO4DFm5mm79cz3
πŸ‘  , ,
properties (23)
authorjonuzi
permlinkre-troglodactyl-re-almost-digital-re-dan-eos-developer-s-log-stardate-201707-9-20170710t190448760z
categoryeos
json_metadata{"tags":["eos"],"links":["https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSFVRDSU9IYoBFbGZ2NbhYUVCG807y3WUBKMpIO4DFm5mm79cz3"],"app":"steemit/0.1"}
created2017-07-10 19:04:51
last_update2017-07-10 19:04:51
depth3
children0
last_payout2017-07-17 19:04:51
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation-125,243,823,771
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,020,348
net_rshares8,137,934,123
author_curate_reward""
vote details (3)
@anandpoddar27 ·
Fantastic
πŸ‘  
properties (23)
authoranandpoddar27
permlinkre-dan-2017710t14176736z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-10 08:47:09
last_update2017-07-10 08:47:09
depth1
children0
last_payout2017-07-17 08: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_length9
author_reputation59,937,536
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,963,606
net_rshares0
author_curate_reward""
vote details (1)
@anett-and-robby ·
Wow, thanks for this post. How can i start to develop in Eos?
properties (22)
authoranett-and-robby
permlinkre-dan-2017723t19167746z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-23 17:16:12
last_update2017-07-23 17:16:12
depth1
children0
last_payout2017-07-30 17:16: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_length61
author_reputation1,679,248,503,198
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,438,836
net_rshares0
@annaaa ·
Really a great work i have seen so far. Thank u for the post.
properties (22)
authorannaaa
permlinkre-dan-2017711t02541763z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-10 19:25:51
last_update2017-07-10 19:25:51
depth1
children0
last_payout2017-07-17 19: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_length61
author_reputation668,978,028,941
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,022,316
net_rshares0
@apple64 ·
So what is the exact date of the EOS Blockchain Public Beta? Anyone know?
properties (22)
authorapple64
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170712t064127761z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 06:41:18
last_update2017-07-12 06:41:18
depth1
children0
last_payout2017-07-19 06:41: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_length73
author_reputation-134,873,855,056
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,196,789
net_rshares0
@arcange ·
Congratulations @dan!
Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170709) in the following category:

* Pending payout - Ranked 1 with $ 1259,69
properties (22)
authorarcange
permlinkre-eos-developer-s-log-stardate-201707-9-20170709t163615000z
categoryeos
json_metadata""
created2017-07-10 14:35:18
last_update2017-07-10 14:35:18
depth1
children0
last_payout2017-07-17 14:35: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_length203
author_reputation1,148,264,652,823,817
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,992,608
net_rshares0
@baidarusramli ·
Good post
properties (22)
authorbaidarusramli
permlinkre-dan-2017712t102726160z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-12 03:27:48
last_update2017-07-12 03:27:48
depth1
children0
last_payout2017-07-19 03:27: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_length9
author_reputation41,435,744,382
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,183,256
net_rshares0
@banglasteve ·
Amazing work Dan! I know a lot of people say the technology is unproven but with you at the helm you provide the confidence we need in the success of EOS. The project is exciting and many of us are willing to see this project through. Keep up the great work!
πŸ‘  ,
properties (23)
authorbanglasteve
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t223837466z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 22:38:39
last_update2017-07-09 22:38:39
depth1
children0
last_payout2017-07-16 22: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_length258
author_reputation199,151,483,882
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,920,000
net_rshares1,267,986,450
author_curate_reward""
vote details (2)
@barrydutton ·
$1.00
Dan you are great.

I feel I haz the dumbz every time I read one of your posts LOL.

Have a good week my man.   

Ironically I wrote a post today again about Poloniex and their nonsense, I think it is my best one yet with balance and fun and facts....

I honestly thought about you the whole time I was writing that post, which took me about 2 hrs.
πŸ‘  , , ,
properties (23)
authorbarrydutton
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t193518306z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:35:15
last_update2017-07-09 19:35:15
depth1
children0
last_payout2017-07-16 19:35:15
cashout_time1969-12-31 23:59:59
total_payout_value0.993 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length348
author_reputation333,942,309,404,197
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,903,850
net_rshares256,502,624,773
author_curate_reward""
vote details (4)
@beekeyyy ·
This is a very good article! Still surprise what decent byte size Steem has!
properties (22)
authorbeekeyyy
permlinkre-dan-2017710t05432281z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-10 04:54:36
last_update2017-07-10 04:54:36
depth1
children0
last_payout2017-07-17 04:54: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_length76
author_reputation1,379,838,600,065
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,947,210
net_rshares0
@bolivarariasp ·
La verdad a mi parecer, ayudo de mucho, porque no soy el ΓΊnico que busca este tipo de cosas.
properties (22)
authorbolivarariasp
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t230734278z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 23:01:27
last_update2017-07-10 23:01:27
depth1
children0
last_payout2017-07-17 23:01: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_length92
author_reputation0
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,041,184
net_rshares0
@cem ·
Congratulations! You have been chosen to appear on "[Who to Follow Daily](https://steemit.com/wtf/@cem/who-to-follow-wtf-daily-goals)". Thank you for adding such value to the Steemit community. Steem on!

<center>https://steemitimages.com/0x0/https://steemitimages.com/DQmQbfquy5pNwKSEV6NPejNR7ZbUsRLXrdsW89sjkMiLuGS/wtf.jpg</center>
properties (22)
authorcem
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t200115997z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmQbfquy5pNwKSEV6NPejNR7ZbUsRLXrdsW89sjkMiLuGS/wtf.jpg"],"links":["https://steemit.com/wtf/@cem/who-to-follow-wtf-daily-goals"],"app":"steemit/0.1"}
created2017-07-10 20:01:18
last_update2017-07-10 20:01:18
depth1
children0
last_payout2017-07-17 20:01: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_length333
author_reputation3,199,586,095,687
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,025,838
net_rshares0
@cocokoala ·
$1.20
I made the right choice investing on EOS,this is what brought me on Steem.
πŸ‘  , , , , ,
properties (23)
authorcocokoala
permlinkre-dan-2017710t304807z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-09 19:05:09
last_update2017-07-09 19:05:09
depth1
children4
last_payout2017-07-16 19:05:09
cashout_time1969-12-31 23:59:59
total_payout_value0.970 HBD
curator_payout_value0.233 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation23,289,697,464
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,900,767
net_rshares321,934,599,067
author_curate_reward""
vote details (6)
@avilsd ·
$0.10
Which do you believe in more?
πŸ‘  
properties (23)
authoravilsd
permlinkre-cocokoala-re-dan-2017710t304807z-20170711t221155905z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-11 22:11:57
last_update2017-07-11 22:11:57
depth2
children3
last_payout2017-07-18 22:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.092 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation20,163,046,179,161
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,160,744
net_rshares30,535,968,507
author_curate_reward""
vote details (1)
@cocokoala ·
I have faith in EOS and I have just discovered Steemit so it's really hard to decide at this point. But steemit is freaking awesome!
properties (22)
authorcocokoala
permlinkre-avilsd-re-cocokoala-re-dan-2017710t304807z-20170713t090629433z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 09:06:39
last_update2017-07-13 09:06:39
depth3
children2
last_payout2017-07-20 09:06: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_length132
author_reputation23,289,697,464
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,319,984
net_rshares0
@creativephoto ·
$0.03
great work
πŸ‘  
properties (23)
authorcreativephoto
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t230030064z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 23:00:30
last_update2017-07-09 23:00:30
depth1
children0
last_payout2017-07-16 23:00:30
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation5,256,635,233,634
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,921,664
net_rshares7,308,186,168
author_curate_reward""
vote details (1)
@cryptoman01 ·
$0.16
Way to go @Dan. We wil be cheering you!
πŸ‘  , ,
properties (23)
authorcryptoman01
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t083452212z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-10 08:34:54
last_update2017-07-10 08:34:54
depth1
children0
last_payout2017-07-17 08:34:54
cashout_time1969-12-31 23:59:59
total_payout_value0.121 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation3,776,351,483,665
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,962,816
net_rshares43,939,482,958
author_curate_reward""
vote details (3)
@cryptonfused ·
Should we expect to see another social media like steemit built on the EOS platform in the near future?
properties (22)
authorcryptonfused
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170711t232552415z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-11 23:26:00
last_update2017-07-11 23:26:00
depth1
children0
last_payout2017-07-18 23:26:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation253,937,837,335
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,166,412
net_rshares0
@dinasapitri ·
Thanks for share @dan , although I do not really understand, because I am still a new user in this steemit.
properties (22)
authordinasapitri
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t195430422z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-09 19:54:39
last_update2017-07-09 19:54:39
depth1
children0
last_payout2017-07-16 19: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_length107
author_reputation1,907,131,509,076
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,905,851
net_rshares0
@dobro88888888 ·
Thanks for the positive post. Retweet.
properties (22)
authordobro88888888
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t185321783z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:53:24
last_update2017-07-09 18:53:24
depth1
children0
last_payout2017-07-16 18:53: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_length38
author_reputation418,242,269,128
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,585
net_rshares0
@doncute ·
Nice one thanks
πŸ‘  
properties (23)
authordoncute
permlinkre-dan-2017710t9429705z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-10 08:04:33
last_update2017-07-10 08:04:33
depth1
children0
last_payout2017-07-17 08:04: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_length15
author_reputation46,173,848,282
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,960,820
net_rshares1,050,419,842
author_curate_reward""
vote details (1)
@dssb ·
Thank you @dan, it was a very clear explanation. You made me think about getting in, altough it was not in my roadmap!
properties (22)
authordssb
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t220643729z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-09 22:06:57
last_update2017-07-09 22:06:57
depth1
children0
last_payout2017-07-16 22:06: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_length118
author_reputation290,011,252,844
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,917,519
net_rshares0
@elegente ·
Why thank you kindly Mr. @dan.

I admire your knowledge and work.
πŸ‘  
πŸ‘Ž  
properties (23)
authorelegente
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t184913502z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-09 18:49:12
last_update2017-07-09 18:49:12
depth1
children8
last_payout2017-07-16 18:49: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_length65
author_reputation-273,943,619,793
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,202
net_rshares-52,095,934
author_curate_reward""
vote details (2)
@elegente ·
$0.57
Why I am shocked...I have been downvoted to this. I'm quite offended. 

I ask for your reasoning behind this please.
πŸ‘  
properties (23)
authorelegente
permlinkre-elegente-re-dan-eos-developer-s-log-stardate-201707-9-20170709t185440028z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:54:39
last_update2017-07-09 18:54:39
depth2
children7
last_payout2017-07-16 18:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.424 HBD
curator_payout_value0.141 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation-273,943,619,793
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,722
net_rshares145,505,962,938
author_curate_reward""
vote details (1)
@dan ·
$0.03
After examining your other comments it appears your comments are generic and likely generated by a bot. If I made a mistake I apologize.  I am just trying to do my best to combat the flood of spam bots.
πŸ‘  ,
properties (23)
authordan
permlinkre-elegente-re-elegente-re-dan-eos-developer-s-log-stardate-201707-9-20170709t185630720z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:56:30
last_update2017-07-09 18:56:30
depth3
children6
last_payout2017-07-16 18:56:30
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation155,470,101,136,708
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,911
net_rshares8,762,407,620
author_curate_reward""
vote details (2)
@elegente ·
Sir, may I ask why my previous reply was flagged?  I left a sincere reply regarding this article.
properties (22)
authorelegente
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t185719557z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:57:18
last_update2017-07-09 18:57:18
depth1
children0
last_payout2017-07-16 18:57: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_length97
author_reputation-273,943,619,793
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,991
net_rshares0
@fortified ·
Hello Dan. Pleased to meet you. 
First, thank you for the amazing platform. 

I check up on your feed from time to time to get the latest news on Steemit. I admit most of it is above my knowledge level, but I like to learn. Since signing up to Steemit in February I've really enjoyed my time here and have learned a lot, not just about Steemit itself but also about crypto-currencies in general. 

One thing I did not expect though, and surprised me the most about Steemit, was how much I'd learn about myself and the world around me. This in turn has lead to fundamental changes in my life. I won't spam your comments here with it but  I recently wrote a post in which I thank the Steemit community and also outline the positive impact it's had on my life. It's a great testament to your creation and I'd be happy to link you to if you'd like a read. 

Sorry if this is a bit off topic here but I just wanted to take this opportunity to thank you for everything you've given us so far. 

Thanks again..
@fortified
properties (22)
authorfortified
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t113930900z
categoryeos
json_metadata{"tags":["eos"],"users":["fortified"],"app":"steemit/0.1"}
created2017-07-10 11:39:36
last_update2017-07-10 11:39:36
depth1
children0
last_payout2017-07-17 11:39: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_length1,014
author_reputation38,014,334,194,654
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,976,459
net_rshares0
@frost04 ·
$0.15
Parallel Execution seems very intricate. Good luck @dan keep up the good work!
πŸ‘  , , ,
properties (23)
authorfrost04
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t083301028z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-10 08:33:03
last_update2017-07-10 08:33:03
depth1
children0
last_payout2017-07-17 08:33:03
cashout_time1969-12-31 23:59:59
total_payout_value0.142 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation3,645,772,569,932
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,962,702
net_rshares40,438,695,846
author_curate_reward""
vote details (4)
@groximus ·
Good information. keep them coming.
properties (22)
authorgroximus
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170711t035915867z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-11 03:59:12
last_update2017-07-11 03:59:12
depth1
children0
last_payout2017-07-18 03:59: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_length35
author_reputation30,638,843,559
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,062,933
net_rshares0
@hamzaoui ·
$0.27
Good post thanks for sharing
πŸ‘  
properties (23)
authorhamzaoui
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t192057615z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:21:00
last_update2017-07-09 19:21:00
depth1
children1
last_payout2017-07-16 19:21:00
cashout_time1969-12-31 23:59:59
total_payout_value0.203 HBD
curator_payout_value0.067 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation2,667,249,998,202
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,902,382
net_rshares70,180,150,849
author_curate_reward""
vote details (1)
@booster ·
<p>This comment has received a 0.14 % upvote from @booster thanks to: @hamzaoui.</p>
properties (22)
authorbooster
permlinkre-hamzaoui-re-dan-eos-developer-s-log-stardate-201707-9-20170709t192057615z-20170713t131208353z
categoryeos
json_metadata{"tags":["eos-developer-s-log-stardate-201707-9"],"app":"drotto/0.0.1"}
created2017-07-13 13:12:24
last_update2017-07-13 13:12:24
depth2
children0
last_payout2017-07-20 13:12: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_length85
author_reputation68,767,115,776,562
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,338,865
net_rshares0
@i0x ·
good to know. although it still is technical for me, I think I can try and find my way around
properties (22)
authori0x
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170711t183453658z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-11 18:32:03
last_update2017-07-11 18:32:03
depth1
children0
last_payout2017-07-18 18:32: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_length93
author_reputation39,001,786,104,442
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,140,454
net_rshares0
@inversio ·
really nice work, seems like fastest transcriptional option it has.
properties (22)
authorinversio
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t035115328z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 03:51:15
last_update2017-07-10 03:51:15
depth1
children0
last_payout2017-07-17 03:51: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_length67
author_reputation4,192,028,785
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,942,548
net_rshares0
@isjw84 ·
$0.04
good!
πŸ‘  
properties (23)
authorisjw84
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170711t035210242z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-11 03:52:12
last_update2017-07-11 03:52:12
depth1
children0
last_payout2017-07-18 03:52:12
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation602,433,574,545
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,062,440
net_rshares12,682,102,993
author_curate_reward""
vote details (1)
@jaey-designs ·
Thank you for **EOS** dan... πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘
properties (22)
authorjaey-designs
permlinkre-dan-2017710t10323150z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-10 09:32:15
last_update2017-07-10 09:32:15
depth1
children0
last_payout2017-07-17 09:32:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation1,441,125,362
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,966,827
net_rshares0
@jamiuolanrewaju ·
This would really help we developers. Thnx
properties (22)
authorjamiuolanrewaju
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t172428126z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 17:24:30
last_update2017-07-10 17:24:30
depth1
children0
last_payout2017-07-17 17:24: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_length42
author_reputation1,210,726,178
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,010,321
net_rshares0
@joythewanderer ·
Thanks for posting!
properties (22)
authorjoythewanderer
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170711t190929344z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-11 19:09:27
last_update2017-07-11 19:09:27
depth1
children0
last_payout2017-07-18 19:09: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_length19
author_reputation1,916,082,145,948,706
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,144,379
net_rshares0
@jrcar ·
i like your post.
properties (22)
authorjrcar
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t232659370z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 23:27:39
last_update2017-07-09 23:27:39
depth1
children0
last_payout2017-07-16 23:27: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_length17
author_reputation100,536,619
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,923,573
net_rshares0
@kamuru ·
That looks like the basics of making cryptos ......does they apply the ordinary action like paypal or skrill transaction??
properties (22)
authorkamuru
permlinkre-dan-2017710t2236456z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-10 19:36:12
last_update2017-07-10 19:36:12
depth1
children0
last_payout2017-07-17 19:36: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_length122
author_reputation17,763,397,869
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,023,349
net_rshares0
@kevbot ·
I only have 1, uno EOS.
πŸ‘Ž  ,
properties (23)
authorkevbot
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t184724340z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:47:27
last_update2017-07-09 18:47:27
depth1
children2
last_payout2017-07-16 18:47: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_length23
author_reputation3,453,478,685,569
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,037
net_rshares-1,722,066,344,921
author_curate_reward""
vote details (2)
@kevbot · (edited)
@dan  @blacklist-a shocked to be flagged for this. this is just unfair and unjust. makes me really sad to be a user on the platform and get such negative feedback.
properties (22)
authorkevbot
permlinkre-kevbot-re-dan-eos-developer-s-log-stardate-201707-9-20170709t235826180z
categoryeos
json_metadata{"tags":["eos"],"users":["dan","blacklist-a"],"app":"steemit/0.1"}
created2017-07-09 23:58:27
last_update2017-07-10 00:06:42
depth2
children1
last_payout2017-07-16 23:58: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_length163
author_reputation3,453,478,685,569
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,925,655
net_rshares0
@liondani ·
why? now you have duo flags added to your uno EOS
properties (22)
authorliondani
permlinkre-kevbot-re-kevbot-re-dan-eos-developer-s-log-stardate-201707-9-20170712t200709158z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 20:07:09
last_update2017-07-12 20:07:09
depth3
children0
last_payout2017-07-19 20:07: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_length49
author_reputation95,095,146,236,111
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,264,069
net_rshares0
@kevbot · (edited)
hey @dan, i dont know why you downvoted my comment. :O, it made me lose rep, i support your channel ,work and everything you post, but that was a little disappointing to be on the blacklist. I didn't think it was very nice. all i stated was i have 1 eos :O, which is true. Been using steem for a short time period and have been an avid user since.  I didn't know what i said was inappropriate. sorry if i offended you in any way ..., i'll continue to support your work even so.
properties (22)
authorkevbot
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t235037451z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1","users":["dan"]}
created2017-07-09 23:50:36
last_update2017-07-10 01:14:36
depth1
children0
last_payout2017-07-16 23:50: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_length477
author_reputation3,453,478,685,569
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,925,148
net_rshares0
@krytonika ·
Very very well written and your understanding of EOS makes it much easier to relay all of its components using terms that the rest of the Steemit Community can understand - and make investing decisions more on EOS properties rather than trend graphs that have no rump or dump reasoning
properties (22)
authorkrytonika
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t082913830z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 08:29:15
last_update2017-07-10 08:29:15
depth1
children0
last_payout2017-07-17 08:29:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length285
author_reputation3,220,032,340,024
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,962,477
net_rshares0
@kult300 ·
Thank you very much for this good explanation. Very on point. Easy to understand even for me as a new one.
properties (22)
authorkult300
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170711t215302270z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-11 21:53:03
last_update2017-07-11 21:53:03
depth1
children0
last_payout2017-07-18 21:53: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_length106
author_reputation1,579,272,192,934
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,159,050
net_rshares0
@lazytrades ·
Thanks for keeping us updated! :)
Nice to have someone who cares for quality content!
Keep it up
properties (22)
authorlazytrades
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t164356711z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 16:44:03
last_update2017-07-10 16:44:03
depth1
children0
last_payout2017-07-17 16:44: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_length96
author_reputation244,799,552,984
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,006,015
net_rshares0
@leobliss ·
Awesome work. I really admire your work
properties (22)
authorleobliss
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t224710570z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 22:47:21
last_update2017-07-09 22:47:21
depth1
children0
last_payout2017-07-16 22:47: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_length39
author_reputation527,644,989,697
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,920,717
net_rshares0
@midgeteg ·
Nice developer log :D
properties (22)
authormidgeteg
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t184725749z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:47:21
last_update2017-07-09 18:47:21
depth1
children2
last_payout2017-07-16 18:47: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_length21
author_reputation12,200,224,632,808
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,029
net_rshares0
@dan ·
$3.47
something tells me you didn't read it in less than 2 minutes.
πŸ‘  , , , ,
properties (23)
authordan
permlinkre-midgeteg-re-dan-eos-developer-s-log-stardate-201707-9-20170709t184915711z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:49:15
last_update2017-07-09 18:49:15
depth2
children1
last_payout2017-07-16 18:49:15
cashout_time1969-12-31 23:59:59
total_payout_value2.639 HBD
curator_payout_value0.835 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation155,470,101,136,708
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,208
net_rshares890,501,915,445
author_curate_reward""
vote details (5)
@midgeteg · (edited)
I skimmed over it, I dont know much about  logs
properties (22)
authormidgeteg
permlinkre-dan-re-midgeteg-re-dan-eos-developer-s-log-stardate-201707-9-20170709t185122848z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:51:18
last_update2017-07-09 18:51:42
depth3
children0
last_payout2017-07-16 18:51: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_length47
author_reputation12,200,224,632,808
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,401
net_rshares0
@mohsen ·
Hi dan   hru bro?
See my page and see post if you like it support me plz
https://steemit.com/brain/@mohsen/craniotomy
πŸ‘  
πŸ‘Ž  ,
properties (23)
authormohsen
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t202040510z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/brain/@mohsen/craniotomy"],"app":"steemit/0.1"}
created2017-07-09 20:20:45
last_update2017-07-09 20:20:45
depth1
children0
last_payout2017-07-16 20:20: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_length117
author_reputation8,272,757,067
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,908,326
net_rshares-1,721,665,518,849
author_curate_reward""
vote details (3)
@moneymaster · (edited)
thanx for this post ! but i have really no clue what this is about :)

Sorry, SteemON 
http://i.imgur.com/SBl0MCK.gif
πŸ‘  ,
properties (23)
authormoneymaster
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t220417191z
categoryeos
json_metadata{"tags":["eos"],"image":["http://i.imgur.com/SBl0MCK.gif"],"app":"steemit/0.1"}
created2017-07-09 22:04:18
last_update2017-07-09 22:05:12
depth1
children0
last_payout2017-07-16 22:04: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_length117
author_reputation197,148,008,589
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,917,269
net_rshares1,789,980,152
author_curate_reward""
vote details (2)
@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-s-log-stardate-201707-9-20170710t143904819z
categoryeos
json_metadata{"tags":["eos"],"users":["nakedchef89"],"app":"steemit/0.1"}
created2017-07-10 14:39:24
last_update2017-07-10 14:39:24
depth1
children0
last_payout2017-07-17 14:39: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_length134
author_reputation778,084,211,374
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,993,015
net_rshares0
@naphy ·
Nice post :D I just bought EOS today waiting for my token :D
properties (22)
authornaphy
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t004321627z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 00:44:30
last_update2017-07-10 00:44:30
depth1
children0
last_payout2017-07-17 00: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_length60
author_reputation187,303,073
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,928,872
net_rshares0
@neerajadd ·
Good
properties (22)
authorneerajadd
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170711t081346068z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-11 08:13:57
last_update2017-07-11 08:13:57
depth1
children0
last_payout2017-07-18 08:13: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_length4
author_reputation146,858,026
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,081,089
net_rshares0
@oddreality ·
This makes so much sense now! Thank you so much!
properties (22)
authoroddreality
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t153354439z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 15:33:54
last_update2017-07-10 15:33:54
depth1
children0
last_payout2017-07-17 15:33: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_length48
author_reputation256,299,405,521
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,998,751
net_rshares0
@outhori5ed ·
Great post Dan
properties (22)
authorouthori5ed
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t201529729z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 20:15:33
last_update2017-07-09 20:15:33
depth1
children0
last_payout2017-07-16 20: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_length14
author_reputation39,356,239,578,011
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,907,807
net_rshares0
@pal ·
$14.07
Dan, thank you, you brought me in programming world. I am value so much that I was early involved with BitShares, because I was introduced to your talks and writings about what technology can do. It was like some catalyst for me, I started to learn programming, two years latter I left my sales job and became full time web developer. It was great gift, no appreciation of token will compare with acquired ability to earn money with your own brain. In the end, stake in crypto not so important, price could decline for years, but skills is much more tengible. Human mind creating these systems to serve humanity, we should not be slaves to them by depending on price of the token. I hope someday I could contribute code to projects like STEEM, BitShares or even EOS.
πŸ‘  , , , , , , , , , , ,
properties (23)
authorpal
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t203046380z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 20:30:48
last_update2017-07-10 20:30:48
depth1
children0
last_payout2017-07-17 20:30:48
cashout_time1969-12-31 23:59:59
total_payout_value12.538 HBD
curator_payout_value1.527 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length766
author_reputation12,055,554,235,183
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,028,655
net_rshares3,977,807,983,117
author_curate_reward""
vote details (12)
@paradise-found ·
I'm not allowed to purchase, because of US-IP?
Can you help me understand this please?
properties (22)
authorparadise-found
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170716t033441455z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-16 03:34:45
last_update2017-07-16 03:34:45
depth1
children0
last_payout2017-07-23 03:34: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_length86
author_reputation81,653,004,863,007
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,632,767
net_rshares0
@rayandoelimi ·
dont lose the time , check this 

https://steemit.com/profit/@rayandoelimi/you-wanna-earn-money-check-this
πŸ‘  
πŸ‘Ž  ,
properties (23)
authorrayandoelimi
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t193314654z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/profit/@rayandoelimi/you-wanna-earn-money-check-this"],"app":"steemit/0.1"}
created2017-07-09 19:33:12
last_update2017-07-09 19:33:12
depth1
children0
last_payout2017-07-16 19:33: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_length106
author_reputation-26,332,894,253
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,903,640
net_rshares-1,721,661,162,044
author_curate_reward""
vote details (3)
@richguy · (edited)
$1.40
I have no doubt that EOS should take centre stage in cryptocurrency discussion in a few years to come for obvious reasons.

Unlike bitcoin, EOS is a product of years of experience. @dan has successfully pulled off a number of project that are individually a success. 

Steem and bitshare are obvious success story of a man' s vission.

I can bet that EOS will be a standard for anything crypto in the next 5 years.

That said, I want to bring @dan attention to the current EOS  Token ICO. Many of us who are not vast in blockchain cannot dare to participate in the sale for obvious reasons.

The procedure for participation is so complex for an average investor.

I really feel something needs to be done because alot of people have been waiting for this ICO, so so seeing it passing by like this just for not having enough technical knowledge to buy is not good.

This should be the people's coin so make it accessible to the people. Thank you.
πŸ‘  , , , , , , , , , , , , , , , ,
properties (23)
authorrichguy
permlinkre-dan-2017710t95543285z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-10 08:56:18
last_update2017-07-10 09:00:24
depth1
children4
last_payout2017-07-17 08:56:18
cashout_time1969-12-31 23:59:59
total_payout_value1.227 HBD
curator_payout_value0.171 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length945
author_reputation3,799,890,794,265
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,964,256
net_rshares399,958,406,809
author_curate_reward""
vote details (17)
@bitminter ·
For this exact reason i only buy on exchanges, bought a few days ago at $3, ouch hahaha :-) Thanks for the comment.
properties (22)
authorbitminter
permlinkre-richguy-re-dan-2017710t95543285z-20170710t150556875z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 15:05:57
last_update2017-07-10 15:05:57
depth2
children1
last_payout2017-07-17 15:05: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_length115
author_reputation9,160,739,287,278
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,995,931
net_rshares0
@richguy ·
$0.51
Which exchange did you buy from
πŸ‘  ,
properties (23)
authorrichguy
permlinkre-bitminter-re-richguy-re-dan-2017710t95543285z-20170712t083110876z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 08:31:12
last_update2017-07-12 08:31:12
depth3
children0
last_payout2017-07-19 08:31:12
cashout_time1969-12-31 23:59:59
total_payout_value0.383 HBD
curator_payout_value0.125 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation3,799,890,794,265
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,203,917
net_rshares142,451,190,846
author_curate_reward""
vote details (2)
@cryptonfused ·
EOS is an upgraded like an ugrade to  blockchain tech . Lets be clear here: Bitcoin, was built on the ingenious blockchain tech. Bitcoin is what led the way for more innovation and every other variation of the blockchain. To  imply that bitcoin is not a product of years of experience is misleading. 

Ps you can buy tokens after ICO. If EOS delivers in its promises and based on activity and consistent update report from @dan , it is most probable that it will. If it does, the future value of EOS tokens can increase significantly. In that case; purchasing it on exchanges early may prove to be just as profitable in the nxt 3 to 4 years.
properties (22)
authorcryptonfused
permlinkre-richguy-re-dan-2017710t95543285z-20170711t234126731z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-11 23:41:36
last_update2017-07-11 23:41:36
depth2
children0
last_payout2017-07-18 23: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_length641
author_reputation253,937,837,335
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,167,479
net_rshares0
@shareme ·
Here is a steemit link on how to participate https://steemit.com/eos/@thimom/how-to-use-myetherwallet-for-the-eos-ico
πŸ‘  
properties (23)
authorshareme
permlinkre-richguy-re-dan-2017710t95543285z-20170712t001224793z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@thimom/how-to-use-myetherwallet-for-the-eos-ico"],"app":"steemit/0.1"}
created2017-07-12 00:12:27
last_update2017-07-12 00:12:27
depth2
children0
last_payout2017-07-19 00:12:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation2,000,226,178
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,169,634
net_rshares1,143,286,776
author_curate_reward""
vote details (1)
@robjc ·
Interesting ! opening my eyes!
πŸ‘  
properties (23)
authorrobjc
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t180235713z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 18:02:36
last_update2017-07-10 18:02:36
depth1
children0
last_payout2017-07-17 18:02: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_length30
author_reputation111,919,402,387
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,014,353
net_rshares142,854,666
author_curate_reward""
vote details (1)
@sam999 ·
really good work dan..
properties (22)
authorsam999
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t210112294z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 21:01:12
last_update2017-07-09 21:01:12
depth1
children0
last_payout2017-07-16 21:01: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_length22
author_reputation825,781,129
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,911,925
net_rshares0
@sanees ·
I have to read this multiple times to understand this.but overall the scheme looks very similar to OOPS concept.
"The alternative to locking at the time data is accessed, is to lock at the time execution is scheduled".  How does the scheduler keep track of the lock used inside the program..Does it look for any specific "lock or synchronization object" tags and make sure threads sharing them are not accessing them simultaneously ...May be the threads are of same priority, otherwise wouldnt this cause deadlocks?
properties (22)
authorsanees
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t143003428z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 14:30:03
last_update2017-07-10 14:30:03
depth1
children1
last_payout2017-07-17 14:30: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_length515
author_reputation2,019,131,877,450
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,992,035
net_rshares0
@sanees ·
I realize lot of information is available in github.Will read up the documents and provide any comments and concerns we have.My team started out with Ethereum.But scalability and parallelism offered by EOS is very intriguing. For now exploring both
properties (22)
authorsanees
permlinkre-sanees-re-dan-eos-developer-s-log-stardate-201707-9-20170710t144729665z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 14:47:30
last_update2017-07-10 14:47:30
depth2
children0
last_payout2017-07-17 14:47:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length248
author_reputation2,019,131,877,450
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,993,983
net_rshares0
@savymenke ·
Fantastic Dan the Man!!
properties (22)
authorsavymenke
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t213635024z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 21:36:36
last_update2017-07-10 21:36:36
depth1
children0
last_payout2017-07-17 21:36: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_length23
author_reputation49,871,005,929
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,034,626
net_rshares0
@shahmaqsood ·
Really a great work
properties (22)
authorshahmaqsood
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t070104736z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 07:01:09
last_update2017-07-10 07:01:09
depth1
children0
last_payout2017-07-17 07:01: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_length19
author_reputation7,593,476,043
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,956,343
net_rshares0
@sirdre ·
I admire this model. Very innovative.
properties (22)
authorsirdre
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t190858126z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:09:00
last_update2017-07-09 19:09:00
depth1
children0
last_payout2017-07-16 19:09: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_length37
author_reputation531,967,805
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,901,173
net_rshares0
@snowy1nl ·
I am Dutch, but most of this is double dutch to me. I think it's great that you are updating the community on a very regular basis. Keep up the good work, i am following the project with much interest.
πŸ‘  
properties (23)
authorsnowy1nl
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t200433272z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 20:04:33
last_update2017-07-09 20:04:33
depth1
children0
last_payout2017-07-16 20:04: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_length201
author_reputation64,493,522,241
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,906,751
net_rshares1,188,543,828
author_curate_reward""
vote details (1)
@soccer.news ·
You like soccer? 
Do you like to watch soccer on tv?
Do you have football fans? 
Do not miss the most updated football news every day just @soccer.news, do not forget to follow @soccer.news for the latest and updated soccer news
https://steemit.com/@soccer.news
πŸ‘Ž  ,
properties (23)
authorsoccer.news
permlinkre-dan-2017713t34756394z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-12 20:48:03
last_update2017-07-12 20:48:03
depth1
children0
last_payout2017-07-19 20:48: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_length261
author_reputation-704,944,498,022
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,267,854
net_rshares-47,363,140,374,267
author_curate_reward""
vote details (2)
@spicydavid2500 ·
Ouch you lost 1200 dollars!!  Steemit you need improve their system.
properties (22)
authorspicydavid2500
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t031726327z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 03:17:24
last_update2017-07-10 03:17:24
depth1
children0
last_payout2017-07-17 03:17: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_length68
author_reputation10,013,398,604
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,939,984
net_rshares0
@steemitboard ·
Congratulations @dan! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/toppayoutday.png)](http://steemitboard.com/@dan) Your post got the highest payout on one day

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

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

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-dan-20170711t012327000z
categoryeos
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-07-11 01:23:27
last_update2017-07-11 01:23:27
depth1
children0
last_payout2017-07-18 01:23: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_length695
author_reputation38,975,615,169,260
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,051,576
net_rshares0
@td4me80 ·
Nice breakdown! Keep steeming!
properties (22)
authortd4me80
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t194204393z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:42:03
last_update2017-07-09 19:42:03
depth1
children0
last_payout2017-07-16 19:42: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_length30
author_reputation144,781,602,494
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,904,558
net_rshares0
@theking007 ·
Please votes me. Because my steem power is low that's  why i couldn't poat on steemit. Please votes me follow me. Please......
πŸ‘Ž  ,
properties (23)
authortheking007
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t153208661z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 15:32:18
last_update2017-07-10 15:32:18
depth1
children0
last_payout2017-07-17 15:32: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_length126
author_reputation-110,782,265,319
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,998,621
net_rshares-1,722,346,215,146
author_curate_reward""
vote details (2)
@theking007 ·
Please votes me. Because my steem power is low that's  why i couldn't poat on steemit. Please votes me follow me. Please......
πŸ‘Ž  ,
properties (23)
authortheking007
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t153305898z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 15:33:21
last_update2017-07-10 15:33:21
depth1
children0
last_payout2017-07-17 15:33:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation-110,782,265,319
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,998,715
net_rshares-1,722,346,215,146
author_curate_reward""
vote details (2)
@theofilos13 ·
It's  really hard to understand what Dan has brought in the community and how much improvement will come in the next months because of him. Thank you for the EOS, Dan!
πŸ‘  , , ,
properties (23)
authortheofilos13
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t205518072z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 20:55:21
last_update2017-07-09 20:55:21
depth1
children0
last_payout2017-07-16 20:55: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_length167
author_reputation10,190,612,711
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,911,441
net_rshares4,258,857,687
author_curate_reward""
vote details (4)
@timcrypto ·
Great post DanπŸ‘πŸΌ, definitely a bright future for Eos in my opinion.
properties (22)
authortimcrypto
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t185050469z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:50:51
last_update2017-07-09 18:50:51
depth1
children1
last_payout2017-07-16 18:50: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_length67
author_reputation68,635,880,449
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,347
net_rshares0
@elegente ·
It's an absolutely brilliant post.
πŸ‘  
properties (23)
authorelegente
permlinkre-timcrypto-re-dan-eos-developer-s-log-stardate-201707-9-20170709t185226074z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 18:52:24
last_update2017-07-09 18:52:24
depth2
children0
last_payout2017-07-16 18:52: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_length34
author_reputation-273,943,619,793
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,899,502
net_rshares1,120,072,831
author_curate_reward""
vote details (1)
@tsteem ·
$0.02
Hello @dan... im beginner in steemit and I still do not know about digital currency. And some time I see your post on my homepage about eos, what is eos? thank you!
πŸ‘  
properties (23)
authortsteem
permlinkre-dan-2017710t215951326z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-10 14:59:54
last_update2017-07-10 14:59:54
depth1
children0
last_payout2017-07-17 14:59:54
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation70,082,700,195
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,995,258
net_rshares7,463,505,063
author_curate_reward""
vote details (1)
@tushar2017 ·
$6.76
Really a great work i have seen so far.keep continue ur gd work
πŸ‘  , , , , , , , , , , ,
properties (23)
authortushar2017
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t191603284z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 19:18:33
last_update2017-07-09 19:18:33
depth1
children0
last_payout2017-07-16 19:18:33
cashout_time1969-12-31 23:59:59
total_payout_value5.107 HBD
curator_payout_value1.649 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation34,782,979,669
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,902,124
net_rshares1,737,417,229,353
author_curate_reward""
vote details (12)
@vinylshopus ·
Hey Dan please check out our steem art wallet. Let us know your thoughts!
properties (22)
authorvinylshopus
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170709t223800180z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-09 22:38:00
last_update2017-07-09 22:38:00
depth1
children0
last_payout2017-07-16 22:38: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_length73
author_reputation15,341,962,940
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,919,953
net_rshares0
@wavemaster ·
Interesting code
properties (22)
authorwavemaster
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170710t014231586z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-10 01:42:36
last_update2017-07-10 01:42:36
depth1
children0
last_payout2017-07-17 01:42: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_reputation102,708,627,411
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,933,201
net_rshares0
@williambatu ·
$3.34
https://www.youtube.com/watch?v=S-fY1exdbao&t=676s
@dan This architecture is same as AWS LAMBDA. Pay how much you use.I found serverless computating architecture may helps devs save some time to reinvent wheels.
πŸ‘  , ,
properties (23)
authorwilliambatu
permlinkre-dan-eos-developer-s-log-stardate-201707-9-20170712t161224138z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"image":["https://img.youtube.com/vi/S-fY1exdbao/0.jpg"],"links":["https://www.youtube.com/watch?v=S-fY1exdbao&t=676s"],"app":"steemit/0.1"}
created2017-07-12 16:12:24
last_update2017-07-12 16:12:24
depth1
children0
last_payout2017-07-19 16:12:24
cashout_time1969-12-31 23:59:59
total_payout_value2.504 HBD
curator_payout_value0.832 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length211
author_reputation14,069,419,248
root_title"EOS.IO Transaction Structure - Developer's Log, Stardate 201707.9"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,241,113
net_rshares899,305,369,889
author_curate_reward""
vote details (3)