create account

EOS.IO DAWN 2.0 Released & Development Update by eosio

View this thread on: hive.blogpeakd.comecency.com
· @eosio · (edited)
EOS.IO DAWN 2.0 Released & Development Update
![dawn_2.0_steemit_post.jpg](https://steemitimages.com/DQmQsQhPjbckxFHrtknac9ABAB17WEvjA2iarpCPNK3Z3xC/dawn_2.0_steemit_post.jpg)

EOS.IO Dawn 2.0 has been released along with a public test network which will be maintained by the block.one team. This release provides an Alpha implementation of most of the remaining features described in our Roadmap for Fall 2017 and originally targeted for completion by December 21, 2017. As published in our Roadmap, “Phase 2 - Minimal Viable Test Network” was to demonstrate the following by Fall 2017:

* P2P Network Code
* Wasm Sanitation & CPU Sandboxing
* Resource Usage Tracking / Rate Limiting
* Genesis Import Testing
* Inter-Blockchain Communication

At this time, we have achieved the initial implementation of most of these features; however, due to parallel development paths our implementation of Inter-Blockchain Communication exists on a separate branch that will not be used for the initial test network.

Those interested in performance-testing our EOS.IO Dawn 2.0 release will find that all blockchain and network code necessary to launch and operate a private network can be found in our [Github repository](https://github.com/eosio/eos). Our internal testing shows we can sustain several thousand transfers per second and 1 second blocks using our single-threaded implementation on average hardware. That said, there are known attack vectors for which we have unimplemented solutions. For example, compilation of new contracts for the first time can take up to 34ms, which if exploited could cause the network to fragment at transaction rates over 30 TPS.

Our solution for this issue is to place limits on the frequency with which contract code can be updated, as well as a time delay between when code is updated and when transactions using that new code can be processed.  This time delay will be on the order of 60 seconds to allow all block producers time to compile/cache the optimized x86 instructions from the web assembly.

Because of these outstanding attack vectors, performance testing will remain a task for private test networks, but feature testing can now be performed on a public test network which we are artificially limiting to 30 TPS to ensure uptime and access.

Over the next 6 months, we will be continuously testing and debugging the network to improve stability and performance.

# New Features in Dawn 2.0
## Genesis Import Testing
We have implemented a snapshot tool that will import initial state based upon the EOS ERC-20 token distribution on the Ethereum network. Our test network will only include balances which registered a valid EOS public key. About 20% of ERC-20 tokens have been properly registered to an EOS public key. Our snapshot tool also implements a fallback tool for all unregistered ERC-20 tokens held by an Ethereum account for which we can recover a public key from signed ethereum transactions. This covers 99% of all EOS ERC-20 tokens, but will require importing your Ethereum private key into your EOS.IO wallet.

For security purposes, our test network will not ask users to import their Ethereum private keys recovered via the fallback process. If your EOS private key is compromised while testing, you can always register a new key on the Ethereum network.
## Token Faucets
We have also implemented a “faucet” facility to allow testing of the network by those who do not hold tokens or have not yet registered a valid EOS public key.
## Resource Usage & Rate Limiting
We have implemented basic rate limiting and resource usage tracking. This tracks  bandwidth, database storage, and computational usage. At this time there are some known bugs with our rate limiting algorithm, but nothing that should interfere with testing and developing of applications.

We know that many people have been asking for more information about how rate limiting will operate, who will be billed, and how they can lease their staked tokens for income.

#### Bandwidth
All transactions consume some of the maximum network bandwidth as configured by the block producers. All accounts whose authority is required for the transaction will have their 3-day average bandwidth incremented based upon the size of the transaction. Bandwidth will require the authorizing account (not the contract) to have staked tokens or to be delegated staked tokens by the application provider.

#### Computational Bandwidth 
All transactions consume some computation. Computation can be executed in parallel, so it can be viewed as a multi-lane highway with each lane having different congestion. Each scope (lane) will have its own independent rate limit and a user will be billed O(S^2) for the number of simultaneous scopes (lanes) requested and rate limited based upon the most congested scope.

#### Database Storage
EOS.IO contracts have access to an in-memory database where they can store application state. The contract is billed based upon the total data they store plus a constant overhead factor for each independent database entry.  This in-memory database is independent and separate from the EOS.IO Storage protocol for decentralized bulk hosting and storage.  
## P2P Network Code
We have a basic implementation of mesh network code that is being demonstrated by our public test network. Block.one is operating 21 independent servers each with one of the initial producers configured.

# EOS Dawn 3.0


EOS Dawn 3.0 will re-introduce horizontal scaling of single chains and infinite scaling via secure inter-blockchain communication. With these two features there will be no limit to what can be built on blockchain technology, nor for how decentralized the network of blockchains can become.
## Infinite Scaling and Infinite Decentralization
The holy grail of blockchain technology is to enable secure communication between two independent blockchains without requiring both blockchains to validate everything on the other blockchain.  This requires making one blockchain a light-client of another blockchain.

Light clients authenticate transactions using only the block headers and merkle proofs. EOS.IO will be the first proof-of-stake protocol with support for light client validation. More importantly, it will be the only one capable of generating proof-of-completeness. This means it will be possible to prove you have received all relevant prior messages from another chain in order without having a waiting/challenge period. 

Whereas traditionally light clients have to process all block headers, EOS.IO will enable light clients that only have to process block headers when producers change or when a new message is required from a more recent block. This will enable efficient infrequent communication between chains along with frequent communication. In the worst case, the overhead of two blockchains communicating every 500 ms will be about 2 transactions per second above the total number of messages sent. 

Under this model, the communication will be secured so long as at least ⅓ of producers are honest. Furthermore, if even one producer is corrupt they can be automatically punished if they sign any message that could potentially corrupt a light client (aka foreign blockchain).

Lastly, the round-trip time for communicating to another blockchain depends upon the latency until irreversibility of each chain. An EOS.IO based chains will be able to send a message to a foreign EOS.IO chain and get a cryptographically verified response in under 3 seconds.  

This level of interchain communication and security enables the creation of two-way pegs between chains with very low latency. While the two-way peg is the most obvious example, any business-to-business communication can be performed using this same method.

#### Public / Private Communication
With interchain communication it will be possible for private blockchains to have secure two-way communication with public blockchains. This enables all kinds of blockchain applications which are not well suited to the public nature of traditional blockchains. For example, someone could create the Swiss-Bank of blockchains that is super secret to everyone but the bank owners and the individuals.  

#### Development Progress 
In order to deliver our public test network, we divided our development into two parallel paths so that we could refactor significant portions of our code for readability, performance, and inter-blockchain communication. This refactoring work has been occurring in the eos-noon branch.

In past updates we indicated our intention to focus on shared-memory architectures so that developers could easily perform synchronous read-access and atomic transactions with other contracts. The consequence of this approach was a loss of horizontal scaling beyond a single high end machine.

With EOS Dawn 3.0 we will be restoring the ability to do multi-machine horizontal scaling by use of up to 65,000 different regions. All regions will share the same accounts and contract code, but have independent in memory databases. Contracts within one region must use asynchronous transactions to communicate with their counterparts in other regions. With this architecture a single block producer could be implemented as a cluster.

#### Working Integration with Apple’s Secure Enclave
In our last update we announced our intention to support the same elliptic curve used by Apple, Android, and many smart cards.  Our eos-noon branch now includes a fully functional proof-of-concept where messages are signed and verified using Touch ID (and also Face ID) on the latest MacBook Pro’s.  Similar code also works on native iPhone applications.  This means that EOS.IO based mobile applications will be among the most secure blockchain wallets known.

Furthermore, the eos-noon branch has now integrated this support for multiple signature types which means it is possible to use secure enclave to sign transactions which will be validated on eos-noon.

#### 500 ms Block Confirmation
On our eos-noon branch we have implemented a number of changes to the underlying DPOS framework to support 500 ms blocks (2 blocks every second). This change will dramatically increase the responsiveness of decentralized applications. To achieve this we have introduced some changes in how block scheduling occurs.

The same producer will now produce 12 blocks in a row before handing off to the next producer. This solves the single biggest bottleneck on block production which is producer-to-producer handoff.  Under the new structure unexpected latency may cause a few blocks to be missed every time there is a hand off, but between handoffs there should be very fast confirmation. We will be experimenting with different hand-off periods. The longer the handoff period the fewer missed blocks during normal operation, but the longer the outage will be if a single node goes down. With 500ms and hand off every 12 blocks, the “down time” is no worse than when a single producer misses a single block on Steem and BitShares. In this event it could take 6 seconds for first confirmation.  

#### Removing Runner Up Producers
Inter-blockchain communication requires light clients to keep track of all blocks where the set of active producers changes. The “runner up producer list” causes a new producer to be added or removed every minute which forces light clients to process at least one block header per minute, if not more. In order to reduce the frequency of producer set changes we have changed block scheduling to only include the top 21 producers. We are considering offering some kind of stand-by pay for the runner ups, but they will not actually be tasked with producing blocks.

#### One Second Irreversibility 
Every block producer will sign every block which will enable a block to be marked irreversible as soon as ⅔+ producers have signed it. Producers are only allowed to sign one block header per block height. This means that in the event of a fork producers cannot sign blocks at the same height on both forks. Any such a signature will be cryptographic proof of misbehavior of a producer which can be dealt with by a number of methods including automatic loss of producer position, potential loss of bond, and potentially liability for damages under arbitration. 

Unlike other protocols which gather ⅔+ signatures before the next block can be produced, EOS DPOS does optimistic pipelining that allows the blockchain to advance in “pending state” while the signatures are gathered. These additional signatures occur outside the blockchain and can be pruned after a block becomes irreversible under traditional DPOS rules of Steem or BitShares.

Under this model, it is possible to achieve byzantine fault tolerance because it is impossible for any block to receive ⅔+ signatures without cryptographic evidence of the byzantine nodes.

#### Removing Producer Schedule Shuffling
In order to minimize the number of missed blocks during producer handoff, it is desirable to minimize the latency between consecutive producers. If a producer in New York is scheduled to follow a producer in China it may take 250ms to receive a block under normal conditions (50% of block interval) and potentially much longer if there is network congestion. A producer in New York and Texas on the other hand would only have 50ms of latency (10% of block interval). This means there is a significantly lower probability of missing blocks during a handoff from New York to Texas than from New York to China.  

If we schedule block production such that it rotates from New York, to Texas, to California, to Hawaii, to Japan, China, India, Israel, Italy, England, Iceland, and back to New York then there is never a hand off of more than 50 to 100ms. However if the order is randomized then the average hand off will be significantly higher. 

Producer shuffling was introduced to minimize the potential of one producer to pick on a subsequent producer. This risk was in a world where producers were presumed to be potentially malicious, but in the world of highly vetted, public, producers with high quality data centers it no longer makes sense.  There is a constitution and expected level of behavior along with a process for resolving disputes in the event one producer intentionally harms his neighbor.  

Under EOS the producers will vote on the production rotation order in a way that minimizes average latency and minimizes total missed blocks due to Internet network congestion. 
# Known Issues
There are a number of known issues with EOS Dawn 2.0 and it is expected for there to be significant instability with this early release. The purpose of this release is to demonstrate a basic capability and our team will be ironing out bugs and improving stability and performance over the the next 6 months. 

In order to support stability of the test network, we have disabled producer voting. 

## Conclusion
We would like to thank our development team for working around the clock and around the globe to build and deliver EOS Dawn 2.0, an alpha version of what will become the most robust, highest performance, most decentralized application platform available. We are executing according to our published roadmap and delivering more features and capabilities than originally planned. We look forward to 2018 and are confident that all features will be complete and bugs resolved by the time the EOS token distribution is concluded.

*Disclaimer*
*block.one is a software company and is producing the EOS.IO software as free, open source software. This software may enable those who deploy it to launch a blockchain or decentralized applications with the features described above. block.one will not be launching a public blockchain based on the EOS.IO software. It will be the sole responsibility of third parties and the community and those who wish to become block producers to implement the features and/or provide the services described above as they see fit. block.one does not guarantee that anyone will implement such features or provide such services or that the EOS.IO software will be adopted and deployed in any way.*

*All statements in this document, other than statements of historical facts, including any statements regarding block.one’s business strategy, plans, prospects, developments and objectives are forward looking statements. These statements are only predictions and reflect block.one’s current beliefs and expectations with respect to future events and are based on assumptions and are subject to risk, uncertainties and change at any time. We operate in a rapidly changing environment. New risks emerge from time to time. Given these risks and uncertainties, you are cautioned not to rely on these forward-looking statements. Actual results, performance or events may differ materially from those contained in the forward-looking statements. Some of the factors that could cause actual results, performance or events to differ materially from the forward-looking statements contained herein include, without limitation: market volatility; continued availability of capital, financing and personnel; product acceptance; the commercial success of any new products or technologies; competition; government regulation and laws; and general economic, market or business conditions. Any forward-looking statement made by block.one speaks only as of the date on which it is made and block.one is under no obligation to, and expressly disclaims any obligation to, update or alter its forward-looking statements, whether as a result of new information, subsequent events or otherwise.*
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 413 others
👎  , , , , , ,
properties (23)
authoreosio
permlinkeos-io-dawn-2-0-released-and-development-update
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmQsQhPjbckxFHrtknac9ABAB17WEvjA2iarpCPNK3Z3xC/dawn_2.0_steemit_post.jpg"],"links":["https://github.com/eosio/eos"],"app":"steemit/0.1","format":"markdown"}
created2017-12-04 18:10:42
last_update2017-12-05 01:22:12
depth0
children141
last_payout2017-12-11 18:10:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.656 HBD
body_length17,571
author_reputation27,974,755,807,058
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id22,386,204
net_rshares39,966,705,955,697
author_curate_reward""
vote details (484)
@ashe-oro ·
Wooooooooooooooot!!!  The future is here!!
👍  
properties (23)
authorashe-oro
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t013425773z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 01:35:30
last_update2017-12-05 01:35:30
depth1
children0
last_payout2017-12-12 01: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_length42
author_reputation24,151,212,829,722
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,416,126
net_rshares3,106,633,935
author_curate_reward""
vote details (1)
@asralf ·
I know a lil bit of programming but is there any tutorial on how to install the software. I would like to learn to make Dapps on the EOS blockchain so is there anyone here can help me with the basics first?
properties (22)
authorasralf
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171206t092719718z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-06 09:27:18
last_update2017-12-06 09:27:18
depth1
children0
last_payout2017-12-13 09:27: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_length206
author_reputation303,913,821,705
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,547,818
net_rshares0
@athoughtbytim ·
Awesome!
properties (22)
authorathoughtbytim
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171216t051421384z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-16 05:14:21
last_update2017-12-16 05:14:21
depth1
children0
last_payout2017-12-23 05:14: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_length8
author_reputation31,217,037,802
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,708,632
net_rshares0
@behamot ·
Thank you Block One I've been waiting for this news
properties (22)
authorbehamot
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t182652991z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:26:54
last_update2017-12-04 18:26:54
depth1
children0
last_payout2017-12-11 18:26: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_length51
author_reputation86,301,808,625
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,569
net_rshares0
@berkaytekinsen ·
The future of blockchain system.
Hope it will be successful
properties (22)
authorberkaytekinsen
permlinkre-eosio-2017124t2235451z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-12-04 19:03:57
last_update2017-12-04 19:03:57
depth1
children0
last_payout2017-12-11 19:03: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_length59
author_reputation1,405,731,977,033
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,390,777
net_rshares0
@bhikkhu ·
Thanks for the post. I am eager to learn more about EOS, hoping for some tutorials. 
I have some thoughts to Data Management:
When Datastorage creates costs, then Data has to be managed in some way. Not needed Data has to be removed. How is this fitting with the immutability "feature" of the blockchain?
I am wondering how unneeded/unnessesary data is defined and who gets to decide which data can be removed. Would make sense to me to give the decision to delete data to the persons that "own" them but in the end the App Developer has to decide about the storage if he is the one staking EOS to pay for Bandwidth/Storage for his app. Can permissions to data operations be handled individually in the EOS Storage?
properties (22)
authorbhikkhu
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t173153420z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 17:31:54
last_update2017-12-05 17:31:54
depth1
children0
last_payout2017-12-12 17:31: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_length715
author_reputation1,983,997,039,133
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,483,888
net_rshares0
@bitgeek ·
comment
Congratulations @eosio, this post is the  most rewarded post (based on pending payouts) in the last 12 hours written by a User account holder (accounts that hold between 0.1 and 1.0 Mega Vests). The total number of posts by User account holders during this period was 2921 and the total pending payments to posts in this category was $2813.30. To see the full list of highest paid posts across all accounts categories, [click here](www.steemit.com/steemit/@bitgeek/payout-stats-report-for-4th-december-2017--part-i). 

If you do not wish to receive these messages in future, please reply stop to this comment.
properties (22)
authorbitgeek
permlinkre-eos-io-dawn-2-0-released-and-development-update-20171204t194229
categoryeos
json_metadata""
created2017-12-04 19:42:30
last_update2017-12-04 19:42:30
depth1
children0
last_payout2017-12-11 19:42: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_length610
author_reputation13,049,044,453,787
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,393,963
net_rshares0
@bleujay · (edited)
$0.70
Thank you for posting @eosio.

Are Steemians looking forward to this development....indeed they are.

Appreciate the updates.

Thank you to all those working around the clock.

Wishing you all the best.  Cheers.

NB;  The greek word......'iaspas'...pronouned E..OS..pas means diamond....a translucent....transparent precious stone.
👍  , , , ,
properties (23)
authorbleujay
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t162206200z
categoryeos
json_metadata{"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"}
created2017-12-04 18:19:12
last_update2017-12-05 01:45:39
depth1
children0
last_payout2017-12-11 18:19:12
cashout_time1969-12-31 23:59:59
total_payout_value0.532 HBD
curator_payout_value0.163 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length331
author_reputation207,129,165,910,573
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,386,888
net_rshares188,613,684,769
author_curate_reward""
vote details (5)
@blockchained ·
You can find Russian version of this post [HERE](https://steemit.com/eos/@blockchained/reliz-eos-io-dawn-2-0-otchyot-o-razrabotke) 

---

Русская версия [тут](https://steemit.com/eos/@blockchained/reliz-eos-io-dawn-2-0-otchyot-o-razrabotke)
properties (22)
authorblockchained
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171209t162127916z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@blockchained/reliz-eos-io-dawn-2-0-otchyot-o-razrabotke"],"app":"steemit/0.1"}
created2017-12-09 16:21:30
last_update2017-12-09 16:21:30
depth1
children0
last_payout2017-12-16 16:21: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_length240
author_reputation71,574,916,426,158
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,901,767
net_rshares0
@bs1155 ·
$0.30
EOS ! Ethereum on Steroids !! you go guys !!
👍  , , , , , ,
properties (23)
authorbs1155
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t181515555z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:15:03
last_update2017-12-04 18:15:03
depth1
children0
last_payout2017-12-11 18:15:03
cashout_time1969-12-31 23:59:59
total_payout_value0.290 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation8,567,671,510
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,386,536
net_rshares82,586,918,171
author_curate_reward""
vote details (7)
@burrels ·
people are saying this is better than ether why is there such a big difference on the price?
properties (22)
authorburrels
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t190745557z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:07:45
last_update2017-12-04 19:07:45
depth1
children1
last_payout2017-12-11 19:07: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_length92
author_reputation805,363,634,003
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,391,108
net_rshares0
@dennis-estenson ·
Ethereum's blockchain has been public for 2 & 1/2 years and while it's still under development, it has a lot of momentum. The EOS Ethereum-based token has not yet been around a year, and as a blockchain & a platform, it doesn't really exist yet (for the public, except for development testing).
👍  
properties (23)
authordennis-estenson
permlinkre-burrels-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t042553225z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 04:25:51
last_update2017-12-05 04:25:51
depth2
children0
last_payout2017-12-12 04: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_length294
author_reputation6,952,244,850
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,425,952
net_rshares1,160,538,635
author_curate_reward""
vote details (1)
@chaka321 ·
>Under EOS the producers will vote on the production rotation order in a way that minimizes average latency and minimizes total missed blocks due to Internet network congestion.

This doesn't seem right to remove random block producer selection. If block producers collude and vote each other in. They may well get voted out by the honest nodes eventually but by then the damage is already done and the fraudulent transactions are now deep in the blockchain.
👍  
properties (23)
authorchaka321
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t200748227z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 20:07:48
last_update2017-12-04 20:07:48
depth1
children1
last_payout2017-12-11 20:07: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_length458
author_reputation34,519,613,062
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,395,850
net_rshares3,160,354,850
author_curate_reward""
vote details (1)
@anarchyhasnogods ·
$0.88
the thing with proof of stake is that they need a large amount of the crypto to do that. When people find out that happened the price will crash, so they will lose everything they put in to do that.

Although there are still reasons to do that
👍  ,
properties (23)
authoranarchyhasnogods
permlinkre-chaka321-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t144642667z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 14:46:42
last_update2017-12-05 14:46:42
depth2
children0
last_payout2017-12-12 14:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.662 HBD
curator_payout_value0.220 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length243
author_reputation61,353,529,646,265
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,468,878
net_rshares242,235,416,411
author_curate_reward""
vote details (2)
@chowdog ·
$0.35
Still funny seeing people calling eos a scam xD Probably the most promising project in crypto atm and using multiple threads/horizontal and parallel scalaing in my opinion is an amazing solution to the scalability problem. Clean solutions to blockchains biggest problem look like the usual to Daniel Larimer and this team.
👍  , , , , , ,
properties (23)
authorchowdog
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t211957882z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 21:19:57
last_update2017-12-04 21:19:57
depth1
children1
last_payout2017-12-11 21:19:57
cashout_time1969-12-31 23:59:59
total_payout_value0.274 HBD
curator_payout_value0.074 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length322
author_reputation63,784,133,153
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,400,743
net_rshares95,487,777,482
author_curate_reward""
vote details (7)
@anarcho ·
I hear ya... It's beyond ridiculous. I see people fudding it all the time on flakebook.
properties (22)
authoranarcho
permlinkre-chowdog-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171213t011009411z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-13 01:10:12
last_update2017-12-13 01:10:12
depth2
children0
last_payout2017-12-20 01:10: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_length87
author_reputation34,969,131,174
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,305,350
net_rshares0
@codydeeds ·
Not sure if anyone has played cryptokitties but I cant help but imagine how much better it would run on EOS. Ethereum can not deliver a good user experience as it.
👍  
properties (23)
authorcodydeeds
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t185652517z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:56:51
last_update2017-12-04 18:56:51
depth1
children1
last_payout2017-12-11 18:56: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_length163
author_reputation38,090,771,215,071
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,390,137
net_rshares2,908,891,005
author_curate_reward""
vote details (1)
@tinh ·
Was thinking the same thing, I like to see something like that run on EOS platform just to compare apple with apple. No doubt EOS would proof to all the doubters wrong.
properties (22)
authortinh
permlinkre-codydeeds-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t073139304z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 07:31:42
last_update2017-12-05 07:31:42
depth2
children0
last_payout2017-12-12 07:31: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_length168
author_reputation5,011,510,351
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,437,033
net_rshares0
@cryptocloutlord ·
I have heard numerous people (friends, family and strangers) discuss EOS replacing Ethereum. I personally think there is room for both - and I do hope that both can succeed.

It is going to be an exciting year for EOS, so many goodies coming out in 2018 :)

Good luck everyone!
properties (22)
authorcryptocloutlord
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180129t220827421z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-29 22:08:27
last_update2018-01-29 22:08:27
depth1
children0
last_payout2018-02-05 22:08: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_length277
author_reputation3,439,454,055
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,389,398
net_rshares0
@cryptomagic ·
Interesting post! Thanks for sharing!
properties (22)
authorcryptomagic
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t182338256z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:23:39
last_update2017-12-04 18:23:39
depth1
children0
last_payout2017-12-11 18:23: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_length37
author_reputation220,777,441,845
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,289
net_rshares0
@davidqw ·
Nice job
properties (22)
authordavidqw
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t184231539z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:42:30
last_update2017-12-04 18:42:30
depth1
children0
last_payout2017-12-11 18:42: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_length8
author_reputation3,818,984,619
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,388,885
net_rshares0
@debart ·
I have always believed in EOS, made good money with the trading as well. But I just love the platform ;)
properties (22)
authordebart
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180213t183900582z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-02-13 18:39:00
last_update2018-02-13 18:39:00
depth1
children0
last_payout2018-02-20 18:39: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_length104
author_reputation2,221,096,395,269
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,276,840
net_rshares0
@deepquestions ·
Everyone say hello to their EOS supplies for me :)
properties (22)
authordeepquestions
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t184359762z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:44:03
last_update2017-12-04 18:44:03
depth1
children0
last_payout2017-12-11 18: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_length50
author_reputation22,926,002,462
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,389,008
net_rshares0
@dianwan ·
EOS 3.0版本什么时候发布?
properties (22)
authordianwan
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180102t035153057z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-02 03:51:54
last_update2018-01-02 03:51:54
depth1
children0
last_payout2018-01-09 03: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_length16
author_reputation9,057,993,690
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,481,886
net_rshares0
@dimas-alfaruq ·
$0.03
YES YES YES @eosio, keep up the good work!!!!!
👍  ,
properties (23)
authordimas-alfaruq
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t184020846z
categoryeos
json_metadata{"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"}
created2017-12-04 18:40:21
last_update2017-12-04 18:40:21
depth1
children0
last_payout2017-12-11 18:40:21
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation1,143,655,582,657
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,388,693
net_rshares8,551,506,831
author_curate_reward""
vote details (2)
@droucil ·
$0.63
For the less technically inclined (like myself),  anyone willing to make a small tutorial enabling us to test our EOS keys?
👍  , , , , , , ,
properties (23)
authordroucil
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t203156612z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 20:31:57
last_update2017-12-04 20:31:57
depth1
children0
last_payout2017-12-11 20:31:57
cashout_time1969-12-31 23:59:59
total_payout_value0.622 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation14,002,540,951,182
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,397,501
net_rshares172,585,408,700
author_curate_reward""
vote details (8)
@egory0k ·
Thanks for sharing!
properties (22)
authoregory0k
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t190107849z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 19:01:15
last_update2017-12-05 19:01:15
depth1
children0
last_payout2017-12-12 19:01: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_length19
author_reputation9,383,879
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,491,725
net_rshares0
@einx ·
i like
properties (22)
authoreinx
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171225t123558584z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-25 12:36:00
last_update2017-12-25 12:36:00
depth1
children0
last_payout2018-01-01 12:36: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_length6
author_reputation19,143,808
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,162,723
net_rshares0
@eliasleo ·
Dear dan 
This comment has nothing to do with this article, I just wanted to let you know that you are absolutely awesome.
properties (22)
authoreliasleo
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180107t045131088z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-07 04:51:30
last_update2018-01-07 04:51:30
depth1
children0
last_payout2018-01-14 04:51: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_length122
author_reputation150,651,817,445
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,682,115
net_rshares0
@entity401 ·
$0.14
#Manymillionswillbemade
👍  , ,
properties (23)
authorentity401
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t003110027z
categoryeos
json_metadata{"tags":["eos","manymillionswillbemade"],"app":"steemit/0.1"}
created2017-12-05 00:31:12
last_update2017-12-05 00:31:12
depth1
children0
last_payout2017-12-12 00:31:12
cashout_time1969-12-31 23:59:59
total_payout_value0.138 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation747,506,671,271
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,412,516
net_rshares38,146,774,233
author_curate_reward""
vote details (3)
@facelessman ·
Reading this blows my mind.
properties (22)
authorfacelessman
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180119t024351810z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-19 02:43:51
last_update2018-01-19 02:43:51
depth1
children0
last_payout2018-01-26 02:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation269,007,596
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,527,865
net_rshares0
@faisal79 ·
interessant!....
![57954.jpg](https://steemitimages.com/DQmXxE4Hq5C18a7ztDqazSkm7Sytyx48yfwfdh4aKBM8G3z/57954.jpg)
👍  
properties (23)
authorfaisal79
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171210t150534502z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmXxE4Hq5C18a7ztDqazSkm7Sytyx48yfwfdh4aKBM8G3z/57954.jpg"],"app":"steemit/0.1"}
created2017-12-10 15:06:00
last_update2017-12-10 15:06:00
depth1
children0
last_payout2017-12-17 15:06: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_length114
author_reputation1,364,151,823,900
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,003,950
net_rshares0
author_curate_reward""
vote details (1)
@fasterv12 · (edited)
Thank You every one at Block one working on EOS. On a lighter note Ether continues to heard Cats.
properties (22)
authorfasterv12
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t184454584z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 18:44:57
last_update2017-12-05 18:45:33
depth1
children0
last_payout2017-12-12 18:44: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_length97
author_reputation1,180,256,382
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,490,261
net_rshares0
@finetuner ·
Just read it ... sounds great! Sometimes the real tech under the hood needs to be understood fully in order to fathom the true value of the project. I am putting in more ETH into this.
properties (22)
authorfinetuner
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180112t071253061z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-12 07:11:18
last_update2018-01-12 07:11:18
depth1
children0
last_payout2018-01-19 07:11: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_length184
author_reputation4,193,641,362
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,939,588
net_rshares0
@freedomengineer ·
$2.24
Is this r/bitcoin ?!?!
👍  ,
properties (23)
authorfreedomengineer
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t200543079z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 20:05:45
last_update2017-12-04 20:05:45
depth1
children0
last_payout2017-12-11 20:05:45
cashout_time1969-12-31 23:59:59
total_payout_value1.680 HBD
curator_payout_value0.559 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation5,979,020,815,385
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,395,711
net_rshares608,855,386,077
author_curate_reward""
vote details (2)
@fuzztone ·
$3.22
properties (23)
authorfuzztone
permlinkre-eosio-2017124t2152596z
categoryeos
json_metadata{"tags":["eos"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2017-12-04 20:05:03
last_update2017-12-04 20:05:03
depth1
children6
last_payout2017-12-11 20:05:03
cashout_time1969-12-31 23:59:59
total_payout_value2.452 HBD
curator_payout_value0.764 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation1,447,151,544,090
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,395,643
net_rshares908,319,003,433
author_curate_reward""
vote details (21)
@billbutler ·
$1.31
I'd like to hear the answer to this as well. A downvote from you @ned on this topic feels like investment advice (i.e. sell all my STEEM and buy another 10k of EOS).
👍  , , , ,
properties (23)
authorbillbutler
permlinkre-fuzztone-re-eosio-2017124t2152596z-20171205t054604197z
categoryeos
json_metadata{"tags":["eos"],"users":["ned"],"app":"steemit/0.1"}
created2017-12-05 05:46:03
last_update2017-12-05 05:46:03
depth2
children4
last_payout2017-12-12 05:46:03
cashout_time1969-12-31 23:59:59
total_payout_value0.986 HBD
curator_payout_value0.321 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation31,319,794,402,837
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,430,687
net_rshares356,507,019,116
author_curate_reward""
vote details (5)
@fuzztone ·
$2.38
@ned your silence is deafening. Are you purposefully not coming back on this to fuel speculation?
👍  , ,
properties (23)
authorfuzztone
permlinkre-billbutler-re-fuzztone-re-eosio-2017124t2152596z-20171205t114653344z
categoryeos
json_metadata{"tags":["eos"],"users":["ned"],"app":"steemit/0.1"}
created2017-12-05 11:46:54
last_update2017-12-05 11:46:54
depth3
children1
last_payout2017-12-12 11:46:54
cashout_time1969-12-31 23:59:59
total_payout_value1.790 HBD
curator_payout_value0.592 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation1,447,151,544,090
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,454,126
net_rshares649,156,533,476
author_curate_reward""
vote details (3)
@murda-ra ·
@ned is obviously not aware that half of the Steem infrastructure can just fuck off from Steem just because of this childish and completely non-professional move he made publicly.
👍  
properties (23)
authormurda-ra
permlinkre-billbutler-re-fuzztone-re-eosio-2017124t2152596z-20171205t084517032z
categoryeos
json_metadata{"tags":["eos"],"users":["ned"],"app":"steemit/0.1"}
created2017-12-05 08:45:18
last_update2017-12-05 08:45:18
depth3
children0
last_payout2017-12-12 08:45: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_length179
author_reputation4,018,673,713,105
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,441,695
net_rshares587,166,300
author_curate_reward""
vote details (1)
@nutela ·
I read this info in my mail this morning, I wonder why I don't get that from Steem Inc.?
properties (22)
authornutela
permlinkre-billbutler-re-fuzztone-re-eosio-2017124t2152596z-20171205t123713411z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 12:37:12
last_update2017-12-05 12:37:12
depth3
children0
last_payout2017-12-12 12:37: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_length88
author_reputation12,740,113,194,550
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,457,673
net_rshares0
@britcoins ·
$0.07
it amounts to attempting censorship for your own gain @ned. appaling.
👍  ,
properties (23)
authorbritcoins
permlinkre-fuzztone-re-eosio-2017124t2152596z-20171210t142647747z
categoryeos
json_metadata{"tags":["eos"],"users":["ned"],"app":"steemit/0.1"}
created2017-12-10 14:26:48
last_update2017-12-10 14:26:48
depth2
children0
last_payout2017-12-17 14:26:48
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation3,090,086,590,721
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id22,999,706
net_rshares16,731,795,189
author_curate_reward""
vote details (2)
@gmikeyg ·
It is exciting to see the developments in EOS. I'm disappointed that it appears EOS will NOT be HIGHLY decentralized. "In order to reduce the frequency of producer set changes we have changed block scheduling to only include the top 21 producers."

I am still excited about where this is going, but for me it is not what was promised.
properties (22)
authorgmikeyg
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t215855493z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 21:59:00
last_update2017-12-04 21:59:00
depth1
children3
last_payout2017-12-11 21: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_length334
author_reputation392,080,439,837
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,403,451
net_rshares0
@luigi-tecnologo ·
$0.09
I think it's the tradeoff of the DPOS speed
👍  ,
properties (23)
authorluigi-tecnologo
permlinkre-gmikeyg-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t225838411z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 22:58:39
last_update2017-12-04 22:58:39
depth2
children0
last_payout2017-12-11 22:58:39
cashout_time1969-12-31 23:59:59
total_payout_value0.069 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation70,852,638,968,460
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,407,199
net_rshares24,934,604,172
author_curate_reward""
vote details (2)
@simoncase ·
the proof will be in the pudding but in the real world, compromises must be made for the benefit of the whole.  That's the difference between Dan and Block.One and other "projects". This one will be implemented and implemented well. This is because they understand the only way forward is through compromise.
👍  
properties (23)
authorsimoncase
permlinkre-gmikeyg-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t145520696z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 23:38:51
last_update2017-12-04 23:38:51
depth2
children1
last_payout2017-12-11 23:38: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_length308
author_reputation93,682,296,200
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,409,420
net_rshares509,498,800
author_curate_reward""
vote details (1)
@gmikeyg ·
They certainly are results-oriented. I don't mean to be negative about such an exciting project. Just wanted to note what I see as a weakness.
properties (22)
authorgmikeyg
permlinkre-simoncase-re-gmikeyg-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171206t161439583z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-06 16:14:42
last_update2017-12-06 16:14:42
depth3
children0
last_payout2017-12-13 16:14: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_length142
author_reputation392,080,439,837
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,579,832
net_rshares0
@grizgal ·
$0.12
Excellent news. This project goes from strength to strength!
👍  
properties (23)
authorgrizgal
permlinkre-eosio-2017124t215815693z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-12-04 21:58:15
last_update2017-12-04 21:58:15
depth1
children0
last_payout2017-12-11 21:58:15
cashout_time1969-12-31 23:59:59
total_payout_value0.092 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation2,658,909,943,160
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,403,397
net_rshares35,506,379,175
author_curate_reward""
vote details (1)
@grutt123 ·
EOS and Steem both amazing, Go Dan, your brillant
properties (22)
authorgrutt123
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180119t224652032z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-19 22:46:54
last_update2018-01-19 22:46:54
depth1
children0
last_payout2018-01-26 22: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_length49
author_reputation36,751,885
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,726,896
net_rshares0
@hms818 · (edited)
$0.09
Great updates.... EOS is rocking  in terms of marketcap, wish all these proposed features will be live soon.
👍  
properties (23)
authorhms818
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t183122619z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:31:24
last_update2017-12-04 18:31:39
depth1
children0
last_payout2017-12-11 18:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.086 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation11,503,740,391,093
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,960
net_rshares23,694,657,417
author_curate_reward""
vote details (1)
@hongxin ·
This is awesome, really nice job! We will follow this work and maybe develop our future DAPP based on EOS system.
👍  
properties (23)
authorhongxin
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171210t070401186z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-10 07:04:00
last_update2017-12-10 07:04:00
depth1
children0
last_payout2017-12-17 07: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_length113
author_reputation36,266,702
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,965,389
net_rshares0
author_curate_reward""
vote details (1)
@hwankyun ·
I'm waiting for it.!!
properties (22)
authorhwankyun
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180103t003605882z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-03 00:36:03
last_update2018-01-03 00:36:03
depth1
children0
last_payout2018-01-10 00:36: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_length21
author_reputation2,510,266,988
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,662,504
net_rshares0
@ikegass33 ·
$0.29
The next generation of blockchain and Everyone's Open Society if  you care to be a part of it. Very exciting times.
👍  ,
properties (23)
authorikegass33
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t181645571z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:16:45
last_update2017-12-04 18:16:45
depth1
children0
last_payout2017-12-11 18:16:45
cashout_time1969-12-31 23:59:59
total_payout_value0.283 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation70,550,201,894
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,386,668
net_rshares78,651,517,814
author_curate_reward""
vote details (2)
@inertia ·
$7.34
> About 20% of ERC-20 tokens have been properly registered to an EOS public key. Our snapshot tool also implements a fallback tool for all unregistered ERC-20 tokens held by an Ethereum account for which we can recover a public key from signed ethereum transactions.

What does *properly registered* mean?
👍  , , , , , , , , , ,
properties (23)
authorinertia
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t194342895z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 19:43:42
last_update2017-12-05 19:43:42
depth1
children5
last_payout2017-12-12 19:43:42
cashout_time1969-12-31 23:59:59
total_payout_value6.792 HBD
curator_payout_value0.548 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length305
author_reputation346,568,901,399,561
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,495,368
net_rshares2,026,298,062,328
author_curate_reward""
vote details (11)
@jacobts ·
![download.png](https://steemitimages.com/DQmY8to2r1hYS1Wz4TDseY8jJJa2jCBuLPP9igi27rFDwDT/download.png)
👍  ,
properties (23)
authorjacobts
permlinkre-inertia-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171219t065702332z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmY8to2r1hYS1Wz4TDseY8jJJa2jCBuLPP9igi27rFDwDT/download.png"],"app":"steemit/0.1"}
created2017-12-19 06:57:03
last_update2017-12-19 06:57:03
depth2
children3
last_payout2017-12-26 06:57: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_length103
author_reputation32,926,868,037,691
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,142,098
net_rshares0
author_curate_reward""
vote details (2)
@admiralsp ·
Whoa this seem totally cool. Great job
properties (22)
authoradmiralsp
permlinkre-jacobts-re-inertia-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171224t003019011z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-24 00:30:24
last_update2017-12-24 00:30:24
depth3
children1
last_payout2017-12-31 00:30: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_reputation8,279,235,092,307
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,937,281
net_rshares0
@kyzitemelos93 ·
Ever hear of a vpn? It's because of the laws they did this not us...
👍  
properties (23)
authorkyzitemelos93
permlinkre-jacobts-re-inertia-re-eosio-eos-io-dawn-2-0-released-and-development-update-20180102t092831946z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-02 09:28:30
last_update2018-01-02 09:28:30
depth3
children0
last_payout2018-01-09 09: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_length68
author_reputation114,306,620
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,523,804
net_rshares0
author_curate_reward""
vote details (1)
@jarlaxle ·
Prior to this post it was my understanding that eos tokens needed to be registered before the blockchain is launched mid next year.

You can find information on how to register tokens on the eos.io website.

Just tagging on an extra question. Can the snapshot tool be used after the deadline to register tokens?
👍  , ,
properties (23)
authorjarlaxle
permlinkre-inertia-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t231101565z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 23:11:03
last_update2017-12-05 23:11:03
depth2
children0
last_payout2017-12-12 23:11: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_length311
author_reputation156,172,477
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,510,179
net_rshares0
author_curate_reward""
vote details (3)
@j4y ·
Thank you for making the test net a priority!
properties (22)
authorj4y
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t220604640z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 22:06:03
last_update2017-12-04 22:06:03
depth1
children0
last_payout2017-12-11 22:06:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation184,465,720,544
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,403,947
net_rshares0
@jayharrod ·
Thanks for the update.
properties (22)
authorjayharrod
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180110t004000058z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-10 00:39:57
last_update2018-01-10 00:39:57
depth1
children0
last_payout2018-01-17 00:39: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_length22
author_reputation5,557,318,697
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,371,515
net_rshares0
@jedebas ·
When is the token sale going to end and why is the token sale so lengthy ??
👍  
properties (23)
authorjedebas
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171214t031410584z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-14 03:13:57
last_update2017-12-14 03:13:57
depth1
children0
last_payout2017-12-21 03: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_length75
author_reputation99,725,359
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id23,443,035
net_rshares615,320,000
author_curate_reward""
vote details (1)
@jga ·
This is amazing.
But I need to understand more about communication between chains... what is this?
properties (22)
authorjga
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t183350613z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:33:30
last_update2017-12-04 18:33:30
depth1
children1
last_payout2017-12-11 18:33: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_length98
author_reputation76,172,796,162,312
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,388,125
net_rshares0
@jga ·
after I asked this Dan published this post about interblockchain communication.
https://steemit.com/eos/@dan/inter-blockchain-communication-via-merkle-proofs-with-eos-io
properties (22)
authorjga
permlinkre-jga-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t010055662z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@dan/inter-blockchain-communication-via-merkle-proofs-with-eos-io"],"app":"steemit/0.1"}
created2017-12-05 01:00:57
last_update2017-12-05 01:00:57
depth2
children0
last_payout2017-12-12 01:00: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_length169
author_reputation76,172,796,162,312
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,414,225
net_rshares0
@jga ·
$15.68
properties (23)
authorjga
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t205203780z
categoryeos
json_metadata{"tags":["eos"],"users":["ned"],"app":"steemit/0.1"}
created2017-12-04 20:51:51
last_update2017-12-04 20:51:51
depth1
children6
last_payout2017-12-11 20:51:51
cashout_time1969-12-31 23:59:59
total_payout_value11.768 HBD
curator_payout_value3.907 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation76,172,796,162,312
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,398,832
net_rshares4,259,488,496,222
author_curate_reward""
vote details (43)
@anarcho ·
I'd love to hear the lame explanation he has as well. I don't expect him to say a word about it. There's already a ton of people on here calling him out for his childish behavior.
properties (22)
authoranarcho
permlinkre-jga-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171213t011158170z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-13 01:12:03
last_update2017-12-13 01:12:03
depth2
children0
last_payout2017-12-20 01: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_length179
author_reputation34,969,131,174
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,305,474
net_rshares0
@happysb ·
What kind of power you mean?
properties (22)
authorhappysb
permlinkre-jga-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171224t071957985z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-24 07:20:00
last_update2017-12-24 07:20:00
depth2
children2
last_payout2017-12-31 07:20: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_length28
author_reputation217,881,542
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,975,990
net_rshares0
@jga ·
steem power
👍  ,
properties (23)
authorjga
permlinkre-happysb-re-jga-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171224t131040325z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-24 13:10:30
last_update2017-12-24 13:10:30
depth3
children1
last_payout2017-12-31 13:10: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_length11
author_reputation76,172,796,162,312
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,015,959
net_rshares0
author_curate_reward""
vote details (2)
@n3r0 · (edited)
$2.41
Seconded. @ned please provide an explanation. Otherwise, this casts a poor light onto yourself.
👍  , , , , , , , , , , , , ,
properties (23)
authorn3r0
permlinkre-jga-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t132107253z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1","users":["ned"]}
created2017-12-05 13:21:09
last_update2017-12-05 13:28:12
depth2
children1
last_payout2017-12-12 13:21:09
cashout_time1969-12-31 23:59:59
total_payout_value1.900 HBD
curator_payout_value0.508 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation537,681,475,333
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,461,303
net_rshares656,953,362,316
author_curate_reward""
vote details (14)
@ashe-oro ·
$2.17
Seems bitter.
👍  , , , ,
properties (23)
authorashe-oro
permlinkre-n3r0-re-jga-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171206t193005973z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-06 19:30:06
last_update2017-12-06 19:30:06
depth3
children0
last_payout2017-12-13 19:30:06
cashout_time1969-12-31 23:59:59
total_payout_value1.625 HBD
curator_payout_value0.540 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation24,151,212,829,722
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,594,848
net_rshares596,169,556,722
author_curate_reward""
vote details (5)
@johnsmith ·
$0.30
Congratulations to Dan, Brendan and the B1 team! You guys delivered more than expected and ahead of schedule.

There is so much to be excited about, however, my takeaway is the secure smartphone wallet. Being able to easily and securely store and transact on a smartphone is rocket fuel for global mass adoption - and it sounds like EOS has it nailed.
👍  , , , , , , , ,
properties (23)
authorjohnsmith
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t192951400z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:29:45
last_update2017-12-04 19:29:45
depth1
children0
last_payout2017-12-11 19:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.229 HBD
curator_payout_value0.069 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length351
author_reputation22,729,726,767,685
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,392,912
net_rshares81,465,389,038
author_curate_reward""
vote details (9)
@jorgerubio ·
Where is the Press Conference?
properties (22)
authorjorgerubio
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t001648275z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 00:16:48
last_update2017-12-05 00:16:48
depth1
children0
last_payout2017-12-12 00:16: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_length30
author_reputation0
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,411,705
net_rshares0
@josephpdaniel ·
Will the people who have eos coins bought through their exodus wallet or eos wallet downloaded on google playstore have any trouble versus people who buy eos coins directly off eos.io???? Tell me
properties (22)
authorjosephpdaniel
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171213t055752381z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-13 05:57:51
last_update2017-12-13 05:57:51
depth1
children0
last_payout2017-12-20 05:57: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_length195
author_reputation14,335,467,889
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,326,999
net_rshares0
@joshuaatiemo ·
AM so excited to here this news. Cant wait for ethereum to be taken off the ethereum block chain. Great work. Cheers.
👍  
👎  
properties (23)
authorjoshuaatiemo
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t190931954z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:09:33
last_update2017-12-04 19:09:33
depth1
children0
last_payout2017-12-11 19:09: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_length117
author_reputation4,189,940,271,139
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,391,269
net_rshares1,273,199,989
author_curate_reward""
vote details (2)
@joshuaseymour ·
@dan is there a group/community that you recommend joining for non-EOS staff who are creating projects that will be based on the EOS platform?
properties (22)
authorjoshuaseymour
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180107t024837659z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-07 02:48:36
last_update2018-01-07 02:48:36
depth1
children0
last_payout2018-01-14 02:48: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_length142
author_reputation1,844,113,508
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,664,896
net_rshares0
@keks ·
$0.04
Thanks for letting us know!
👍  
properties (23)
authorkeks
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t184229494z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:45:36
last_update2017-12-04 18:45:36
depth1
children0
last_payout2017-12-11 18:45:36
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation3,120,009,340,054
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,389,127
net_rshares11,263,753,241
author_curate_reward""
vote details (1)
@kingmotan ·
$2.38
I read all this in a hearth beat and I can't wait for the real deal to be implemented. What's 6 months!? 

https://www.youtube.com/watch?v=rPAZzKuSF_Y
👍  , , , , , , , , , , , , , ,
properties (23)
authorkingmotan
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t090049126z
categoryeos
json_metadata{"tags":["eos"],"image":["https://img.youtube.com/vi/rPAZzKuSF_Y/0.jpg"],"links":["https://www.youtube.com/watch?v=rPAZzKuSF_Y"],"app":"steemit/0.1"}
created2017-12-05 09:00:51
last_update2017-12-05 09:00:51
depth1
children0
last_payout2017-12-12 09:00:51
cashout_time1969-12-31 23:59:59
total_payout_value1.846 HBD
curator_payout_value0.535 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation980,125,095,712
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,442,735
net_rshares648,525,126,313
author_curate_reward""
vote details (15)
@labeilleneigeux ·
I always thought that this information absolutely is not for everybody. But the thing is:  where I live people more likely believe in chupakabra than that bitcoin is real
properties (22)
authorlabeilleneigeux
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171224t163908478z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-24 16:39:06
last_update2017-12-24 16:39:06
depth1
children0
last_payout2017-12-31 16:39: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_length170
author_reputation83,980,378,824
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,044,701
net_rshares0
@lopan ·
To the.. u know.
properties (22)
authorlopan
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t185442535z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:54:42
last_update2017-12-04 18:54:42
depth1
children0
last_payout2017-12-11 18:54: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_length16
author_reputation0
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,389,928
net_rshares0
@loupio ·
What is the good buying price for the EOS token right now? I am thinking somewhere around $2.5US. What do you think?
properties (22)
authorloupio
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171206t203703180z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-06 20:37:06
last_update2017-12-06 20:37:06
depth1
children1
last_payout2017-12-13 20:37: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_length116
author_reputation11,234,103,101
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,599,637
net_rshares0
@bonnguyen · (edited)
You can purchase EOS via official website https://eos.io/. If luckily you will get EOS at price $2.5. Like lucky draw game and Good luck.
properties (22)
authorbonnguyen
permlinkre-loupio-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171207t090117803z
categoryeos
json_metadata{"tags":["eos"],"links":["https://eos.io/"],"app":"steemit/0.1"}
created2017-12-07 09:01:15
last_update2017-12-07 09:05:27
depth2
children0
last_payout2017-12-14 09:01: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_length137
author_reputation3,367,461,840
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,647,051
net_rshares0
@lover33 ·
WoW EoS. This can go 100x. Everyone is waiting to see what will happen this summer. Anyone participate in the ICO?
properties (22)
authorlover33
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180202t030926964z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-02-02 03:09:27
last_update2018-02-02 03:09:27
depth1
children0
last_payout2018-02-09 03: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_length114
author_reputation37,396,275,880
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,288,719
net_rshares0
@luigi-tecnologo ·
Wow, EOS coming..
properties (22)
authorluigi-tecnologo
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t225702710z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 22:57:03
last_update2017-12-04 22:57:03
depth1
children0
last_payout2017-12-11 22:57: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_length17
author_reputation70,852,638,968,460
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,407,111
net_rshares0
@luisneira ·
$0.32
Very interesting
👍  , , ,
properties (23)
authorluisneira
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t181540667z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:15:42
last_update2017-12-04 18:15:42
depth1
children0
last_payout2017-12-11 18:15:42
cashout_time1969-12-31 23:59:59
total_payout_value0.316 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation1,669,851,356,537
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,386,584
net_rshares85,735,480,456
author_curate_reward""
vote details (4)
@lukestokes ·
$0.60
properties (23)
authorlukestokes
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t181425165z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:14:24
last_update2017-12-04 18:14:24
depth1
children0
last_payout2017-12-11 18:14:24
cashout_time1969-12-31 23:59:59
total_payout_value0.550 HBD
curator_payout_value0.047 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation554,601,966,217,919
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,386,486
net_rshares162,221,526,423
author_curate_reward""
vote details (9)
@mahajian ·
$0.03
where can i access EOS.IO wallet?
good job guys. My retirement depends on it.
👍  
properties (23)
authormahajian
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t182610916z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:26:09
last_update2017-12-04 18:26:09
depth1
children2
last_payout2017-12-11 18:26:09
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation303,102,034
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,512
net_rshares8,440,800,471
author_curate_reward""
vote details (1)
@e-pioneer ·
exodus wallet supports eos
👍  
properties (23)
authore-pioneer
permlinkre-mahajian-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t191958544z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:20:00
last_update2017-12-04 19:20:00
depth2
children0
last_payout2017-12-11 19:20: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_length26
author_reputation3,316,013,225
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,392,108
net_rshares545,213,888
author_curate_reward""
vote details (1)
@nutela ·
Wow, I'll tell my parents ;)
properties (22)
authornutela
permlinkre-mahajian-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t182610916z-2017125t132957459z
categoryeos
json_metadata{"app":"eostalk/0.3","format":"markdown+html","tags":[]}
created2017-12-05 12:29:57
last_update2017-12-05 12:29:57
depth2
children0
last_payout2017-12-12 12:29: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_length28
author_reputation12,740,113,194,550
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries
0.
accountchainbb
weight200
1.
accounteostalk
weight1,300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,457,095
net_rshares0
@markush ·
$0.65
Excuse moi,  Maybe this is of topic but  I bought my EOS shares at my BTS account do I have to registrate them somewhere?
👍  ,
properties (23)
authormarkush
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t192443599z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:24:45
last_update2017-12-04 19:24:45
depth1
children2
last_payout2017-12-11 19:24:45
cashout_time1969-12-31 23:59:59
total_payout_value0.491 HBD
curator_payout_value0.163 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation13,440,209,801,477
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,392,516
net_rshares178,022,231,151
author_curate_reward""
vote details (2)
@ironmonkeeeee ·
Yes. You need to send them to an Etherium Wallet. Then Register the address with eos.io
👍  
properties (23)
authorironmonkeeeee
permlinkre-markush-re-eosio-eos-io-dawn-2-0-released-and-development-update-20180115t171002351z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-15 17:10:03
last_update2018-01-15 17:10:03
depth2
children1
last_payout2018-01-22 17:10: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_length87
author_reputation25,715,448,138
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,748,751
net_rshares2,534,391,677
author_curate_reward""
vote details (1)
@markush ·
Thanks for your comment..

![](https://steemitimages.com/DQmUUQ4GJSRbW5pVwkDaLZJ36hDJ3AWAs61Wn3idztRWk6r/afbeelding.png)

only thing i can sign up for is mail-news...
properties (22)
authormarkush
permlinkre-ironmonkeeeee-re-markush-re-eosio-eos-io-dawn-2-0-released-and-development-update-20180115t172712508z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmUUQ4GJSRbW5pVwkDaLZJ36hDJ3AWAs61Wn3idztRWk6r/afbeelding.png"],"app":"steemit/0.1"}
created2018-01-15 17:27:15
last_update2018-01-15 17:27:15
depth3
children0
last_payout2018-01-22 17:27: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_length166
author_reputation13,440,209,801,477
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,752,044
net_rshares0
@matthewalt ·
Very interesting
👍  
properties (23)
authormatthewalt
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t183822228z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:38:21
last_update2017-12-04 18:38:21
depth1
children0
last_payout2017-12-11 18:38: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_reputation17,499,064
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,388,523
net_rshares1,119,940,116
author_curate_reward""
vote details (1)
@mjhomb ·
Great announcement! Such bad form to downvote it. Eos will have to go elsewhere for their official announcements and Steemit only loses out from that
👍  
properties (23)
authormjhomb
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t195735979z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:57:36
last_update2017-12-04 19:57:36
depth1
children0
last_payout2017-12-11 19:57: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_length149
author_reputation4,769,040,655,489
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,395,059
net_rshares540,565,800
author_curate_reward""
vote details (1)
@mmikhail ·
yeekh, I wanted to buy some more EOS with price like $0.5 per EOS :-(
Now it's almost $4.
properties (22)
authormmikhail
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t223159766z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 22:32:00
last_update2017-12-04 22:32:00
depth1
children1
last_payout2017-12-11 22: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_length89
author_reputation8,718,729,530
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,405,616
net_rshares0
@bonnguyen · (edited)
You can purchase EOS via official website https://eos.io/. If luckily you will get EOS at price $0.5. Like lucky draw game and Good luck.
properties (22)
authorbonnguyen
permlinkre-mmikhail-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171207t090145143z
categoryeos
json_metadata{"tags":["eos"],"links":["https://eos.io/"],"app":"steemit/0.1"}
created2017-12-07 09:01:45
last_update2017-12-07 09:05:45
depth2
children0
last_payout2017-12-14 09: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_length137
author_reputation3,367,461,840
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,647,082
net_rshares0
@muad-dib ·
$0.10
Amazing. Thanks for all the hard work!

One question: as it relates to changes to block production, the paper addressed the possible risk of having a pre-selected order of block producers for each round. The paper doesn't, however, address and potential risks of having each producers deliver 12 blocks in a row. Anyone have thoughts on that aspect?

Cheers to the dev team and the whole EOS community!
👍  , ,
properties (23)
authormuad-dib
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t183352631z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:33:54
last_update2017-12-04 18:33:54
depth1
children1
last_payout2017-12-11 18:33:54
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length402
author_reputation671,021,274
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,388,155
net_rshares26,677,012,908
author_curate_reward""
vote details (3)
@dan ·
$0.18
Under Steem each producer is responsible for a 3 second window of time... under the proposed changes EOS.IO would have each producer responsible for a 6 second window of time during which 12 blocks would be produced.  As those 12 blocks are produced the other 20 producers also sign them and make them irreversible (after 2-3 blocks, 1-1.5sec).  

So as described above, the biggest issue is a producer going down (not producing) in which case there would be 6 seconds (12 missed blocks).  This is the same with Steem, a single producer going down creates a 6 second gap with no confirmed transactions.
👍  , , , , ,
properties (23)
authordan
permlinkre-muad-dib-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t204650566z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 20:46:51
last_update2017-12-04 20:46:51
depth2
children0
last_payout2017-12-11 20:46:51
cashout_time1969-12-31 23:59:59
total_payout_value0.136 HBD
curator_payout_value0.040 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length602
author_reputation155,470,101,136,708
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,398,517
net_rshares48,520,085,959
author_curate_reward""
vote details (6)
@n3r0 · (edited)
$0.06
This just keeps getting better everyday.
👍  , ,
properties (23)
authorn3r0
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t183430183z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:34:30
last_update2017-12-04 18:35:42
depth1
children0
last_payout2017-12-11 18:34:30
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation537,681,475,333
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,388,206
net_rshares16,443,507,137
author_curate_reward""
vote details (3)
@newm ·
Thanks a lot for a good information.
👍  
properties (23)
authornewm
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180128t015732992z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-28 01:57:36
last_update2018-01-28 01:57:36
depth1
children0
last_payout2018-02-04 01:57: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_length36
author_reputation9,601,048
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,882,766
net_rshares614,467,111
author_curate_reward""
vote details (1)
@noisy ·
$0.65
To people which do not know what EOS is, @tokenika recently had very nice talk about that: [[VIDEO] EOS at Warsaw Block on November 30th + survey results](https://steemit.com/eos/@tokenika/eos-at-warsaw-block-on-november-30th-the-survey-results-and-the-video)
<center>
[![Selection_736.png](https://steemitimages.com/DQmW9UXcrho1px8si5PvaUgXvyEddWM5AVzJWupPvSwcca5/Selection_736.png)](https://steemit.com/eos/@tokenika/eos-at-warsaw-block-on-november-30th-the-survey-results-and-the-video)
</center>
👍  , , , , , , , , , ,
properties (23)
authornoisy
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t182108389z
categoryeos
json_metadata{"tags":["eos"],"users":["tokenika"],"image":["https://steemitimages.com/DQmW9UXcrho1px8si5PvaUgXvyEddWM5AVzJWupPvSwcca5/Selection_736.png"],"links":["https://steemit.com/eos/@tokenika/eos-at-warsaw-block-on-november-30th-the-survey-results-and-the-video"],"app":"steemit/0.1"}
created2017-12-04 18:21:09
last_update2017-12-04 18:21:09
depth1
children1
last_payout2017-12-11 18:21:09
cashout_time1969-12-31 23:59:59
total_payout_value0.569 HBD
curator_payout_value0.079 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length499
author_reputation59,974,373,499,600
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,075
net_rshares176,142,695,813
author_curate_reward""
vote details (11)
@bleujay ·
$0.69
Thank you @noisy.
👍  , ,
properties (23)
authorbleujay
permlinkre-noisy-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t162544300z
categoryeos
json_metadata{"tags":["eos"],"users":["noisy"],"app":"steemit/0.1"}
created2017-12-04 18:22:51
last_update2017-12-04 18:22:51
depth2
children0
last_payout2017-12-11 18:22:51
cashout_time1969-12-31 23:59:59
total_payout_value0.530 HBD
curator_payout_value0.161 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation207,129,165,910,573
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,231
net_rshares187,666,603,040
author_curate_reward""
vote details (3)
@pinek ·
Pretty exciting.
properties (22)
authorpinek
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20180203t063528397z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-02-03 06:34:39
last_update2018-02-03 06:34:39
depth1
children0
last_payout2018-02-10 06:34: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_length16
author_reputation0
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,575,503
net_rshares0
@plumey ·
$0.07
Holy Shit! As an early EOS small investor, this sounds Great!
(and there's not one fucking bit of that entire article that I understood).

But, I'm a believer and time will prove my resolve!!
👍  ,
properties (23)
authorplumey
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t142308957z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 14:23:12
last_update2017-12-05 14:23:12
depth1
children1
last_payout2017-12-12 14:23:12
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation3,831,671,740,295
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,466,788
net_rshares19,579,753,580
author_curate_reward""
vote details (2)
@feed-me-more ·
Haha Ditto mate!!
👍  
properties (23)
authorfeed-me-more
permlinkre-plumey-re-eosio-eos-io-dawn-2-0-released-and-development-update-20180104t210422868z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-01-04 21:02:30
last_update2018-01-04 21:02:30
depth2
children0
last_payout2018-01-11 21:02: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_length17
author_reputation38,185,865,202
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,117,449
net_rshares0
author_curate_reward""
vote details (1)
@prakashghai ·
$0.05
Congrats !!

Well done EOS

Hope the next announcement is cutting-short the ICO time ;)

1 Year is Gigantic
👍  , ,
properties (23)
authorprakashghai
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t182823831z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:28:24
last_update2017-12-04 18:28:24
depth1
children1
last_payout2017-12-11 18:28:24
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation20,465,565,974,840
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,703
net_rshares14,225,245,002
author_curate_reward""
vote details (3)
@deepquestions ·
Yet also innovative, that is what makes EOS different roght. And we all wat to be different to stand out.
properties (22)
authordeepquestions
permlinkre-prakashghai-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t184327812z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:43:33
last_update2017-12-04 18:43:33
depth2
children0
last_payout2017-12-11 18:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation22,926,002,462
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,388,971
net_rshares0
@qasle ·
eos.noon!! Great work!
properties (22)
authorqasle
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t184817825z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:48:18
last_update2017-12-04 18:48:18
depth1
children0
last_payout2017-12-11 18:48:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation0
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,389,376
net_rshares0
@riohunter ·
The great opportunity of our needy community to get out of this position that our corrupt government has put us through years of slavery. Thank you so much for the beautiful work.
properties (22)
authorriohunter
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171216t082113438z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-16 08:21:12
last_update2017-12-16 08:21:12
depth1
children0
last_payout2017-12-23 08:21: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_length179
author_reputation3,596,560,316
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,723,894
net_rshares0
@rival ·
$0.16
amazing, as a non coder, what is the most killing feature you read here for 2.0 or will be ready for 3.0?
👍  
properties (23)
authorrival
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t185525915z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:55:27
last_update2017-12-04 18:55:27
depth1
children0
last_payout2017-12-11 18:55:27
cashout_time1969-12-31 23:59:59
total_payout_value0.122 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation56,474,966,976,297
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,389,996
net_rshares44,255,284,453
author_curate_reward""
vote details (1)
@roy2016 ·
$2.58
Thanks for these news.
👍  , ,
properties (23)
authorroy2016
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t195128909z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:51:30
last_update2017-12-04 19:51:30
depth1
children1
last_payout2017-12-11 19:51:30
cashout_time1969-12-31 23:59:59
total_payout_value1.938 HBD
curator_payout_value0.643 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation4,016,575,521,423
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,394,605
net_rshares700,197,941,316
author_curate_reward""
vote details (3)
@freedoms ·
And thanks to the EOS team for delivering :)
👍  ,
properties (23)
authorfreedoms
permlinkre-roy2016-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171206t075041400z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-06 07:50:42
last_update2017-12-06 07:50:42
depth2
children0
last_payout2017-12-13 07:50: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_length44
author_reputation25,461,225,849
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,541,445
net_rshares1,160,526,905
author_curate_reward""
vote details (2)
@sbrys ·
$0.18
Congrats !
👍  
properties (23)
authorsbrys
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t181655900z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:16:57
last_update2017-12-04 18:16:57
depth1
children0
last_payout2017-12-11 18:16:57
cashout_time1969-12-31 23:59:59
total_payout_value0.138 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,027,509,194,747
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,386,679
net_rshares50,618,141,495
author_curate_reward""
vote details (1)
@seveaux ·
how come the the guy who is ceo flags the creator of steemit ?
properties (22)
authorseveaux
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171224t004822623z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-24 00:48:21
last_update2017-12-24 00:48:21
depth1
children0
last_payout2017-12-31 00:48: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_length62
author_reputation8,844,643,038,229
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,938,883
net_rshares0
@sircork · (edited)
$0.08
Congratulations on the Dawn of a new era!
👍  , , ,
properties (23)
authorsircork
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t182459795z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:26:27
last_update2017-12-04 23:00:33
depth1
children0
last_payout2017-12-11 18:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation40,884,085,696,666
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,530
net_rshares22,128,531,977
author_curate_reward""
vote details (4)
@soltree ·
EOS!! To the Moon!
properties (22)
authorsoltree
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t182119484z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:21:18
last_update2017-12-04 18:21:18
depth1
children0
last_payout2017-12-11 18:21: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_length18
author_reputation0
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,092
net_rshares0
@steemdiffuser ·
<p>This post has received a 100.00 % upvote from @steemdiffuser thanks to: @jbbasics. Steem on my friend!</p>

<p><a href="https://steemit.com/introduceyourself/@steemdiffuser/chello-steemit-friends-here-to-upvote-blaze-a-trail-and-crack-some-bot-like-jokes">Get Upvotes</a>, <a href="https://docs.google.com/forms/d/e/1FAIpQLSdv7s0V6f6iMC7lFsEkHUlJ4pErmSQzQXit-0FGaAx7FT-Pcg/viewform">Join Our Trail</a>, or <a href="https://goo.gl/forms/fdmsKYYUpFMY4OUw1">Delegate Some SP</a></p>
properties (22)
authorsteemdiffuser
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t061941246z
categoryeos
json_metadata{"tags":["eos"],"app":"drotto/0.0.2d"}
created2017-12-05 06:19:48
last_update2017-12-05 06:19:48
depth1
children0
last_payout2017-12-12 06:19: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_length483
author_reputation42,883,860,240
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,432,593
net_rshares0
@thedigitalnomad ·
Thank you for whoever downvoted this post. I love EOS and this was a great article but the person who downvoted it was making a statement about how broken STEEMIT is! Steemit is controlled by the whales and needs to implement a fair system.
👍  
properties (23)
authorthedigitalnomad
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171207t081822578z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-07 08:18:30
last_update2017-12-07 08:18:30
depth1
children0
last_payout2017-12-14 08:18: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_length240
author_reputation23,406,415,985
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,644,157
net_rshares621,340,000
author_curate_reward""
vote details (1)
@thucungcuatoi ·
Good job! I was buy EOS token yesterday! I still don't understand about EOS and way to buy EOS Distribution.
properties (22)
authorthucungcuatoi
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t025615528z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 02:56:15
last_update2017-12-05 02:56:15
depth1
children0
last_payout2017-12-12 02:56: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_length108
author_reputation0
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,420,784
net_rshares0
@unlockrs ·
$3.23
>Removing Runner Up Producers
Inter-blockchain communication requires light clients to keep track of all blocks where the set of active producers changes. The “runner up producer list” causes a new producer to be added or removed every minute which forces light clients to process at least one block header per minute, if not more. In order to reduce the frequency of producer set changes we have changed block scheduling to only include the top 21 producers. We are considering offering some kind of stand-by pay for the runner ups, but they will not actually be tasked with producing blocks.

I would like to hear more about this. One of the benefits of rotating the 21st BP is to provide incentive for other BPs to continue to support the blockchain. If we remove this, we could see a scenario where only 21 BPs exist in total. I would prefer there to be 100 BPs waiting in queue for the chance to get the 21st block. Very interested to hear about the  stand-by pay and what the community will want. As it stands today I would be _**pro**_ stand-by pay.
👍  , , , , , , , , , , , ,
properties (23)
authorunlockrs
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t191636744z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:16:36
last_update2017-12-04 19:16:36
depth1
children8
last_payout2017-12-11 19:16:36
cashout_time1969-12-31 23:59:59
total_payout_value2.581 HBD
curator_payout_value0.645 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,056
author_reputation1,962,142,323,826
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,391,840
net_rshares875,275,550,066
author_curate_reward""
vote details (13)
@chaka321 ·
That's what I didn't  understand with the old system. Who would have a high powered system on standby ready to be a block producer and earn nothing whilst not being nominated. Now, are you thinking of having a higher inflation rate of EOS tokens, or pay the 21 producers less, to cover the cost of the runner ups?
👍  
properties (23)
authorchaka321
permlinkre-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t195812932z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:58:15
last_update2017-12-04 19:58:15
depth2
children2
last_payout2017-12-11 19:58: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_length313
author_reputation34,519,613,062
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,395,113
net_rshares3,213,920,187
author_curate_reward""
vote details (1)
@dan ·
Producers were always planned to have less than 5% total, most of that 5% was intended for community benefit contracts.
properties (22)
authordan
permlinkre-chaka321-re-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t203444868z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 20:34:45
last_update2017-12-04 20:34:45
depth3
children1
last_payout2017-12-11 20: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_length119
author_reputation155,470,101,136,708
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,397,691
net_rshares0
@dan ·
$1.14
standby pay could even require them to sign every block, just not getting to produce blocks.
👍  , , ,
properties (23)
authordan
permlinkre-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t192534923z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:25:36
last_update2017-12-04 19:25:36
depth2
children1
last_payout2017-12-11 19:25:36
cashout_time1969-12-31 23:59:59
total_payout_value0.954 HBD
curator_payout_value0.183 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation155,470,101,136,708
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,392,592
net_rshares308,924,896,689
author_curate_reward""
vote details (4)
@unlockrs ·
$1.76
I like this idea. Seems workable and would incentivize multiple BPs to continue to sign blocks and be a part of the network.
👍  
properties (23)
authorunlockrs
permlinkre-dan-re-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t192825703z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 19:28:24
last_update2017-12-04 19:28:24
depth3
children0
last_payout2017-12-11 19:28:24
cashout_time1969-12-31 23:59:59
total_payout_value1.324 HBD
curator_payout_value0.440 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation1,962,142,323,826
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,392,811
net_rshares479,061,548,476
author_curate_reward""
vote details (1)
@tolkatore ·
$0.07
So in other-words... it's far superior to Ethereum even in its Alpha phase?
👍  , ,
properties (23)
authortolkatore
permlinkre-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t221602663z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 22:16:06
last_update2017-12-04 22:16:06
depth2
children2
last_payout2017-12-11 22:16:06
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation2,607,791,002,003
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,404,589
net_rshares19,504,262,873
author_curate_reward""
vote details (3)
@pawnuts ·
properties (23)
authorpawnuts
permlinkre-tolkatore-re-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t222335463z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 22:23:33
last_update2017-12-04 22:23:33
depth3
children1
last_payout2017-12-11 22:23: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_length7
author_reputation1,127,595,501,526
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,405,097
net_rshares3,118,678,796
author_curate_reward""
vote details (3)
@unlockrs ·
$1.73
Why is it saying that this post was hidden "due to low ratings"? I'm seeing 100+ upvotes as of 3pm ET in the USA. Is this post being censored by Steemit?
👍  
properties (23)
authorunlockrs
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t200051226z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 20:00:51
last_update2017-12-04 20:00:51
depth1
children5
last_payout2017-12-11 20:00:51
cashout_time1969-12-31 23:59:59
total_payout_value1.298 HBD
curator_payout_value0.432 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation1,962,142,323,826
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,395,344
net_rshares470,455,652,395
author_curate_reward""
vote details (1)
@evoman1 ·
yea weird
properties (22)
authorevoman1
permlinkre-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t201144206z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 20:11:42
last_update2017-12-04 20:11:42
depth2
children0
last_payout2017-12-11 20:11: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_length9
author_reputation11,762,792,810,770
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,396,145
net_rshares0
@pawnuts ·
$0.32
@ned has beef with dan and was being a child
👍  , , , ,
properties (23)
authorpawnuts
permlinkre-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t222738304z
categoryeos
json_metadata{"tags":["eos"],"users":["ned"],"app":"steemit/0.1"}
created2017-12-04 22:27:36
last_update2017-12-04 22:27:36
depth2
children1
last_payout2017-12-11 22:27:36
cashout_time1969-12-31 23:59:59
total_payout_value0.239 HBD
curator_payout_value0.076 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation1,127,595,501,526
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,405,362
net_rshares86,285,242,721
author_curate_reward""
vote details (5)
@unlockrs ·
$2.25
Very childish. No reason to downvote something to try to hide it. Just makes it obvious who's an adult and who's not.
👍  ,
properties (23)
authorunlockrs
permlinkre-pawnuts-re-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t151655623z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 15:16:54
last_update2017-12-05 15:16:54
depth3
children0
last_payout2017-12-12 15:16:54
cashout_time1969-12-31 23:59:59
total_payout_value1.693 HBD
curator_payout_value0.560 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation1,962,142,323,826
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,471,555
net_rshares617,890,252,268
author_curate_reward""
vote details (2)
@robertbilling ·
If a creator can censor a  decentralized platform what was the point of it in the first place?
properties (22)
authorrobertbilling
permlinkre-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171211t214738842z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-11 21:47:36
last_update2017-12-11 21:47:36
depth2
children1
last_payout2017-12-18 21:47: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_length94
author_reputation131,070,647
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,162,369
net_rshares0
@teknologio ·
On blockchain level, there is no censorship. It's only there at app level.
Also, Steemit is only one app on Steem among many others.
👍  
properties (23)
authorteknologio
permlinkre-robertbilling-re-unlockrs-re-eosio-eos-io-dawn-2-0-released-and-development-update-20171216t083249138z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-16 08:32:51
last_update2017-12-16 08:32:51
depth3
children0
last_payout2017-12-23 08:32:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation0
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,724,790
net_rshares0
author_curate_reward""
vote details (1)
@walkingkeys ·
This is awesome. So is the price of my EOS. Keep up the great work.
properties (22)
authorwalkingkeys
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171206t075511919z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-06 07:55:12
last_update2017-12-06 07:55:12
depth1
children0
last_payout2017-12-13 07:55: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_length67
author_reputation31,110,648,385,759
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,541,709
net_rshares0
@weizier ·
Go to moon!!!!!!!
properties (22)
authorweizier
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t181900541z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:19:00
last_update2017-12-04 18:19:00
depth1
children0
last_payout2017-12-11 18:19: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_length17
author_reputation0
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,386,871
net_rshares0
@wekkel ·
EOS is going to be freaking awesome. HODL for dear life for a market cap at least equal to Ethereum.
properties (22)
authorwekkel
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t182356473z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 18:23:57
last_update2017-12-04 18:23:57
depth1
children0
last_payout2017-12-11 18:23: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_length100
author_reputation793,854,297,842
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,387,319
net_rshares0
@woz.software ·
EOS is the most interesting blockchain so far for me, could be the one to actually take the technology into the next stage.

Too many projects lack the most vital piece of the puzzle, scalability. Steemit proved that could be solved for me and this is really the next stage on, a true blockchain OS.

Bitcoin gets all the press because of the price rises but that bubble can't go on too much longer. All the BS in fighting over how to make it scale will bring down that house of cards.

Can't wait to see what EOS makes possible when it really goes live :)
👍  
properties (23)
authorwoz.software
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171204t202608166z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-04 20:26:09
last_update2017-12-04 20:26:09
depth1
children0
last_payout2017-12-11 20:26: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_length556
author_reputation2,321,910,395,519
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,397,134
net_rshares0
author_curate_reward""
vote details (1)
@wwzsocki ·
EOS will be in top 5 next year. After that only ETH left to beaten up.
👍  
properties (23)
authorwwzsocki
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171220t102304961z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-20 10:24:54
last_update2017-12-20 10:24:54
depth1
children0
last_payout2017-12-27 10:24: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_length70
author_reputation15,198,900,925
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,329,083
net_rshares0
author_curate_reward""
vote details (1)
@xfreemanx ·
i like it, now a question. for what i understood they will not host any blockchain, they will just develop the technology and those interested third parties wil set the blockchain and their dapps? there will be no eos blockchain like eth for instance but different ones by different parties and they may called the way they want, like forks. is this right???
properties (22)
authorxfreemanx
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171211t121819122z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-11 12:18:45
last_update2017-12-11 12:18:45
depth1
children0
last_payout2017-12-18 12:18: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_length358
author_reputation13,725,461,332
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,106,554
net_rshares0
@yingpingzhang · (edited)
$0.05
congratulations! my team  are studying  EOS.IO for a long time , now we  can  test my blockchain project demo on  EOS.IO  dawn 2.0.
👍  ,
properties (23)
authoryingpingzhang
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171205t072910319z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-05 07:29:12
last_update2017-12-05 07:30:21
depth1
children0
last_payout2017-12-12 07:29:12
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation1,348,872,191,969
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,436,878
net_rshares13,365,771,233
author_curate_reward""
vote details (2)
@zacknight ·
Thanks for these news.
properties (22)
authorzacknight
permlinkre-eosio-eos-io-dawn-2-0-released-and-development-update-20171218t183033043z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-18 18:26:09
last_update2017-12-18 18:26:09
depth1
children0
last_payout2017-12-25 18:26: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_length22
author_reputation-689,546,549,483
root_title"EOS.IO DAWN 2.0 Released & Development Update"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,062,943
net_rshares0