create account

The Dawn of EOS.IO by eosio

View this thread on: hive.blogpeakd.comecency.com
· @eosio ·
The Dawn of EOS.IO
![](https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png)

In the [EOS.IO Technical White Paper](https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md), we proposed the EOS.IO software as the dawn of a new era of blockchain computing. The EOS.IO development team has spent the summer working very hard. Summer is over and the development of the EOS.IO software is ahead of schedule.  It can now be used with distributed network configurations. We have a lot of exciting EOS.IO software developments to report so be sure to read to the end!

# Proof of Performance
Now that the EOS.IO software can be used in distributed network configurations we can benchmark its performance. Our internal testing shows that the software is currently able to sustain over 10,000 single threaded transactions per second on a multi-node network. This puts it on track to support over 1 million transactions per second on machines with over 100 CPU cores.

## Advancements in Design
Developers will be excited to learn that our latest architectural software improvements make it easier than ever to build parallel applications that communicate with each other. 

### Shared Database Access
We have now enabled one application to read the database state of another application without requiring complex asynchronous communication. We achieve this while preserving the ability to execute in parallel by allowing each transaction to declare the scope (data range) that it needs to read or write access to.  Block producers will schedule transactions so that there are no data conflicts. 

### User Local Storage of Application Data
In addition to supporting read access across accounts, applications can now store data on other accounts. This means a currency contract can store the balance on individual user accounts rather than within its own scope. A transfer from Alice to Bob only requires read/write access to the scope of Alice and Bob and won’t affect the currency contract’s scope. This makes many classes of applications trivially parallel and enables processing of currency transfers in excess of the single threaded throughput limit. As far as we are aware, no other blockchain design supports such a scalable and easy approach to developing parallel software architecture.

### Inline Message Passing
It is now easier than ever to send a message to another application and know with certainty that it will be accepted and validated. An application can generate any number of additional messages to append to the end of the current transaction. So long as these generated messages share the same read/write scope and can execute within the allotted time, they are guaranteed to be delivered or the entire transaction will unwind.

This approach is different than the synchronous approach used by other platforms. Synchronous message delivery, which blocks execution of the current thread until it returns, creates the potential for unanticipated reentrancy. Reentrancy has been a source of numerous bugs and exploits because it is difficult for developers to ensure their contract is in a consistent state prior to making a synchronous call. With inline message passing, which delays execution until the end of the current transaction handler, developers can dispatch a message and proceed as if it succeeded. If it fails then the entire transaction will be unwound without any harmful side effects. This means your message handlers are never called in an inconsistent state.

### Deferred Message Passing
Sometimes you don’t know if a message is valid or whether there is enough time left on the clock to execute inline with the current transaction. Other times you need to send a message that accesses data outside the scope of the current transaction.  In this situation applications can request the block producers schedule a message to be delivered in the next cycle or a future block. If it is valid then your application may be notified; if it is not, then it will never be scheduled and your application can clean up after a timeout.

### Unlimited Horizontal Scaling
The latest design advancements in the EOS.IO software gives developers high single-machine performance; businesses can scale to a million transactions per second before requiring a more complex asynchronous architecture.

That said, the EOS.IO software will still support asynchronous message passing among groups of applications that do not need to share state. There are many benefits to async message passing (such as trivial cluster support), but those benefits come with the cost of greater development complexity; the EOS.IO software supports this for businesses that require several millions of transactions per second, but offers a streamlined approach for those that don’t.

# Next Generation Network Topology
**The EOS.IO software is designed to empower block producers to provide a high performance decentralized infrastructure as a service.** Application developers need more than a set of block producers aggregating transactions, they need API nodes, seed nodes, database indexes, storage, and hosting.

High performance blockchains demand high performance network architectures with very different requirements from existing blockchains. At a million transactions per second each node is required to achieve 100’s of megabytes per second per connection. This is trivial for large data centers, but inconceivable for home users.

Additionally high performance blockchains consist of heterogeneous nodes running different subsets of the blockchain and will likely prune the transaction history. This is a significant departure from prior blockchain systems where all nodes are identical and have a full history.  

A ***traditional blockchain*** consists of a dynamic set of ***randomly connected nodes*** in a mesh network. They target home users with limited bandwidth and are designed to traverse home routers (NAT) and dynamically add nodes to the network. Our observation is that this architecture is not well suited for high performance blockchain infrastructure.

The ***EOS.IO software*** starts with the assumption that ***all nodes are intentionally connected to each other***. Node operators work together to ensure the network topology is secure, well planned, and efficient. This allows block producers to establish direct (and secure) connections to each other and prevents attackers from scanning the entire network topology looking for nodes to shut down.  

The block producers will host public endpoints which anyone may connect to and subscribe to any subset of transaction data they desire.  This will minimize the bandwidth requirements for full nodes operated by non-block producers.  Nodes that do not want to trust a single block producer may either subscribe to multiple sources or wait for confirmation by ⅔ of the block producers (about 45 seconds). 

The benefit of this architecture is that new nodes can connect and synchronize at very high speeds from high bandwidth infrastructure provided by the block producers. Furthermore, this architecture is designed to facilitate efficient unidirectional streaming rather than less efficient bidirectional protocols. 

**At scale, block producers will be operating a new internet backbone powered by EOS.IO software.** Block producers will be like Tier-1 Internet providers with dedicated fiber optic connections across continents. These producers will operate data centers that Tier-2 subscribers can connect to.  Tier-2 includes anyone looking to run a full or partial node or a large application.  For example, services like block explorers, web wallets,  and crypto-currency exchanges would be Tier-2 subscribers to the block producers. 

We feel this architecture of intentional cooperative network building will enable block producers to offer a quality of service unique in the cryptocurrency industry.  

# The Road Ahead
In September of this year, block.one will be releasing EOS.IO Dawn 1.0 which should be stable enough and well documented enough for anyone to launch their own test network upon which they can build and deploy their applications.  EOS.IO Dawn 1.0 will be the first pre-release of our EOS.IO SDK (Software Development Kit).  

Those who have followed our [EOS.IO Roadmap](https://github.com/EOSIO/Documentation/blob/master/Roadmap.md) will be happy to know that ***we are ahead of schedule***.  Phase 1, The Minimal Viable Testing Environment,  which includes a standalone node, native contracts, virtual machine API, RPC interface, command line tools (eosc), and basic developer documentation is complete. We will be making a tagged release as “EOS.IO Dawn 1.0”.  This phase was scheduled to be complete in Summer 2017 which ends on September 22.  

We have already completed half of **Phase 2, the Minimal Viable Test Network**. This phase is scheduled for completion in Fall 2017 and includes working networking code, virtual machine sandboxing, resource usage and rate limiting, genesis importing, and inter blockchain communication.  At this time we already have functional distributed networks and virtual machine sandboxing.  We are confident that we will complete Phase 2 on schedule.  

EOS.IO Dawn 2.0, the next major pre-release, will come by the end of the year. EOS.IO Dawn 2.0 will include several critical features that are not present in EOS.IO Dawn 1.0 including:

- Resource Rate Limiting (preventing spam / abuse)
- Merkle Tree Generation (for cross chain communication)
- Upgrade Management and Governance
- More robust SDK
- General Infrastructure improvements
- Example Snapshot from ERC20 tokens

The goal of EOS.IO Dawn 2.0 is to be functional enough that one could launch a live blockchain. 

# One More Thing…. 

# EOS.IO Storage! 
For the first time, developers will be able to create and deploy a decentralized application and web interfaces without having to worry about bandwidth and storage costs, or even hosting any servers themselves; this enables a host of new innovative decentralized business models, such as a decentralized YouTube, Soundcloud, or other storage-intensive projects.

In addition to computational bandwidth, **native EOS.IO software-based blockchain token holders will now have access to free cloud storage**, hosting, and download bandwidth via IPFS / HTTPS; this access can be used without consuming or transferring tokens.

To achieve this, block producers will host files via IPFS/HTTPS for users and allow other users to download those files. Storage resources are paid for through blockchain emissions and are rate limited to token holders pro-rata to their holdings; like the EOS.IO bandwidth model, storage does not expend EOS.IO software-based blockchain tokens and per-token storage capacity will increase over time with block producer hardware upgrades.

The EOS.IO software storage solution can also support public hosting for those who don’t have any tokens; more details will be released at upcoming blockchain industry events occurring in Shanghai and London.

# Disclaimer
<i>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.</i>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 729 others
👎  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authoreosio
permlinkthe-dawn-of-eos-io
categoryeos
json_metadata{"tags":["eos","blockchain","eosstorage","blockone"],"image":["https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png"],"links":["https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md","https://github.com/EOSIO/Documentation/blob/master/Roadmap.md"],"app":"steemit/0.1","format":"markdown"}
created2017-09-03 04:38:57
last_update2017-09-03 04:38:57
depth0
children294
last_payout2017-09-10 04:38: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_length13,235
author_reputation27,974,755,807,058
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id13,709,293
net_rshares219,336,757,204,999
author_curate_reward""
vote details (849)
@abitghimire ·
Guess can bring change. Thanks
properties (22)
authorabitghimire
permlinkre-eosio-the-dawn-of-eos-io-20170905t100507873z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 17:04:24
last_update2017-09-05 17:04:24
depth1
children0
last_payout2017-09-12 17:04: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_length30
author_reputation268,060,715
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,966,696
net_rshares0
@acab1312news · (edited)
$0.06
Absolutely wonderful🏴
"rest peacefully and wake up and rage"
Stxs 
JOURNALIST
@acab1312news
👍  
properties (23)
authoracab1312news
permlinkre-eosio-the-dawn-of-eos-io-20170903t052052173z
categoryeos
json_metadata{"tags":["eos"],"users":["acab1312news"],"app":"steemit/0.1"}
created2017-09-03 05:20:54
last_update2017-09-03 05:35:36
depth1
children0
last_payout2017-09-10 05:20:54
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation4,891,948,847,901
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,711,583
net_rshares16,746,440,509
author_curate_reward""
vote details (1)
@ahsansaeed ·
Nice Post! *Upvoted and Resteemed*
properties (22)
authorahsansaeed
permlinkre-eosio-the-dawn-of-eos-io-20170905t153401657z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 15:33:48
last_update2017-09-05 15:33:48
depth1
children0
last_payout2017-09-12 15:33: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_length34
author_reputation1,201,935,056,486
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,958,471
net_rshares0
@ahuruglica ·
$1.11
If EOS succed, its going to be hugeeee.
👍  , ,
properties (23)
authorahuruglica
permlinkre-eosio-the-dawn-of-eos-io-20170903t231437463z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 23:14:39
last_update2017-09-03 23:14:39
depth1
children0
last_payout2017-09-10 23:14:39
cashout_time1969-12-31 23:59:59
total_payout_value0.838 HBD
curator_payout_value0.275 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation14,261,615,182,387
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,789,890
net_rshares309,216,415,535
author_curate_reward""
vote details (3)
@ajaykumark ·
This post was very informative thanks for sharing.
upvoted and followed.

Regards @ajaykumark !!
properties (22)
authorajaykumark
permlinkre-eosio-the-dawn-of-eos-io-20170903t051015811z
categoryeos
json_metadata{"tags":["eos"],"users":["ajaykumark"],"app":"steemit/0.1"}
created2017-09-03 05:10:15
last_update2017-09-03 05:10:15
depth1
children0
last_payout2017-09-10 05:10: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_length96
author_reputation29,670,820,126
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,710,958
net_rshares0
@amaliatul ·
amazing project @eosio. Crypto Life!
properties (22)
authoramaliatul
permlinkre-eosio-the-dawn-of-eos-io-20170903t130453480z
categoryeos
json_metadata{"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"}
created2017-09-03 13:04:48
last_update2017-09-03 13:04:48
depth1
children0
last_payout2017-09-10 13:04: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_length36
author_reputation1,657,063,691,423
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,740,321
net_rshares0
@amvanaken ·
Wow @dan that's so awesome EOS is going to be changing the game so soon 😄 I'm so glad to hear everything is going according to plan! The plan... Of Dan 😎 Keep up the awesome work man!
👍  , , ,
properties (23)
authoramvanaken
permlinkre-eosio-the-dawn-of-eos-io-20170903t052037145z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-09-03 05:20:36
last_update2017-09-03 05:20:36
depth1
children0
last_payout2017-09-10 05:20: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_length183
author_reputation18,480,113,935,205
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,711,565
net_rshares3,786,014,512
author_curate_reward""
vote details (4)
@andreolf ·
so what do you think on EAO like is today?
properties (22)
authorandreolf
permlinkre-eosio-the-dawn-of-eos-io-20170905t203122601z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 20:31:21
last_update2017-09-05 20:31:21
depth1
children0
last_payout2017-09-12 20:31: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_length42
author_reputation1,543,487,410,268
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,982,991
net_rshares0
@andybets · (edited)
It all sounds great, but have one concern...

If EOS.IO for file storage through inflation too, that's pretty neat, but doesn't it mean that people who have external storage plans will be subsidising the storage cost of others, such as apps like Viewly, which might have huge requirements?

Maybe I'm not understanding this properly.
properties (22)
authorandybets
permlinkre-eosio-the-dawn-of-eos-io-20170903t074002685z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 07:40:03
last_update2017-09-03 07:41:39
depth1
children3
last_payout2017-09-10 07:40: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_length333
author_reputation15,189,090,569,005
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,719,607
net_rshares0
@dan ·
Not really.
properties (22)
authordan
permlinkre-andybets-re-eosio-the-dawn-of-eos-io-20170903t142442478z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 14:24:42
last_update2017-09-03 14:24:42
depth2
children2
last_payout2017-09-10 14:24: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_length11
author_reputation155,470,101,136,708
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,747,205
net_rshares0
@andybets · (edited)
Whilst I'm very pleased to have a reply from the great man himself, any reasoning would be helpful.

Is this because all token holders receive the storage tokens, and can sell or delegate them to IPFS hosts?

To be clear, the storage would likely be very useful for the app I have in mind.
properties (22)
authorandybets
permlinkre-dan-re-andybets-re-eosio-the-dawn-of-eos-io-20170903t173016650z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:30:15
last_update2017-09-03 17:30:57
depth3
children0
last_payout2017-09-10 17:30: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_length289
author_reputation15,189,090,569,005
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,763,831
net_rshares0
@andybets ·
Thanks for clarifying this in the recent [EOS Storage Whitepaper](https://steemit.com/eos/@eosio/eos-io-storage-white-paper-now-available). It makes sense to me now, and I like the model.
properties (22)
authorandybets
permlinkre-dan-re-andybets-re-eosio-the-dawn-of-eos-io-20170920t063018922z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@eosio/eos-io-storage-white-paper-now-available"],"app":"steemit/0.1"}
created2017-09-20 06:30:18
last_update2017-09-20 06:30:18
depth3
children0
last_payout2017-09-27 06:30: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_length187
author_reputation15,189,090,569,005
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,394,985
net_rshares0
@anforo ·
$0.32
There was no doubt it could be prepared for a bullish start
👍  
properties (23)
authoranforo
permlinkre-eosio-the-dawn-of-eos-io-20170903t205759583z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 20:58:00
last_update2017-09-03 20:58:00
depth1
children0
last_payout2017-09-10 20:58:00
cashout_time1969-12-31 23:59:59
total_payout_value0.319 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation2,861,241,802,070
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,780,492
net_rshares90,003,404,955
author_curate_reward""
vote details (1)
@aomame ·
$0.04
awesome
👍  
properties (23)
authoraomame
permlinkre-eosio-the-dawn-of-eos-io-20170904t214132459z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 21:41:33
last_update2017-09-04 21:41:33
depth1
children0
last_payout2017-09-11 21:41:33
cashout_time1969-12-31 23:59:59
total_payout_value0.041 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation606,677,653,311
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,887,019
net_rshares12,434,844,718
author_curate_reward""
vote details (1)
@arcange ·
Congratulations @eosio!
Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170903) in the following categories:

* Upvotes - Ranked 7 with 452 upvotes
* Comments - Ranked 3 with 182 comments
* Pending payout - Ranked 1 with $ 652,23
properties (22)
authorarcange
permlinkre-the-dawn-of-eos-io-20170903t163951000z
categoryeos
json_metadata""
created2017-09-04 14:38:30
last_update2017-09-04 14:38:30
depth1
children0
last_payout2017-09-11 14:38: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_length285
author_reputation1,148,272,911,368,966
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,851,329
net_rshares0
@arturoalex00 ·
Me

http://stream1.gifsoup.com/webroot/animatedgifs2/1403563_o.gif
properties (22)
authorarturoalex00
permlinkre-eosio-the-dawn-of-eos-io-20170904t050319607z
categoryeos
json_metadata{"tags":["eos"],"image":["http://stream1.gifsoup.com/webroot/animatedgifs2/1403563_o.gif"],"app":"steemit/0.1"}
created2017-09-04 05:04:36
last_update2017-09-04 05:04:36
depth1
children0
last_payout2017-09-11 05:04: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_length66
author_reputation824,264,602,328
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,810,907
net_rshares0
@ata27 ·
Good post fruend
properties (22)
authorata27
permlinkre-eosio-201793t13552270z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-03 06:56:36
last_update2017-09-03 06:56:36
depth1
children0
last_payout2017-09-10 06:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation2,655,276,404,578
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,716,972
net_rshares0
@azziz ·
This post was very informative thank you for sharing
you have my upvote
Keep smiling, reading, writing and voting!!!
@azziz
properties (22)
authorazziz
permlinkre-eosio-the-dawn-of-eos-io-20170903t185323418z
categoryeos
json_metadata{"tags":["eos"],"users":["azziz"],"app":"steemit/0.1"}
created2017-09-03 18:53:33
last_update2017-09-03 18:53:33
depth1
children0
last_payout2017-09-10 18:53: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_length123
author_reputation-1,736,799,682
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,770,937
net_rshares0
@azziz ·
Cette publication a reçu une augmentation de la réponse. Si vous souhaitez recevoir des relevés ascendants de minnowpond sur toutes vos publications, cliquez simplement sur SUIVANT @azziz. Veuillez envisager de voter ce commentaire car ce projet n'est pris en charge que par vos versions ascendantes.
properties (22)
authorazziz
permlinkre-eosio-the-dawn-of-eos-io-20170905t122142847z
categoryeos
json_metadata{"tags":["eos"],"users":["azziz"],"app":"steemit/0.1"}
created2017-09-05 12:21:45
last_update2017-09-05 12:21:45
depth1
children0
last_payout2017-09-12 12:21: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_length300
author_reputation-1,736,799,682
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,941,483
net_rshares0
@bappask ·
nice post
properties (22)
authorbappask
permlinkre-eosio-the-dawn-of-eos-io-20170903t135523480z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 13:55:30
last_update2017-09-03 13:55:30
depth1
children0
last_payout2017-09-10 13:55: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_length9
author_reputation38,362,788,613
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,744,664
net_rshares0
@behamot ·
I keep buying right now the price is pretty low.  I expect at least x25 returns within 2 years.
properties (22)
authorbehamot
permlinkre-eosio-the-dawn-of-eos-io-20170906t100533689z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 10:05:33
last_update2017-09-06 10:05:33
depth1
children1
last_payout2017-09-13 10:05: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_length95
author_reputation86,301,808,625
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,034,690
net_rshares0
@alfredko ·
Hi behamot, new here. Is it better to buy EOS on exchange, or ICO tokens? Now that it is cheap at $0.80.
properties (22)
authoralfredko
permlinkre-behamot-re-eosio-the-dawn-of-eos-io-20170909t101413166z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-09 10:14:12
last_update2017-09-09 10:14:12
depth2
children0
last_payout2017-09-16 10:14: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_length104
author_reputation12,172,655
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,342,997
net_rshares0
@bigbigfish ·
$0.39
that's great!i will try to translate it to cn community
👍  , , , , , , , ,
properties (23)
authorbigbigfish
permlinkre-eosio-201793t133418881z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-03 05:34:30
last_update2017-09-03 05:34:30
depth1
children0
last_payout2017-09-10 05:34:30
cashout_time1969-12-31 23:59:59
total_payout_value0.381 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation1,608,578,620,795
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,712,399
net_rshares106,508,290,176
author_curate_reward""
vote details (9)
@binodsinghdhami ·
https://steemit.com/@binodsinghdhami
upvote me plz.
properties (22)
authorbinodsinghdhami
permlinkre-eosio-the-dawn-of-eos-io-20170905t100355380z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/@binodsinghdhami"],"app":"steemit/0.1"}
created2017-09-05 10:04:18
last_update2017-09-05 10:04:18
depth1
children0
last_payout2017-09-12 10:04:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation-12,785,561,579
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,931,994
net_rshares0
@bitcoinflood ·
$0.02
SCEWEEETTTTT :D Glad I picked up EOS a while ago at some love prices things like this normally make a coin sky rocket nicely done.
👍  , ,
properties (23)
authorbitcoinflood
permlinkre-eosio-the-dawn-of-eos-io-20170903t052340575z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:23:39
last_update2017-09-03 05:23:39
depth1
children0
last_payout2017-09-10 05:23:39
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation1,645,032,522,271,404
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,711,737
net_rshares5,283,373,110
author_curate_reward""
vote details (3)
@bitcoinmeetups ·
Looking good
properties (22)
authorbitcoinmeetups
permlinkre-eosio-the-dawn-of-eos-io-20170903t052505682z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:25:15
last_update2017-09-03 05:25:15
depth1
children0
last_payout2017-09-10 05:25: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_length12
author_reputation236,882,220,234
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,711,829
net_rshares0
@blockchain-mike ·
Thanks for keeping an open communication with the community. Always great to see updates on the progress of this project.

One question: How many nodes have been implemented in a testing?

Similar performance can be eked out by current protocols in networks <64 nodes, but performance is significantly limited by a global network.

In addition, since EOS will limit host nodes to Tier-1 connectivity points (meshed network), what balance will be provided to ensure end users are not merely consumers and are in fact full participants. This seems similar to the current Internet setup with ISPs, and the consumer is always the loser.

Not intended as a negative critique, incredibly hopeful about the development being conducted. And again, the open communication bolsters confidence in the project!
👍  ,
properties (23)
authorblockchain-mike
permlinkre-eosio-the-dawn-of-eos-io-20170903t171228321z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:12:30
last_update2017-09-03 17:12:30
depth1
children1
last_payout2017-09-10 17:12: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_length798
author_reputation19,214,800
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,762,247
net_rshares1,229,747,200
author_curate_reward""
vote details (2)
@ashaman ·
Free market forces, I would imagine.

> This seems similar to the current Internet setup with ISPs, and the consumer is always the loser.

ISPs generally operate under government granted monopolies, which are a major distortion of the free market. Customers have no power to vote ISPS that misbehave out of the marketplace.
properties (22)
authorashaman
permlinkre-blockchain-mike-re-eosio-the-dawn-of-eos-io-20170911t104218846z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-11 10:42:18
last_update2017-09-11 10:42:18
depth2
children0
last_payout2017-09-18 10:42: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_length323
author_reputation3,785,245,463,720
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,542,980
net_rshares0
@bot35 ·
very nice sharing, thanks for sharing with us i am following with pleasure :)
properties (22)
authorbot35
permlinkre-eosio-the-dawn-of-eos-io-20170904t154339578z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 15:43:45
last_update2017-09-04 15:43:45
depth1
children0
last_payout2017-09-11 15:43: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_length77
author_reputation167,858,605,724
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,857,205
net_rshares0
@bsingh1 ·
Great report...but it is still not very clear to me: who pays for the storage cost? where the storage is locate? Who is making money for storage? If someone can explain in layman's term..thanks in advance...
properties (22)
authorbsingh1
permlinkre-eosio-the-dawn-of-eos-io-20170903t134521165z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 13:45:24
last_update2017-09-03 13:45:24
depth1
children3
last_payout2017-09-10 13:45: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_length207
author_reputation1,184,721,334
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,743,808
net_rshares0
@dan ·
$0.04
We will explain in future posts.
👍  ,
properties (23)
authordan
permlinkre-bsingh1-re-eosio-the-dawn-of-eos-io-20170903t143010330z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 14:30:09
last_update2017-09-03 14:30:09
depth2
children2
last_payout2017-09-10 14:30:09
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation155,470,101,136,708
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,747,679
net_rshares10,902,296,890
author_curate_reward""
vote details (2)
@bsingh1 ·
Thanks @dan
properties (22)
authorbsingh1
permlinkre-dan-re-bsingh1-re-eosio-the-dawn-of-eos-io-20170903t182314176z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-09-03 18:23:18
last_update2017-09-03 18:23:18
depth3
children0
last_payout2017-09-10 18:23: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_length11
author_reputation1,184,721,334
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,768,264
net_rshares0
@nanowins77 ·
Hello Val @ a first please excuse me for using this option that has the steemit platform to get you, I do it to tell you as summarized as possible my life story, I understand my 38 years of age that we are in life only one for this reason I think that we should know how to enjoy it in the best way, unfortunately I suffered an automobile accident that left me in a wheelchair and with many health problems, I am from Venezuela and the economic problems that the country has are very strong, I have always been a hardworking man and in my conditions I am looking for the way to be able to produce money in the best way, between the platform steemit with the intention of being able to do it and I try to find the most suitable way to be able to grow in it, I write to him to touch a little your sensitivity humanda and see if I could help in any way you want or can, I hope I did not bother you and thank you very much @ nanowins77
👎  ,
properties (23)
authornanowins77
permlinkre-dan-re-bsingh1-re-eosio-the-dawn-of-eos-io-20170903t160509198z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 16:04:48
last_update2017-09-03 16:04:48
depth3
children0
last_payout2017-09-10 16:04: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_length931
author_reputation139,924,811,172
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,756,186
net_rshares-1,325,215,760,066
author_curate_reward""
vote details (2)
@cancervero ·
wow i like
properties (22)
authorcancervero
permlinkre-eosio-the-dawn-of-eos-io-20190114t232802190z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2019-01-14 23:28:03
last_update2019-01-14 23:28:03
depth1
children0
last_payout2019-01-21 23:28: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_length10
author_reputation905,753,620
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,383,762
net_rshares0
@carlosmertens ·
Looking brilliant!! I will definitely increase my position this week :)
properties (22)
authorcarlosmertens
permlinkre-eosio-the-dawn-of-eos-io-20170903t204529369z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 20:45:30
last_update2017-09-03 20:45:30
depth1
children0
last_payout2017-09-10 20:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation938,627,222
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,779,529
net_rshares0
@champmc ·
Dan Larimer is the Elon Musk of crypto!
👍  
properties (23)
authorchampmc
permlinkre-eosio-the-dawn-of-eos-io-20170903t181012489z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 18:10:24
last_update2017-09-03 18:10:24
depth1
children0
last_payout2017-09-10 18:10: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_length39
author_reputation92,332,158
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,767,259
net_rshares1,800,303,189
author_curate_reward""
vote details (1)
@charlesx ·
Very well written, and released at the right moment with markets on full red, I am writing a piece right now about this with an analysis.
Go on EOS, you are about to be a king.
https://cdn1.vox-cdn.com/assets/4707984/kingjeong.gif
👍  ,
properties (23)
authorcharlesx
permlinkre-eosio-the-dawn-of-eos-io-20170903t080051539z
categoryeos
json_metadata{"tags":["eos"],"image":["https://cdn1.vox-cdn.com/assets/4707984/kingjeong.gif"],"app":"steemit/0.1"}
created2017-09-03 08:00:51
last_update2017-09-03 08:00:51
depth1
children0
last_payout2017-09-10 08:00: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_length230
author_reputation21,751,943,663,024
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,720,936
net_rshares3,573,662,863
author_curate_reward""
vote details (2)
@charliehao ·
the question is how we who dont know the programming  can join in?
properties (22)
authorcharliehao
permlinkre-eosio-the-dawn-of-eos-io-20170903t144933807z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 14:48:54
last_update2017-09-03 14:48:54
depth1
children0
last_payout2017-09-10 14:48: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_length66
author_reputation7,552,087,992
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,749,358
net_rshares0
@chicane42 ·
I'm pretty excited about this development. Can't wait to see it in action.
👍  
properties (23)
authorchicane42
permlinkre-eosio-the-dawn-of-eos-io-20170905t163758853z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 16:37:57
last_update2017-09-05 16:37:57
depth1
children0
last_payout2017-09-12 16:37: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_length74
author_reputation805,874,022
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,964,341
net_rshares1,143,206,198
author_curate_reward""
vote details (1)
@cloudspyder ·
Here come the boss, ETH killer, maybe BTC too.
👍  ,
properties (23)
authorcloudspyder
permlinkre-eosio-201793t14144398z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-03 06:09:36
last_update2017-09-03 06:09:36
depth1
children0
last_payout2017-09-10 06:09:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation8,281,689,777,163
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,714,313
net_rshares3,505,672,114
author_curate_reward""
vote details (2)
@coderaviverma ·
Nice post regarding EOS!!

Check out More Coin which are going to hike alot!!

https://steemit.com/cryptocurrency/@coderaviverma/3-cryptocurrencies-going-to-the-moon-walton-chain-included

Thanx!
properties (22)
authorcoderaviverma
permlinkre-eosio-the-dawn-of-eos-io-20170905t170520993z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/cryptocurrency/@coderaviverma/3-cryptocurrencies-going-to-the-moon-walton-chain-included"],"app":"steemit/0.1"}
created2017-09-05 17:05:21
last_update2017-09-05 17:05:21
depth1
children0
last_payout2017-09-12 17:05: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_length195
author_reputation63,350,476,134
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,966,784
net_rshares0
@coinjunkie556 ·
I really do believe in NEO. 

It seems like people's biggest complaints are that they are merely buying into a "promise" for a platform, rather than a working platform. But the reality is that few crypto projects have even been finished yet. Many of us have half of our portfolios invested in ICO's! So I don't think that's an issue for most of us, if we're being objective.

The other thing is that the year-long ICO makes EOS inflationary. Well, sure. The only way to counter inflation is for interest to meet or exceed the level of inflation. But once the total supply is reached and the project is fully realized, EOS will skyrocket. 

Every investment is risky, but high risk means high reward. I think this is the real deal. What are your guys' thoughts?
👍  
properties (23)
authorcoinjunkie556
permlinkre-eosio-the-dawn-of-eos-io-20170903t170403765z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:04:06
last_update2017-09-03 17:04:06
depth1
children3
last_payout2017-09-10 17:04: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_length760
author_reputation1,024,294,516
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,761,496
net_rshares934,297,172
author_curate_reward""
vote details (1)
@ghaaspur ·
In the first sentence, did you really intend to write NEO?
👍  
properties (23)
authorghaaspur
permlinkre-coinjunkie556-re-eosio-the-dawn-of-eos-io-20170903t180946584z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 18:09:48
last_update2017-09-03 18:09:48
depth2
children1
last_payout2017-09-10 18:09: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_length58
author_reputation278,893,346,456
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,767,213
net_rshares957,509,524
author_curate_reward""
vote details (1)
@coinjunkie556 ·
LMAO no, but I do have plenty of it. 

NEO has been on my mind lately, so that probably explains it. :D
👍  
properties (23)
authorcoinjunkie556
permlinkre-ghaaspur-re-coinjunkie556-re-eosio-the-dawn-of-eos-io-20170903t192749011z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 19:27:51
last_update2017-09-03 19:27:51
depth3
children0
last_payout2017-09-10 19:27: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_length103
author_reputation1,024,294,516
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,773,660
net_rshares922,690,996
author_curate_reward""
vote details (1)
@surfyogi ·
EOS is mostly functional already, as Dan explains in his latest interview.
It's really the evolution of all his blockchain development over several years. Package it and be able to help apps build on top of the most advanced blockchain in existence. He seems to be mostly worried that it be distributed as far and wide as possible, so nobody can control it centrally. Big plans.

Yes, there may be many hard times ahead before we see where it goes. Ride it out.
properties (22)
authorsurfyogi
permlinkre-coinjunkie556-re-eosio-the-dawn-of-eos-io-20170910t005254555z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-10 00:52:54
last_update2017-09-10 00:52:54
depth2
children0
last_payout2017-09-17 00:52: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_length461
author_reputation31,155,045,810,316
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,407,377
net_rshares0
@cqdx ·
UPDATE:  CHINA BANS ALL ICO'S AND EOS IS IN CHINA
properties (22)
authorcqdx
permlinkre-eosio-the-dawn-of-eos-io-20170904t181145469z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 18:11:45
last_update2017-09-04 18:11:45
depth1
children0
last_payout2017-09-11 18:11: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_length49
author_reputation29,591,656,050
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,870,719
net_rshares0
@cristian07 ·
Very good improvements! It was a good job.
properties (22)
authorcristian07
permlinkre-eosio-the-dawn-of-eos-io-20170903t103621597z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 10:36:24
last_update2017-09-03 10:36:24
depth1
children0
last_payout2017-09-10 10:36:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation1,587,120,838,149
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,730,058
net_rshares0
@cryptotrader2017 ·
Great work .....like it
👍  ,
properties (23)
authorcryptotrader2017
permlinkre-eosio-the-dawn-of-eos-io-20170903t071653703z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 07:16:54
last_update2017-09-03 07:16:54
depth1
children0
last_payout2017-09-10 07:16:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation7,902,886,759,634
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,718,202
net_rshares2,327,898,891
author_curate_reward""
vote details (2)
@cutegirl ·
Next Eherium killer called EOS.
properties (22)
authorcutegirl
permlinkre-eosio-the-dawn-of-eos-io-20170906t101619741z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 10:16:18
last_update2017-09-06 10:16:18
depth1
children0
last_payout2017-09-13 10:16: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_length31
author_reputation393,296,319,466
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,035,359
net_rshares0
@d00b ·
$0.15
The trading numbers look  like nobody gives a shit...
👍  ,
properties (23)
authord00b
permlinkre-eosio-the-dawn-of-eos-io-20170904t034921263z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 03:49:21
last_update2017-09-04 03:49:21
depth1
children2
last_payout2017-09-11 03:49:21
cashout_time1969-12-31 23:59:59
total_payout_value0.150 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation50,101,716,368
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,806,193
net_rshares42,618,353,843
author_curate_reward""
vote details (2)
@anarcho ·
$0.13
The wide majority of investors and players in the crypto space are fueled by emotion. What until it starts shooting up a bit and the fear od missing out spreads around. They'll be tripping over each other to jump on board the EOS train. :D
👍  
properties (23)
authoranarcho
permlinkre-d00b-re-eosio-the-dawn-of-eos-io-20170907t075028814z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-07 07:50:30
last_update2017-09-07 07:50:30
depth2
children0
last_payout2017-09-14 07:50:30
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length239
author_reputation34,969,131,174
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,125,870
net_rshares41,063,228,157
author_curate_reward""
vote details (1)
@kingg ·
$0.14
for now, you got to remember people for get things fast and move to the next flavor of the week. wait till the project is ready for people to use ;).
👍  ,
properties (23)
authorkingg
permlinkre-d00b-re-eosio-the-dawn-of-eos-io-20170904t214455572z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 21:45:03
last_update2017-09-04 21:45:03
depth2
children0
last_payout2017-09-11 21:45:03
cashout_time1969-12-31 23:59:59
total_payout_value0.106 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation184,714,408,524
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,887,292
net_rshares41,029,111,710
author_curate_reward""
vote details (2)
@darkflame ·
I am very excited to launch my theatre token distribution on EOS!!
properties (22)
authordarkflame
permlinkre-eosio-the-dawn-of-eos-io-20170904t173840999z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 17:38:42
last_update2017-09-04 17:38:42
depth1
children0
last_payout2017-09-11 17:38: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_length66
author_reputation92,418,588,505,994
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,867,794
net_rshares0
@darkflame ·
I am very excited!! I want to make my own DSC token if it is possible to crowdfunding my theatre Darkflame studios. I want to set up a place for crypto as well, I hope eos has features that can help me.
properties (22)
authordarkflame
permlinkre-eosio-the-dawn-of-eos-io-20170906t064920187z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 06:49:21
last_update2017-09-06 06:49:21
depth1
children0
last_payout2017-09-13 06:49: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_length202
author_reputation92,418,588,505,994
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,021,706
net_rshares0
@davidrestrepo ·
$0.42
Greatttt
👍  
properties (23)
authordavidrestrepo
permlinkre-eosio-the-dawn-of-eos-io-20170904t052750267z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 05:27:51
last_update2017-09-04 05:27:51
depth1
children0
last_payout2017-09-11 05:27:51
cashout_time1969-12-31 23:59:59
total_payout_value0.408 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation757,119,534,433
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,812,310
net_rshares116,856,289,268
author_curate_reward""
vote details (1)
@deepwaterscrypto · (edited)
$0.05
10,000 single threaded transactions per second on a multi-node network? That makes bitcoin look like a turtle.
👍  , , , , ,
properties (23)
authordeepwaterscrypto
permlinkre-eosio-the-dawn-of-eos-io-20170903t060051912z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:00:51
last_update2017-09-03 06:01:12
depth1
children7
last_payout2017-09-10 06:00:51
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation194,386,454,476
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,713,875
net_rshares14,429,807,871
author_curate_reward""
vote details (6)
@full-steem-ahead ·
As does all graphene blockchains do (BitShares, Steemit, PeerPlays, GoLos....)
properties (22)
authorfull-steem-ahead
permlinkre-deepwaterscrypto-re-eosio-the-dawn-of-eos-io-20170903t172633919z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:26:33
last_update2017-09-03 17:26:33
depth2
children0
last_payout2017-09-10 17:26: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_length78
author_reputation30,177,498,572,933
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,763,481
net_rshares0
@leprechaun ·
$0.05
It makes bitshars look like a turtle and bitcoin a statue
👍  ,
properties (23)
authorleprechaun
permlinkre-deepwaterscrypto-201793t214656552z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-04 00:47:21
last_update2017-09-04 00:47:21
depth2
children2
last_payout2017-09-11 00:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation43,025,812,810,398
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,795,221
net_rshares14,159,771,954
author_curate_reward""
vote details (2)
@idealist ·
Bitshares is like a starship and EOS like a starship fleet
properties (22)
authoridealist
permlinkre-leprechaun-re-deepwaterscrypto-201793t214656552z-20170905t102942667z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 10:29:42
last_update2017-09-05 10:29:42
depth3
children0
last_payout2017-09-12 10:29: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_length58
author_reputation3,482,305,647,602
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,933,768
net_rshares0
@leprechaun ·
bitcoin  Is like Saturn V, then.
properties (22)
authorleprechaun
permlinkre-leprechaun-201795t9340350z
categoryeos
json_metadata{"tags":"e","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-05 12:03:45
last_update2017-09-05 12:03:45
depth3
children0
last_payout2017-09-12 12:03: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_length32
author_reputation43,025,812,810,398
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,940,081
net_rshares0
@squidlings ·
EOS works with super nodes, so it operating using a small what is effectively number of big servers as mentioned in the post with lots of cpu's.  So although these figures are impressive, it's not nearly as decentralized as ETH, the government wouldn't be able to shutdown ETH, but EOS would be far easier.  I'm an EOS holder because I believe the governments are moving towards crypto, therefore the threat of being closed down is getting lower as the weeks go by.
properties (22)
authorsquidlings
permlinkre-deepwaterscrypto-re-eosio-the-dawn-of-eos-io-20170903t203051124z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 20:30:51
last_update2017-09-03 20:30:51
depth2
children2
last_payout2017-09-10 20:30: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_length465
author_reputation457,282,197
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,778,537
net_rshares0
@tamwin33 ·
That's not true, ETH is not as decentralized as you think. EOS actually has a decentralization level that is more than a magnitude higher when you take into account the bottlenecks. Mining and normal proof of stake do not make you government-proof - it makes the coin more vulnerable to centralization. In the event of a government crack-down on crypto, EOS holders could just elect trusted block producers in the countries where it's legal. Miners would be moving to those countries anyway, DPOS would just be there instantly. Plus, DPOS block producers can keep their servers in faraday-cage bomb shelters, which solves  some of the problems with disaster, nuke, and EMP. Plus, decentralized governance allows EOS to adapt to new situations whereas ETH has a centralized team of developers. Here's a good article:
https://steemit.com/eos/@dan/response-to-vitalik-buterin-on-eos
👍  ,
properties (23)
authortamwin33
permlinkre-squidlings-re-deepwaterscrypto-re-eosio-the-dawn-of-eos-io-20170903t210923913z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@dan/response-to-vitalik-buterin-on-eos"],"app":"steemit/0.1"}
created2017-09-03 21:09:24
last_update2017-09-03 21:09:24
depth3
children1
last_payout2017-09-10 21:09: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_length879
author_reputation3,540,334,005,966
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,781,411
net_rshares1,160,648,457
author_curate_reward""
vote details (2)
@dev1by0 · (edited)
한국어 번역을 게시하였습니다.
I posted a Korean translation here:
https://steemit.com/eos/@dev1by0/eos-io-the-dawn-of-eos-io
👍  , ,
properties (23)
authordev1by0
permlinkre-eosio-the-dawn-of-eos-io-20170903t114247135z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@dev1by0/eos-io-the-dawn-of-eos-io"],"app":"steemit/0.1"}
created2017-09-03 11:42:48
last_update2017-09-03 13:18:18
depth1
children0
last_payout2017-09-10 11:42: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_length111
author_reputation10,155,370,629,176
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,734,452
net_rshares3,852,717,231
author_curate_reward""
vote details (3)
@droucil ·
"this enables a host of new innovative decentralized business models, such as a decentralized YouTube, Soundcloud, or other storage-intensive projects." That sounds really cool! Can't wait for this thing to launch :D
👍  
properties (23)
authordroucil
permlinkre-eosio-the-dawn-of-eos-io-20170903t052259807z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:23:00
last_update2017-09-03 05:23:00
depth1
children0
last_payout2017-09-10 05:23: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_length216
author_reputation14,002,540,951,182
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,711,708
net_rshares0
author_curate_reward""
vote details (1)
@eikr ·
Major cloud providers like AWS, Google, RackSpace, HP, etc., will soon realize the tremendous opportunity to share their infrastructure by investing in EOS as Tier 1 block producers.

Tier 2 service providers will no longer rent Virtual Machine in the near future. The applications will be developing in native EOS infrastructure and running as a Network Virtualized Function.

Completly distributed, IPFS ...
properties (22)
authoreikr
permlinkre-eosio-the-dawn-of-eos-io-20170904t184339001z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 18:43:39
last_update2017-09-04 18:43:39
depth1
children0
last_payout2017-09-11 18:43: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_length409
author_reputation184,848,194
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,873,529
net_rshares0
@emerge ·
$0.38
im such a huge fan of Graphene and EOS 
id like to know if the blockchain replay issues from Steem wont arise in EOS case?

Also, does that mean that node operators will have to keep everyones files?
👍  , , , , , , ,
properties (23)
authoremerge
permlinkre-eosio-201793t182429898z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-03 10:24:36
last_update2017-09-03 10:24:36
depth1
children1
last_payout2017-09-10 10:24:36
cashout_time1969-12-31 23:59:59
total_payout_value0.366 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation2,561,516,158,392
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,729,292
net_rshares104,541,057,782
author_curate_reward""
vote details (8)
@full-steem-ahead ·
> does that mean that node operators will have to keep everyones files?

It depends on what you mean by "node operator". I doubt it, as that is what the IPFS would be used for. However if you meant IPFS nodes then yes, but that is highly distributed and cryptographically very safe.
properties (22)
authorfull-steem-ahead
permlinkre-emerge-re-eosio-201793t182429898z-20170903t172523054z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:25:21
last_update2017-09-03 17:25:21
depth2
children0
last_payout2017-09-10 17:25: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_length282
author_reputation30,177,498,572,933
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,763,365
net_rshares0
@eric-boucher ·
$1.44
What a powerful token added up to the BitShares family!

Thank you so much for sharing all this information about it and wondering how to go about it if I were to buy some, either via fiat money or cryptos, any tips???

All for one and one for all!   Namaste   :)
👍  , , , , , , , , ,
properties (23)
authoreric-boucher
permlinkre-eosio-the-dawn-of-eos-io-20170903t060533129z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:05:33
last_update2017-09-03 06:05:33
depth1
children39
last_payout2017-09-10 06:05:33
cashout_time1969-12-31 23:59:59
total_payout_value1.376 HBD
curator_payout_value0.066 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length263
author_reputation68,503,601,066,539
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,714,114
net_rshares370,043,899,883
author_curate_reward""
vote details (10)
@anarcho ·
$0.05
Let me add another suggestion for you regarding coinbase.

Once you have funds in your coinbase dollar wallet, you can then transfer them instantly to GDAX.com, which is owne by coinbase. The transfer is free and instant. 

Next, purchase bitcoin using a "limit" order on GDAX. This will also have ZERO fee. Then transfer your bitcoin out of GDAX to wherever you need it. Again, no fee other than the btc network transaction fee.

Depending on how much your are buying/transferring. This can save you a substantial amount of money in fees.
👍  
properties (23)
authoranarcho
permlinkre-eric-boucher-re-eosio-the-dawn-of-eos-io-20170906t222450687z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 22:24:54
last_update2017-09-06 22:24:54
depth2
children3
last_payout2017-09-13 22:24:54
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length539
author_reputation34,969,131,174
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,092,159
net_rshares15,067,632,927
author_curate_reward""
vote details (1)
@eric-boucher ·
$0.05
Great points added up to the arsenal of goodness that came my way already, thanks a bunch!   Namaste   :)
👍  
properties (23)
authoreric-boucher
permlinkre-anarcho-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170906t224047187z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 22:40:45
last_update2017-09-06 22:40:45
depth3
children2
last_payout2017-09-13 22:40:45
cashout_time1969-12-31 23:59:59
total_payout_value0.047 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation68,503,601,066,539
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,093,148
net_rshares15,067,632,927
author_curate_reward""
vote details (1)
@balkrishna ·
Get Started Earning compounding Bitcoin Daily With USI-Tech !
USI-Tech are fully registered and in compliance with the SEC, the FTC and all United States Laws. You get paid daily and have the ability to withdraw your earnings at any time you decide to. https://ec40a397.usi-tech.info/ There is an average 1% daily payout for 5 days per week on BTC  packages .You can choose an option to Auto Re-buy to compound earnings. All Profits are earned from forex and cryptocurrency trading and mining and are backed up by real proof that anyone can see for themselves.
👎  
properties (23)
authorbalkrishna
permlinkre-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t063903954z
categoryeos
json_metadata{"tags":["eos"],"links":["https://ec40a397.usi-tech.info/"],"app":"steemit/0.1"}
created2017-09-04 06:39:09
last_update2017-09-04 06:39:09
depth2
children0
last_payout2017-09-11 06:39: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_length560
author_reputation-464,476,183,299
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,816,789
net_rshares-7,597,730,097
author_curate_reward""
vote details (1)
@bardamazon ·
$0.06
Upload an Exodus wallet.  You can trade it with other cryptocurrencies right inside that wallet.  It's pretty cool.
👍  ,
properties (23)
authorbardamazon
permlinkre-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t010636154z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 01:06:36
last_update2017-09-04 01:06:36
depth2
children3
last_payout2017-09-11 01:06:36
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation52,621,952,587
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,796,303
net_rshares17,341,011,672
author_curate_reward""
vote details (2)
@eric-boucher ·
$0.02
Thanks a bunch for the suggestion, it is a powerful path to take.   Namaste   :)
👍  
properties (23)
authoreric-boucher
permlinkre-bardamazon-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t213117415z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 21:31:15
last_update2017-09-04 21:31:15
depth3
children2
last_payout2017-09-11 21:31:15
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation68,503,601,066,539
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,886,288
net_rshares7,531,466,908
author_curate_reward""
vote details (1)
@jaxtaylor ·
YOu could just use changelly or shapeshift to swap BTC, ETH, LTC or whatever for some (if your in the USA and "forbidden" from buying (without a VPN) from the every 23 hour crowd sales. Just remember to create your EOS account and map it to the ETH address you keep your EOS ERC-20 token in (ERC-20 Tokens are just place holders for the EOS tokens to be swapped out 1 for 1 after platform launch projected for Jun/Jul 2018)
properties (22)
authorjaxtaylor
permlinkre-eric-boucher-re-eosio-the-dawn-of-eos-io-20171027t082139598z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-10-27 08:21:45
last_update2017-10-27 08:21:45
depth2
children0
last_payout2017-11-03 08:21: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_length423
author_reputation29,941,316,598
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,675,878
net_rshares0
@skyeg3 ·
$0.05
You can buy EOS tokens on Bitfinex or Binance exchange. Or you can send ethereum and receive EOS tokens as part of the crowdsale following instructions on the EOS website.
👍  , ,
properties (23)
authorskyeg3
permlinkre-eric-boucher-re-eosio-the-dawn-of-eos-io-20170903t063033882z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:30:33
last_update2017-09-03 06:30:33
depth2
children1
last_payout2017-09-10 06:30:33
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation948,208,874
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,715,443
net_rshares12,235,535,747
author_curate_reward""
vote details (3)
@eric-boucher ·
$0.03
Thanks a bunch for the straightforward instructions!   Namaste   :)
👍  
properties (23)
authoreric-boucher
permlinkre-skyeg3-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t211921912z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 21:19:21
last_update2017-09-04 21:19:21
depth3
children0
last_payout2017-09-11 21:19:21
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation68,503,601,066,539
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,885,426
net_rshares10,041,955,877
author_curate_reward""
vote details (1)
@vdatsuk ·
use exodus wallet, it is really simple
👍  
properties (23)
authorvdatsuk
permlinkre-eric-boucher-re-eosio-the-dawn-of-eos-io-20170908t093409255z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-08 09:30:57
last_update2017-09-08 09:30:57
depth2
children1
last_payout2017-09-15 09:30: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_length38
author_reputation78,572,009
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,234,885
net_rshares5,028,608,620
author_curate_reward""
vote details (1)
@eric-boucher ·
Thanks a lot for the input, I am usually using the BitShares Wallet... Is there more pros than cons to use the Exodus Wallet compared to the BTS Wallet?  Namaste   :)
👍  
properties (23)
authoreric-boucher
permlinkre-vdatsuk-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170908t200455217z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-08 20:04:54
last_update2017-09-08 20:04:54
depth3
children0
last_payout2017-09-15 20:04: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_length166
author_reputation68,503,601,066,539
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,290,906
net_rshares5,028,608,620
author_curate_reward""
vote details (1)
@zedchamaa ·
$2.22
If you want to buy EOS using Fiat money, the easiest way to do it would be through https://www.coinbase.com/ as your first step, here's how:

1 - Open a Coinbase account and link it to your debit or credit card (or alternatively, transfer USD, EUR or GBP to it)

2 - Buy BTC or ETH through your Coinbase account

3 - Send the BTC or ETH to an exchange such as https://www.kraken.com/ to trade for EOS, or alternatively, use services such as https://shapeshift.io/ or https://changelly.com/ (if you prefer to stay away from exchanges)

4 - Once you buy your EOS tokens, make sure you send them to your wallet (this mainly applies if you're going to use an exchange) and DO NOT leave them on any exchange. Buy a hardware wallet such as https://trezor.io/, https://www.ledgerwallet.com/ or https://www.keepkey.com/. Trezor is my favourite hardware wallet and it supports https://www.myetherwallet.com/, which means you can store any ERC-20 token on it, including EOS.

5 - After you receive your EOS tokens into your wallet, make sure that you register them by mapping your PUBLIC Ethereum address to the EOS PUBLIC address. Here's an article which explains how this is done for the EXODUS wallet, just replace anything related to EXODUS with the wallet that you will be using: https://goo.gl/36yDtS

Other helpful articles:

How to transfer EOS ERC20 tokens using MyEtherWallet: https://goo.gl/dgCsyJ

How to update the EOS public key mapped/registered to your ETH Address with MyEtherWallet (MEW): https://goo.gl/TSq52F
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorzedchamaa
permlinkre-eric-boucher-re-eosio-the-dawn-of-eos-io-20170903t162016924z
categoryeos
json_metadata{"tags":["eos"],"links":["https://www.coinbase.com/","https://www.kraken.com/","https://trezor.io/","https://goo.gl/36yDtS","https://goo.gl/dgCsyJ","https://goo.gl/TSq52F"],"app":"steemit/0.1"}
created2017-09-03 16:20:12
last_update2017-09-03 16:20:12
depth2
children24
last_payout2017-09-10 16:20:12
cashout_time1969-12-31 23:59:59
total_payout_value1.704 HBD
curator_payout_value0.517 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,518
author_reputation13,573,064,409
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,757,627
net_rshares604,356,336,445
author_curate_reward""
vote details (42)
@bashadow ·
So I need a Lawyer, an accountant, and a webmaster, in order to buy EOS? In other words I did not understand a word of what you typed. When are *"Laymen"*, ordinary people going to be able to understand any of the crypto currency exchanging. It really does sound like one *big brother, secret hand shake club.* 5 steps to buy an invisible coin. Someone needs to make it easier.
👍  
properties (23)
authorbashadow
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170912t052628648z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-12 05:26:15
last_update2017-09-12 05:26:15
depth3
children1
last_payout2017-09-19 05:26: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_length377
author_reputation100,388,692,638,882
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,624,304
net_rshares0
author_curate_reward""
vote details (1)
@carlosmertens ·
I had no idea I have to register my tokens. Thanks for your very clear and through response. @zedchamaa
👍  
properties (23)
authorcarlosmertens
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170903t204815570z
categoryeos
json_metadata{"tags":["eos"],"users":["zedchamaa"],"app":"steemit/0.1"}
created2017-09-03 20:48:15
last_update2017-09-03 20:48:15
depth3
children1
last_payout2017-09-10 20:48: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_length103
author_reputation938,627,222
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,779,718
net_rshares0
author_curate_reward""
vote details (1)
@coins4max ·
I had bought EOS from the ICO Page using Metamask. On the ICO Page they have a register button and I did that. DO I need to register the Public Address again via the process mentioned above or do you think that is enough? Please let me know....thanks!
properties (22)
authorcoins4max
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t102642200z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 10:26:42
last_update2017-09-04 10:26:42
depth3
children1
last_payout2017-09-11 10:26: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_length251
author_reputation705,992,135
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,831,480
net_rshares0
@digijebz ·
If you are waiting on a hardware wallet, can you transfer your EOS to your ETH wallet on JAXX??
👍  
properties (23)
authordigijebz
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t053536735z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 05:35:36
last_update2017-09-04 05:35:36
depth3
children3
last_payout2017-09-11 05:35: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_length95
author_reputation154,814,538
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,812,823
net_rshares0
author_curate_reward""
vote details (1)
@eric-boucher ·
$0.32
Wow! Thank you so very much, this is worth a full 100% upvote as it is worth an article in itself! Awesome answer, your teaching, time and dedication are highly appreciated.   Namaste    :)
👍  , ,
properties (23)
authoreric-boucher
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t212422031z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 21:24:21
last_update2017-09-04 21:24:21
depth3
children1
last_payout2017-09-11 21:24:21
cashout_time1969-12-31 23:59:59
total_payout_value0.318 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length189
author_reputation68,503,601,066,539
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,885,808
net_rshares92,888,091,871
author_curate_reward""
vote details (3)
@jasonshick ·
Why is it necessary to register EOS tokens? I'm missing something
properties (22)
authorjasonshick
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170918t144414617z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-18 14:52:15
last_update2017-09-18 14:52:15
depth3
children0
last_payout2017-09-25 14:52: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_length65
author_reputation34,285,892,602,808
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,234,456
net_rshares0
@mentors ·
Thanks for the info! Question about No. 4: Why not leave EOS on an exchange?
👍  
properties (23)
authormentors
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170903t215326027z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 21:53:24
last_update2017-09-03 21:53:24
depth3
children2
last_payout2017-09-10 21:53:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation0
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,784,530
net_rshares0
author_curate_reward""
vote details (1)
@mmmltr ·
I need help I made payment of 2 Ether to the EOS contract address and I cannot get my EOS token and diffificult adding the EOS public key to myetherwallet,what should I do?
properties (22)
authormmmltr
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20171112t074202117z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-11-12 07:42:03
last_update2017-11-12 07:42:03
depth3
children0
last_payout2017-11-19 07:42:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation8,824,197
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,122,482
net_rshares0
@unomas ·
I had no idea I even had to register my EOS tokens until I read this. Thanks for posting this info.
properties (22)
authorunomas
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t060341851z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 06:03:36
last_update2017-09-04 06:03:36
depth3
children0
last_payout2017-09-11 06:03: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_length99
author_reputation971,933,356,391
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,814,522
net_rshares0
@wilku ·
Thanks for tips. However, I got question. Do I need to register tokens which I bought on exchange (Kraken) or exchange will do it on my behalf? Thanks
properties (22)
authorwilku
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t103913785z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 10:39:12
last_update2017-09-04 10:39:12
depth3
children4
last_payout2017-09-11 10:39: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_length150
author_reputation19,492,812,682,728
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,832,367
net_rshares0
@yentl7 ·
Goodmorning Thank you for sharing! Have a nice day
properties (22)
authoryentl7
permlinkre-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t063806119z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 06:38:06
last_update2017-09-04 06:38:06
depth3
children0
last_payout2017-09-11 06:38: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_length50
author_reputation4,960,280,242
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,816,711
net_rshares0
@exxodus ·
Without your own EOS blockchain, how does this impact the ERC20 token? What will it be used for????
👍  
properties (23)
authorexxodus
permlinkre-eosio-the-dawn-of-eos-io-20170903t183119089z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 18:31:18
last_update2017-09-03 18:31:18
depth1
children1
last_payout2017-09-10 18:31: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_length99
author_reputation7,589,375,156,104
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,768,963
net_rshares1,981,846,368
author_curate_reward""
vote details (1)
@nickeles ·
once the EOS token moves to its own blockchain and the community decides to trade a one for one EOS to the new blockchain there will be a massive sell off in ERC 20 tokens because once you move on the ERC 20 EOS token will be useless. whatever the market cap of EOS is will end up being 0 or close to when EOS core is open.
properties (22)
authornickeles
permlinkre-exxodus-re-eosio-the-dawn-of-eos-io-20170903t220752933z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 22:07:57
last_update2017-09-03 22:07:57
depth2
children0
last_payout2017-09-10 22:07: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_length323
author_reputation334,056,741,142
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,785,563
net_rshares0
@fady2017 ·
Great. Thanks for sharing. I'm starting to follow you.
properties (22)
authorfady2017
permlinkre-eosio-the-dawn-of-eos-io-20170905t030040654z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 03:00:57
last_update2017-09-05 03:00:57
depth1
children0
last_payout2017-09-12 03: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_length54
author_reputation-56,082,651,601
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,905,965
net_rshares0
@fastdraw07 ·
We have EOS, now all we need are end-users creating their own smart contracts.  That will free up a lot of unncessary resources.
properties (22)
authorfastdraw07
permlinkre-eosio-the-dawn-of-eos-io-20170903t155030471z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 15:50:27
last_update2017-09-03 15:50:27
depth1
children0
last_payout2017-09-10 15:50: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_length128
author_reputation9,654,377,405
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,754,888
net_rshares0
@fav ·
properties (23)
authorfav
permlinkre-eosio-the-dawn-of-eos-io-201793t134650451z
categoryeos
json_metadata{"app":"eostalk/0.3","format":"markdown+html","tags":[]}
created2017-09-03 11:46:48
last_update2017-09-03 11:46:48
depth1
children0
last_payout2017-09-10 11:46: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_length55
author_reputation8,439,588,475,730
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountchainbb
weight200
1.
accounteostalk
weight1,300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,734,701
net_rshares-655,225,405,508
author_curate_reward""
vote details (56)
@frost04 ·
$0.22
This news is Aweeesome!
👍  , , ,
properties (23)
authorfrost04
permlinkre-eosio-the-dawn-of-eos-io-20170905t082510824z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 08:25:12
last_update2017-09-05 08:25:12
depth1
children0
last_payout2017-09-12 08:25:12
cashout_time1969-12-31 23:59:59
total_payout_value0.219 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation3,645,772,569,932
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,925,556
net_rshares65,299,313,572
author_curate_reward""
vote details (4)
@frost04 ·
$0.22
After the Recent China banning ICO's event it seems that EOS was affected as well.  So sad this news had to coincide with that event.
👍  , , , ,
properties (23)
authorfrost04
permlinkre-eosio-the-dawn-of-eos-io-20170907t065149301z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-07 06:51:51
last_update2017-09-07 06:51:51
depth1
children0
last_payout2017-09-14 06:51:51
cashout_time1969-12-31 23:59:59
total_payout_value0.220 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation3,645,772,569,932
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,121,918
net_rshares69,704,419,607
author_curate_reward""
vote details (5)
@ghaaspur ·
Great article, thank you for the detailed explanations
properties (22)
authorghaaspur
permlinkre-eosio-the-dawn-of-eos-io-20170903t181909391z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 18:19:09
last_update2017-09-03 18:19:09
depth1
children0
last_payout2017-09-10 18:19: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_length54
author_reputation278,893,346,456
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,767,931
net_rshares0
@gorex ·
We must admit #EOS project is Future and we can't wait for the full development. A team of brilliant competitive minds with hearts full of passion. Cant wait for more...
👍  
properties (23)
authorgorex
permlinkre-eosio-the-dawn-of-eos-io-20170924t081739313z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-24 08:17:39
last_update2017-09-24 08:17:39
depth1
children0
last_payout2017-10-01 08:17: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_length169
author_reputation1,934,742,713
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,774,466
net_rshares3,492,792,025
author_curate_reward""
vote details (1)
@greenerz ·
$0.05
upvoted and resteemed! love ESO
👍  
properties (23)
authorgreenerz
permlinkre-eosio-the-dawn-of-eos-io-20170903t085130202z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 08:51:30
last_update2017-09-03 08:51:30
depth1
children0
last_payout2017-09-10 08:51:30
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation131,215,670,880
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,723,697
net_rshares12,817,762,663
author_curate_reward""
vote details (1)
@hanisullah ·
Too much token.
I want too like
properties (22)
authorhanisullah
permlinkre-eosio-201793t18132270z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-03 11:01:42
last_update2017-09-03 11:01:42
depth1
children0
last_payout2017-09-10 11:01: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_length31
author_reputation225,450,626,470
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,731,745
net_rshares0
@hashcrown ·
EOS appears undervalued and ready for large growth potential. I see a 20% discrepancy on exchanges while approaching fibonacci retracement (potential for strong rebound if the price reaches $0.50 USD), developer commits are at an all time high,  their event roadmap is packed for September,  they've launched a new website to announce dawn, and have one of the most strict token purchasing processes.

A lot looks good but I guess we'll have to see if organisations take advantage of their open source blockchain to build applications.

References:  https://imgur.com/a/bCsR6
👍  
properties (23)
authorhashcrown
permlinkre-eosio-the-dawn-of-eos-io-20170917t055957682z
categoryeos
json_metadata{"tags":["eos"],"links":["https://imgur.com/a/bCsR6"],"app":"steemit/0.1"}
created2017-09-17 05:59:57
last_update2017-09-17 05:59:57
depth1
children0
last_payout2017-09-24 05:59: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_length575
author_reputation0
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,110,236
net_rshares0
author_curate_reward""
vote details (1)
@hazooka ·
Yala EOS let's go to mars !
👍  ,
properties (23)
authorhazooka
permlinkre-eosio-the-dawn-of-eos-io-20170906t144501195z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 14:45:00
last_update2017-09-06 14:45:00
depth1
children0
last_payout2017-09-13 14:45: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_length27
author_reputation21,689,305,514
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,056,648
net_rshares1,570,422,715
author_curate_reward""
vote details (2)
@heimindanger ·
$0.26
When will we be able to try it out? I'm interested in how the IPFS thingy works.
👍  
properties (23)
authorheimindanger
permlinkre-eosio-the-dawn-of-eos-io-20170903t114622286z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 11:46:21
last_update2017-09-03 11:46:21
depth1
children0
last_payout2017-09-10 11:46:21
cashout_time1969-12-31 23:59:59
total_payout_value0.196 HBD
curator_payout_value0.064 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation-16,507,408,909,111
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,734,671
net_rshares69,833,757,559
author_curate_reward""
vote details (1)
@hiroyamagishi ·
$0.50
a really amazing project, looking forward to this crypto and planning to invest on it in the near future
👍  
properties (23)
authorhiroyamagishi
permlinkre-eosio-the-dawn-of-eos-io-20170903t122112299z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 12:21:12
last_update2017-09-03 12:21:12
depth1
children0
last_payout2017-09-10 12:21:12
cashout_time1969-12-31 23:59:59
total_payout_value0.499 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation71,901,302,671,995
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,737,022
net_rshares133,610,574,111
author_curate_reward""
vote details (1)
@holl.boll ·
WOW NICE JOB I LIKE IT THIS POST
👍  
properties (23)
authorholl.boll
permlinkre-eosio-the-dawn-of-eos-io-20170903t070427304z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 07:04:27
last_update2017-09-03 07:04:27
depth1
children0
last_payout2017-09-10 07:04: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_length32
author_reputation-30,357,862,109
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,717,447
net_rshares1,875,946,181
author_curate_reward""
vote details (1)
@holycitycomedy ·
nice post..follow and upvote
👍  
properties (23)
authorholycitycomedy
permlinkre-eosio-the-dawn-of-eos-io-20170904t091759573z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 09:18:00
last_update2017-09-04 09:18:00
depth1
children0
last_payout2017-09-11 09:18: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_reputation149,560,410,885
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,827,115
net_rshares1,434,471,182
author_curate_reward""
vote details (1)
@initforthemoney ·
Beautiful!
properties (22)
authorinitforthemoney
permlinkre-eosio-the-dawn-of-eos-io-20170904t053419105z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 05:34:18
last_update2017-09-04 05:34:18
depth1
children0
last_payout2017-09-11 05:34: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_length10
author_reputation6,227,007,446,802
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,812,737
net_rshares0
@jalai · (edited)
This is great news for us EOS fans.  Thank you to everyone at EOS for all their hard work and dedication in making this progress!
👍  
properties (23)
authorjalai
permlinkre-eosio-the-dawn-of-eos-io-20170903t064010204z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:40:09
last_update2017-09-03 07:33:06
depth1
children0
last_payout2017-09-10 06:40: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_length129
author_reputation30,304,700,656
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,716,092
net_rshares1,951,589,172
author_curate_reward""
vote details (1)
@jarib ·
I did a translation to Spanish of this article https://steemit.com/eos/@jarib/el-nacimiento-de-eos-io-the-dawn-of-eos-io
properties (22)
authorjarib
permlinkre-eosio-the-dawn-of-eos-io-20170905t205851764z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@jarib/el-nacimiento-de-eos-io-the-dawn-of-eos-io"],"app":"steemit/0.1"}
created2017-09-05 20:58:51
last_update2017-09-05 20:58:51
depth1
children0
last_payout2017-09-12 20:58: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_length120
author_reputation240,980,358,372
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,984,885
net_rshares0
@jaxtaylor ·
This is exciting news even though the technical aspects of the updates are out of my realm of understanding (for the most part). What I hear is that the EOS team is doing exactly what they said they were going to do, in exactly the way they were going to do it, and are ahead of schedule. 
This is exactly why the crowd funding was spread out over time, those who wanted to wait to invest to see if there was actually going to be a working product first could do so,  in fact, all the way through to next year. The whole project is brilliant in my view and I am excited to be apart of it.
peace
properties (22)
authorjaxtaylor
permlinkre-eosio-the-dawn-of-eos-io-20170904t072801941z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 07:28:18
last_update2017-09-04 07:28:18
depth1
children0
last_payout2017-09-11 07:28: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_length594
author_reputation29,941,316,598
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,819,997
net_rshares0
@jbenticer ·
When is the next major catalyst for EOS? There are a lot of negative conspiracy theories circulating.
👍  
properties (23)
authorjbenticer
permlinkre-eosio-the-dawn-of-eos-io-20170903t232815633z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 23:28:15
last_update2017-09-03 23:28:15
depth1
children0
last_payout2017-09-10 23:28: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_length101
author_reputation426,227,517,338
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,790,726
net_rshares5,375,277,994
author_curate_reward""
vote details (1)
@jga ·
$0.03
Wow excellent! !! Good work. I think is time to buy more eos. Take advantage of the low prices!!
👍  , ,
properties (23)
authorjga
permlinkre-eosio-the-dawn-of-eos-io-20170903t112406383z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 11:24:00
last_update2017-09-03 11:24:00
depth1
children0
last_payout2017-09-10 11:24:00
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation76,172,796,162,312
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,733,216
net_rshares8,372,341,099
author_curate_reward""
vote details (3)
@joele ·
EOS storage, rocks!
👍  
properties (23)
authorjoele
permlinkre-eosio-the-dawn-of-eos-io-20170904t025112776z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 02:51:12
last_update2017-09-04 02:51:12
depth1
children0
last_payout2017-09-11 02:51: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_length19
author_reputation2,761,532,307,555
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,802,565
net_rshares884,879,483
author_curate_reward""
vote details (1)
@joele ·
Next year 1 EOS >= $100
👍  , ,
properties (23)
authorjoele
permlinkre-eosio-the-dawn-of-eos-io-20170904t025905265z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 02:59:03
last_update2017-09-04 02:59:03
depth1
children2
last_payout2017-09-11 02:59: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_length23
author_reputation2,761,532,307,555
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,803,028
net_rshares4,591,350,655
author_curate_reward""
vote details (3)
@ehabakhdar ·
$0.02
How can i thank you, you are my super supportive hero.
👍  
properties (23)
authorehabakhdar
permlinkre-joele-re-eosio-the-dawn-of-eos-io-20170907t143312363z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-07 14:33:12
last_update2017-09-07 14:33:12
depth2
children0
last_payout2017-09-14 14:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation1,378,158,082,376
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,156,323
net_rshares6,645,055,711
author_curate_reward""
vote details (1)
@koffee ·
hopefully EOS prevails
properties (22)
authorkoffee
permlinkre-joele-re-eosio-the-dawn-of-eos-io-20170906t203241619z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 20:32:48
last_update2017-09-06 20:32:48
depth2
children0
last_payout2017-09-13 20:32: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_length22
author_reputation1,676,137,646,193
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,085,474
net_rshares0
@johnsmith · (edited)
Congrats to Dan, Brendan and the whole EOS team! Releasing an MVP ahead of schedule is a strong indication that EOS is the real deal and is going to deliver the goods. If anyone has been on the fence about whether or not to purchase EOS tokens... now would be a be good time reconsider whatever is holding you back. Things are going to be getting very exciting, very soon. Crypto life!
👍  , , , , , , , , , , , , , ,
👎  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorjohnsmith
permlinkre-eosio-the-dawn-of-eos-io-20170903t060543897z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:05:42
last_update2017-09-03 06:06:03
depth1
children19
last_payout2017-09-10 06:05: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_length385
author_reputation22,729,726,767,685
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,714,120
net_rshares-901,440,241,591
author_curate_reward""
vote details (67)
@geronimo ·
$0.55
Exactly! Releasing an MVP ahead of schedule is very rare in the software business. Congrats!
👍  
properties (23)
authorgeronimo
permlinkre-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t144124331z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 14:41:27
last_update2017-09-03 14:41:27
depth2
children0
last_payout2017-09-10 14:41:27
cashout_time1969-12-31 23:59:59
total_payout_value0.550 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation2,923,721,121,912
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,748,668
net_rshares149,591,989,324
author_curate_reward""
vote details (1)
@ibringawareness ·
$0.09
Agreed! Bought at $1.87 (U.S. citizen, so on an exchange) which might seem high to some, but yes I also expect it to deliver the goods, see mass adoption, and be worth 1000x that eventually. Hodling. Note to self, buy more.
👍  , ,
properties (23)
authoribringawareness
permlinkre-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t063542931z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:35:48
last_update2017-09-03 06:35:48
depth2
children12
last_payout2017-09-10 06:35:48
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length223
author_reputation18,353,960,014,817
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,715,808
net_rshares23,563,910,397
author_curate_reward""
vote details (3)
@an-di ·
$0.03
make sure to [map an **EOS Public Key**](https://steemit.com/eos/@sandwich/the-most-important-eos-public-key-to-an-ethereum-address) before the *ICO* is over, if you are interested in using/transferring your EOS tokens at a later stage.
👍  ,
properties (23)
authoran-di
permlinkre-ibringawareness-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t183138754z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@sandwich/the-most-important-eos-public-key-to-an-ethereum-address"],"app":"steemit/0.1"}
created2017-09-03 18:31:39
last_update2017-09-03 18:31:39
depth3
children1
last_payout2017-09-10 18:31:39
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length236
author_reputation1,477,269,488
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,768,988
net_rshares9,913,678,585
author_curate_reward""
vote details (2)
@buuux ·
$0.02
Sooooo you think EOS will have a Marketcap of 1,870,000,000,000$?
Thats about 3 times as much as the 5  most valued Companys in the World combined.
If you don't understand basic math, you should imo stay away from crypto...
👍  ,
properties (23)
authorbuuux
permlinkre-ibringawareness-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t132434246z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 13:24:33
last_update2017-09-03 13:24:33
depth3
children8
last_payout2017-09-10 13:24:33
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length223
author_reputation1,279,979,778
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,742,054
net_rshares6,460,667,830
author_curate_reward""
vote details (2)
@tolkatore ·
Smart man indeed.
properties (22)
authortolkatore
permlinkre-ibringawareness-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170904t094931338z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 09:49:33
last_update2017-09-04 09:49:33
depth3
children0
last_payout2017-09-11 09:49: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_length17
author_reputation2,607,791,002,003
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,829,180
net_rshares0
@lifeisfun ·
https://steemit.com/mcap/@lifeisfun/story-from-bitcoin-mining-to-bitcoingrowthfund-mcap-tokens-and-now-towards-eth-mining
👍  
properties (23)
authorlifeisfun
permlinkre-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t073053098z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/mcap/@lifeisfun/story-from-bitcoin-mining-to-bitcoingrowthfund-mcap-tokens-and-now-towards-eth-mining"],"app":"steemit/0.1"}
created2017-09-03 07:30:09
last_update2017-09-03 07:30:09
depth2
children0
last_payout2017-09-10 07:30: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_length121
author_reputation1,962,145,227
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,719,024
net_rshares188,242,044
author_curate_reward""
vote details (1)
@rabinthapa ·
great
👍  
properties (23)
authorrabinthapa
permlinkre-johnsmith-re-eosio-the-dawn-of-eos-io-20170902t192628019z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 09:08:45
last_update2017-09-03 09:08:45
depth2
children0
last_payout2017-09-10 09:08: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_length5
author_reputation452,022,740
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,724,693
net_rshares626,413,323
author_curate_reward""
vote details (1)
@tolkatore ·
$0.90
I'm very excited about this, and I'm also glad that everyone in the market seems to be chasing the hottest shitcoin of the week, and leaving EOS alone, which grants me the ability to buy more and more at an extremely discounted price! 💰
👍  , , , , ,
properties (23)
authortolkatore
permlinkre-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t105511979z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 10:55:12
last_update2017-09-03 10:55:12
depth2
children2
last_payout2017-09-10 10:55:12
cashout_time1969-12-31 23:59:59
total_payout_value0.679 HBD
curator_payout_value0.220 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length236
author_reputation2,607,791,002,003
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,731,316
net_rshares238,900,599,225
author_curate_reward""
vote details (6)
@jbbasics ·
Here here!
👍  
properties (23)
authorjbbasics
permlinkre-tolkatore-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170904t035732459z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 03:57:33
last_update2017-09-04 03:57:33
depth3
children0
last_payout2017-09-11 03:57:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation527,662,449,377
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,806,790
net_rshares993,684,883
author_curate_reward""
vote details (1)
@whyknot ·
LOL
👍  
properties (23)
authorwhyknot
permlinkre-tolkatore-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t150845621z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 15:08:48
last_update2017-09-03 15:08:48
depth3
children0
last_payout2017-09-10 15:08:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation112,320,686,869
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,751,190
net_rshares1,016,928,973
author_curate_reward""
vote details (1)
@jtavassol ·
Beautiful, thanks for posting it.
upvoted and followed you if you like fitnessallione please follow me
👎  ,
properties (23)
authorjtavassol
permlinkre-eosio-the-dawn-of-eos-io-20170903t052538970z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:25:45
last_update2017-09-03 05:25:45
depth1
children1
last_payout2017-09-10 05:25: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_length102
author_reputation-1,987,656,707,474
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,711,863
net_rshares-127,877,848,168,479
author_curate_reward""
vote details (2)
@libertyteeth · (edited)
I think your bot is stuck on a previous user account that it was activated on.  I've seen this before.  I mean, I've seen your appeals for followers on unrelated posts, before, both with the fitnessallinone user (note, there's a typo in your comment, you're missing the "n" in "in"), and with another user.  Not sure if it was this one but I think it was with another.

This is a public service announcement.
properties (22)
authorlibertyteeth
permlinkre-jtavassol-re-eosio-the-dawn-of-eos-io-20170903t220902005z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 22:09:03
last_update2017-09-03 22:09:15
depth2
children0
last_payout2017-09-10 22:09: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_length408
author_reputation7,938,471,600,702
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,785,638
net_rshares0
@juaniev ·
Interesting you post, upvoted
👎  ,
properties (23)
authorjuaniev
permlinkre-eosio-the-dawn-of-eos-io-20170903t044437922z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 04:44:36
last_update2017-09-03 04:44:36
depth1
children0
last_payout2017-09-10 04:44:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation-1,806,738,827,058
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,709,631
net_rshares-127,877,842,958,885
author_curate_reward""
vote details (2)
@juanmiguelsalas ·
$0.14
>EOS.IO Storage!
For the first time, developers will be able to create and deploy a decentralized application and web interfaces without having to worry about bandwidth and storage costs, or even hosting any servers themselves; this enables a host of new innovative decentralized business models, such as a decentralized YouTube, Soundcloud, or other storage-intensive projects.

I have read this part so many times already! OMFG! A real game changer. Thanks a lot for the hard work to the EOS team!
# U guys ROCK!
👍  , , , , , ,
properties (23)
authorjuanmiguelsalas
permlinkre-eosio-the-dawn-of-eos-io-20170903t082904889z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 08:29:03
last_update2017-09-03 08:29:03
depth1
children0
last_payout2017-09-10 08:29:03
cashout_time1969-12-31 23:59:59
total_payout_value0.109 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length514
author_reputation91,321,277,026,429
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,722,463
net_rshares36,612,293,470
author_curate_reward""
vote details (7)
@juanpimentel ·
https://steemit.com/life/@juanpimentel/10-miniature-photos-that-show-you-a-very-funny-world-you-will-be-surprised-the-number-3

jajaja
properties (22)
authorjuanpimentel
permlinkre-eosio-the-dawn-of-eos-io-20170905t180214310z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/life/@juanpimentel/10-miniature-photos-that-show-you-a-very-funny-world-you-will-be-surprised-the-number-3"],"app":"steemit/0.1"}
created2017-09-05 18:02:15
last_update2017-09-05 18:02:15
depth1
children0
last_payout2017-09-12 18:02: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_length134
author_reputation525,458,287,931
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,971,671
net_rshares0
@kaushal1 ·
Nice post there thanks for update

Upvoted and Followed.
properties (22)
authorkaushal1
permlinkre-eosio-the-dawn-of-eos-io-20170906t023913991z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 02:39:15
last_update2017-09-06 02:39:15
depth1
children0
last_payout2017-09-13 02:39: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_length56
author_reputation27,132,924,873
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,006,488
net_rshares0
@kevinwong ·
$2.25
properties (23)
authorkevinwong
permlinkre-eosio-the-dawn-of-eos-io-20170903t053236065z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmbU5FimXabfhqF9qyNEXwcHNSDcAtBXyk7fWYwz18WXbT/image.png"],"app":"steemit/0.1"}
created2017-09-03 05:32:36
last_update2017-09-03 05:32:36
depth1
children10
last_payout2017-09-10 05:32:36
cashout_time1969-12-31 23:59:59
total_payout_value1.874 HBD
curator_payout_value0.378 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation621,253,570,295,288
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,712,293
net_rshares578,863,141,667
author_curate_reward""
vote details (42)
@avilsd ·
$0.24
Nice :)
👍  ,
properties (23)
authoravilsd
permlinkre-kevinwong-re-eosio-the-dawn-of-eos-io-20170904t160003886z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 16:00:03
last_update2017-09-04 16:00:03
depth2
children0
last_payout2017-09-11 16:00:03
cashout_time1969-12-31 23:59:59
total_payout_value0.242 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation20,163,046,179,161
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,858,790
net_rshares70,271,051,509
author_curate_reward""
vote details (2)
@binodsinghdhami ·
https://steemit.com/@binodsinghdhami
upvote me plz.
👍  , ,
properties (23)
authorbinodsinghdhami
permlinkre-kevinwong-re-eosio-the-dawn-of-eos-io-20170905t100440400z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/@binodsinghdhami"],"app":"steemit/0.1"}
created2017-09-05 10:04:39
last_update2017-09-05 10:04:39
depth2
children0
last_payout2017-09-12 10:04: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_length51
author_reputation-12,785,561,579
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,932,021
net_rshares1,780,131,735
author_curate_reward""
vote details (3)
@cryptomillion ·
Nice, maybe you are interested into this too:

https://steemit.com/cryptocurrency/@cryptomillion/video-games-driving-technology-what-s-next
👍  ,
properties (23)
authorcryptomillion
permlinkre-kevinwong-re-eosio-the-dawn-of-eos-io-20170904t174511966z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/cryptocurrency/@cryptomillion/video-games-driving-technology-what-s-next"],"app":"steemit/0.1"}
created2017-09-04 18:41:21
last_update2017-09-04 18:41:21
depth2
children0
last_payout2017-09-11 18:41: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_length139
author_reputation105,324,728,234
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,873,332
net_rshares607,129,600
author_curate_reward""
vote details (2)
@dvapump ·
Come to Woldwide bittrex korea pump group
Join Telegram channels http://telegram.me/DvaPump

Welcome to Woldwide bittrex exchange pump channel
The bittrex force of Koreans is powerful.
Last year our pumping room was highly trusted.
Do you think 500% ~ 1500% profit is impossible in a week?
We'll show you this is true.
With accurate chart reading, we plan to periodically pump.
We are recruiting people all over the world, and we do not need your money for free!
Just watch it. Install the telegram app and get in the channel.

Join Telegram channels http://telegram.me/DvaPump

안녕하세요. bittrex 거래소 펌핑 방입니다.
저희 한국인들의 bittrex 세력과 펌핑은 매우 강력합니다.
작년에 저희 펌핑방은 각종 코인 펌핑으로 크게 신뢰를 쌓았으며,
법적문제가 현재 있지않아, 다시한번 여러분들께 역사를 다시 써나가려고합니다.
일주일에 500% ~ 1500% 수익이 불가능할 것 같나요?
저희가 보여드리겠습니다. 우리방만의 노하우와 진실을
정확한 차트 리딩과 함께 저희는 주기적으로 펌핑할 예정입니다.
현재 전세계 사람들을 모집하고있고, 회원님들 돈 강요하지 않습니다. 공짜입니다.
구경만 하셔도 좋으니 텔레그램 어플 설치하고 저희 채널에 들어와주세요 ^^

텔레그램 입장해주세요. http://telegram.me/Dvapump
👎  
properties (23)
authordvapump
permlinkre-kevinwong-re-eosio-the-dawn-of-eos-io-20170903t185332986z
categoryeos
json_metadata{"tags":["eos"],"links":["http://telegram.me/DvaPump","http://telegram.me/Dvapump"],"app":"steemit/0.1"}
created2017-09-03 18:53:33
last_update2017-09-03 18:53:33
depth2
children0
last_payout2017-09-10 18:53: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_length946
author_reputation-145,093,739,335
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,770,939
net_rshares-59,462,129,571
author_curate_reward""
vote details (1)
@full-steem-ahead · (edited)
Interesting meme to use in regard to EOS's disclaimer I'd say, but I like it for that reason! (since he isn't actually looking at her forward :)
👍  , , , , ,
properties (23)
authorfull-steem-ahead
permlinkre-kevinwong-re-eosio-the-dawn-of-eos-io-20170903t172015491z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:20:15
last_update2017-09-03 17:21:27
depth2
children1
last_payout2017-09-10 17:20: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_length144
author_reputation30,177,498,572,933
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,762,931
net_rshares4,825,155,365
author_curate_reward""
vote details (6)
@pinkdaddy ·
I'm sorry but your avatar kind of looks like a blue butt-hole.
👍  
properties (23)
authorpinkdaddy
permlinkre-full-steem-ahead-re-kevinwong-re-eosio-the-dawn-of-eos-io-20171202t051202937z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-02 05:12:06
last_update2017-12-02 05:12:06
depth3
children0
last_payout2017-12-09 05:12: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_length62
author_reputation777,963,022,149
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,152,319
net_rshares0
author_curate_reward""
vote details (1)
@mariachan ·
$0.04
lol hope u guys not miss your chance ;)  

https://media.tenor.com/images/85b177ff2f998903b976dbf69bfd337f/tenor.gif
👍  , , , , , , , , ,
properties (23)
authormariachan
permlinkre-kevinwong-re-eosio-the-dawn-of-eos-io-20170903t203533628z
categoryeos
json_metadata{"tags":["eos"],"image":["https://media.tenor.com/images/85b177ff2f998903b976dbf69bfd337f/tenor.gif"],"app":"steemit/0.1"}
created2017-09-03 20:41:27
last_update2017-09-03 20:41:27
depth2
children0
last_payout2017-09-10 20:41:27
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation8,034,608,246,109
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,779,241
net_rshares12,902,294,196
author_curate_reward""
vote details (10)
@nideo ·
$0.04
This made me laugh and explains it so well.  Thank you!
👍  ,
properties (23)
authornideo
permlinkre-kevinwong-re-eosio-the-dawn-of-eos-io-20170904t175807378z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 17:58:06
last_update2017-09-04 17:58:06
depth2
children0
last_payout2017-09-11 17:58:06
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation1,241,451,350,227
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,869,514
net_rshares11,468,587,359
author_curate_reward""
vote details (2)
@surfyogi ·
I agree, EOS, she's a real head turner, make your steady very upset...
👍  
properties (23)
authorsurfyogi
permlinkre-kevinwong-re-eosio-the-dawn-of-eos-io-20170910t004207582z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-10 00:42:06
last_update2017-09-10 00:42:06
depth2
children0
last_payout2017-09-17 00:42: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_length70
author_reputation31,155,045,810,316
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,406,790
net_rshares0
author_curate_reward""
vote details (1)
@vickyp22 ·
Lol :)
👍  
properties (23)
authorvickyp22
permlinkre-kevinwong-re-eosio-the-dawn-of-eos-io-20170905t144712959z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 14:47:12
last_update2017-09-05 14:47:12
depth2
children0
last_payout2017-09-12 14:47: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_length6
author_reputation26,485,281,032
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,954,369
net_rshares0
author_curate_reward""
vote details (1)
@kingg ·
EOS is a game changer. ETH does not stand a chance from all the homework I have done on EOS.
properties (22)
authorkingg
permlinkre-eosio-the-dawn-of-eos-io-20170904t213125196z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 21:31:33
last_update2017-09-04 21:31:33
depth1
children0
last_payout2017-09-11 21:31: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_length92
author_reputation184,714,408,524
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,886,306
net_rshares0
@kovilvns ·
Great post Thanks for sharing
👎  ,
properties (23)
authorkovilvns
permlinkre-eosio-the-dawn-of-eos-io-20170903t044140118z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 04:41:39
last_update2017-09-03 04:41:39
depth1
children0
last_payout2017-09-10 04:41: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_length29
author_reputation-1,954,727,955,537
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,709,456
net_rshares-130,528,165,077,556
author_curate_reward""
vote details (2)
@kranoras ·
Nice to hear! If im back at home i will difinitely take a look at the whitepaper.

I was not sure if eos would be legit
properties (22)
authorkranoras
permlinkre-eosio-201793t2209191z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-03 20:00:45
last_update2017-09-03 20:00:45
depth1
children0
last_payout2017-09-10 20:00: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_reputation4,638,780,885,266
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,776,139
net_rshares0
@kurencja.com ·
wow:) http://bit.ly/2jeOM8V
👍  
properties (23)
authorkurencja.com
permlinkre-eosio-the-dawn-of-eos-io-20170906t191409672z
categoryeos
json_metadata{"tags":["eos"],"links":["http://bit.ly/2jeOM8V"],"app":"steemit/0.1"}
created2017-09-06 19:14:09
last_update2017-09-06 19:14:09
depth1
children0
last_payout2017-09-13 19:14: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_length27
author_reputation2,747,334,470
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,079,928
net_rshares1,160,638,588
author_curate_reward""
vote details (1)
@kurencja.com ·
Is anyone able to explain the EOS price behavior (http://bit.ly/2jeOM8V) in face of such good news regarding it? Thanks
👍  
properties (23)
authorkurencja.com
permlinkre-eosio-the-dawn-of-eos-io-20170907t080554513z
categoryeos
json_metadata{"tags":["eos"],"links":["http://bit.ly/2jeOM8V"],"app":"steemit/0.1"}
created2017-09-07 08:05:54
last_update2017-09-07 08:05:54
depth1
children0
last_payout2017-09-14 08:05: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_length119
author_reputation2,747,334,470
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,126,869
net_rshares1,149,032,202
author_curate_reward""
vote details (1)
@kurencja.com ·
Final countdown? ;) https://twitter.com/Converteacom/status/905722626798215168
properties (22)
authorkurencja.com
permlinkre-eosio-the-dawn-of-eos-io-20170907t092224789z
categoryeos
json_metadata{"tags":["eos"],"links":["https://twitter.com/Converteacom/status/905722626798215168"],"app":"steemit/0.1"}
created2017-09-07 09:22:24
last_update2017-09-07 09:22:24
depth1
children1
last_payout2017-09-14 09:22: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_length78
author_reputation2,747,334,470
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,131,893
net_rshares0
@twitterbot ·
### ![Converteacom](https://pbs.twimg.com/profile_images/601367815925399553/LFKEMJDA_normal.png) **[Convertea](https://twitter.com/@Converteacom/status/905722626798215168)** tweeted @ 07 Sep 2017 - 09:21 UTC

> Very crucial time for [#EOS](https://twitter.com/search?q=%23EOS) [#crypto](https://twitter.com/search?q=%23crypto) @EOS_io. Will the price explode or fall down? All should be clear till 13.00 UTC… [twitter.com/i/web/status/9…](https://t.co/fYXIVBXTK8)


###### *Disclaimer: I am just a bot trying to be helpful.*
properties (22)
authortwitterbot
permlinkre-re-eosio-the-dawn-of-eos-io-20170907t092224789z-20170907t092316
categoryeos
json_metadata""
created2017-09-07 09:23:18
last_update2017-09-07 09:23:18
depth2
children0
last_payout2017-09-14 09:23: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_length524
author_reputation2,792,128,643,772
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,131,961
net_rshares0
@leoplaw ·
$0.03
I very much like the part about EOS.IO Storage! =)
👍  , , , ,
properties (23)
authorleoplaw
permlinkre-eosio-the-dawn-of-eos-io-20170903t051233614z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:12:06
last_update2017-09-03 05:12:06
depth1
children0
last_payout2017-09-10 05:12:06
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation189,628,210,789,149
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,711,045
net_rshares8,139,095,686
author_curate_reward""
vote details (5)
@liveyourlife ·
Decentralized youtube...so everything you post can not be removed. Does that mean there will be adult videos on youtube that can not be removed. So children can watch it instead of Dora the explorer?
properties (22)
authorliveyourlife
permlinkre-eosio-the-dawn-of-eos-io-20170911t162413293z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-11 16:24:12
last_update2017-09-11 16:24:12
depth1
children0
last_payout2017-09-18 16:24: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_length199
author_reputation54,135,646
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,571,404
net_rshares0
@loum ·
Good info.
properties (22)
authorloum
permlinkre-eosio-the-dawn-of-eos-io-20170905t033921315z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 03:39:27
last_update2017-09-05 03:39:27
depth1
children0
last_payout2017-09-12 03:39: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_length10
author_reputation6,704,515,659,183
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,908,367
net_rshares0
@lukecooper ·
Exciting times ahead :).
properties (22)
authorlukecooper
permlinkre-eosio-the-dawn-of-eos-io-201796t202444658z
categoryeos
json_metadata{"app":"eostalk/0.3","format":"markdown+html","tags":[]}
created2017-09-06 19:24:45
last_update2017-09-06 19:24:45
depth1
children0
last_payout2017-09-13 19:24: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_length24
author_reputation343,504,245
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountchainbb
weight200
1.
accounteostalk
weight1,300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,080,702
net_rshares0
@lukestokes ·
$0.04
Really exciting update! Thank you so much. I got to the stage of compiling the system and was compiling some contracts a while back but got distracted by other things. With all these updates, I'm excited to jump back into it and play around some more.
👍  
properties (23)
authorlukestokes
permlinkre-eosio-the-dawn-of-eos-io-20170903t153309380z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 15:33:09
last_update2017-09-03 15:33:09
depth1
children0
last_payout2017-09-10 15:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length251
author_reputation556,640,380,599,219
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,753,345
net_rshares10,882,159,511
author_curate_reward""
vote details (1)
@lynda-j-leonard ·
Thanks much for this detailed info on EOS. Trying to keep up and learn all this blockchain/cryto world stuff makes my head explode sometimes. This was well written and understandable, again thanks. ~ljl~
properties (22)
authorlynda-j-leonard
permlinkre-eosio-the-dawn-of-eos-io-20171130t194307136z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-11-30 19:43:06
last_update2017-11-30 19:43:06
depth1
children0
last_payout2017-12-07 19:43: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_length203
author_reputation2,050,361,390,392
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,023,913
net_rshares0
@mabeeski ·
Very interesting stuff.
properties (22)
authormabeeski
permlinkre-eosio-the-dawn-of-eos-io-20170904t112227616z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 11:22:30
last_update2017-09-04 11:22:30
depth1
children0
last_payout2017-09-11 11:22: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_length23
author_reputation3,217,672,304
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,835,602
net_rshares0
@madarenjoy ·
a great post @eosio
properties (22)
authormadarenjoy
permlinkre-eosio-201797t205829558z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-07 12:58:39
last_update2017-09-07 12:58:39
depth1
children0
last_payout2017-09-14 12:58: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_length19
author_reputation176,094,141,584
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,147,836
net_rshares0
@mannyfig1956 ·
This post was very informative thank you for sharing 
you have my upvote 
Keep smiling, reading, writing and voting!!!
@mannyfig1956
👍  ,
properties (23)
authormannyfig1956
permlinkre-eosio-the-dawn-of-eos-io-20170903t061514882z
categoryeos
json_metadata{"tags":["eos"],"users":["mannyfig1956"],"app":"steemit/0.1"}
created2017-09-03 06:15:18
last_update2017-09-03 06:15:18
depth1
children0
last_payout2017-09-10 06:15: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_length132
author_reputation1,633,946,152,508
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,714,590
net_rshares2,979,817,044
author_curate_reward""
vote details (2)
@marco-delsalto ·
$3.03
properties (23)
authormarco-delsalto
permlinkre-eosio-the-dawn-of-eos-io-20170906t032701598z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 03:27:03
last_update2017-09-06 03:27:03
depth1
children0
last_payout2017-09-13 03:27:03
cashout_time1969-12-31 23:59:59
total_payout_value3.023 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation7,350,812,533,370
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,009,536
net_rshares903,539,355,504
author_curate_reward""
vote details (12)
@mariuslotriet ·
Thanks for posting!
properties (22)
authormariuslotriet
permlinkre-eosio-the-dawn-of-eos-io-20170905t095905090z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 09:59:03
last_update2017-09-05 09:59:03
depth1
children0
last_payout2017-09-12 09:59: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_length19
author_reputation122,124,097,434
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,931,670
net_rshares0
@matt-a ·
The graphene ecosystem is on a 24/7 IV drip of the meanest steroids known to the universe!

*Excitement ensues.*
properties (22)
authormatt-a
permlinkre-eosio-the-dawn-of-eos-io-20170903t100804925z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 10:08:09
last_update2017-09-03 10:08:09
depth1
children0
last_payout2017-09-10 10:08: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_length112
author_reputation34,621,295,577,150
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,728,254
net_rshares0
@max-infeld ·
$0.02
Keep up the great work! Looking forward to seeing more developments!
👍  
properties (23)
authormax-infeld
permlinkre-eosio-the-dawn-of-eos-io-20170903t231002274z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 23:10:06
last_update2017-09-03 23:10:06
depth1
children0
last_payout2017-09-10 23:10:06
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation2,039,194,374,573
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,789,622
net_rshares6,682,024,631
author_curate_reward""
vote details (1)
@mericanhomestead ·
Holding Long on Eos.  I have no doubt that the people behind this technology are brilliant!
properties (22)
authormericanhomestead
permlinkre-eosio-the-dawn-of-eos-io-20170905t121532986z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 12:15:33
last_update2017-09-05 12:15:33
depth1
children0
last_payout2017-09-12 12:15:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation34,524,540,906,491
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,940,997
net_rshares0
@meurahpasee ·
Interesting information, thanks for sharing, regards
properties (22)
authormeurahpasee
permlinkre-eosio-the-dawn-of-eos-io-20170903t054340878z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:43:33
last_update2017-09-03 05:43:33
depth1
children0
last_payout2017-09-10 05: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_length52
author_reputation7,314,233,007
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,712,883
net_rshares0
@mouach ·
This is awesome @eosio I'm glad you rekt him here.

I actually had a similar issue happen to me not too long ago with a few people doing the exact same types of things, DMing new users, poaching, harassing, etc.

Nothing is more frustrating than seeing someone try to take short-cuts, and abuse a community you have spent a ton of blood sweat and tears building and nurturing.

Props to you, keep rocking hard man!
properties (22)
authormouach
permlinkre-eosio-the-dawn-of-eos-io-20170903t112627828z
categoryeos
json_metadata{"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"}
created2017-09-03 11:26:27
last_update2017-09-03 11:26:27
depth1
children0
last_payout2017-09-10 11:26: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_length414
author_reputation-142,771,181,115
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,733,381
net_rshares0
@movietrailar ·
What an absolute cunt. Just trying to give you a bad name so he can benefit for himself. I agree it is wrong that you are doing all the work and it definitely is fair for you getting a cut for providing him free traffic and a place to advertise.
👍  ,
properties (23)
authormovietrailar
permlinkre-eosio-the-dawn-of-eos-io-20170903t113123949z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 11:31:27
last_update2017-09-03 11:31:27
depth1
children1
last_payout2017-09-10 11:31: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_length245
author_reputation104,200,158,033
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,733,694
net_rshares3,252,706,852
author_curate_reward""
vote details (2)
@full-steem-ahead ·
Who are you referring to?
properties (22)
authorfull-steem-ahead
permlinkre-movietrailar-re-eosio-the-dawn-of-eos-io-20170903t172925301z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:29:24
last_update2017-09-03 17:29:24
depth2
children0
last_payout2017-09-10 17:29: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_length25
author_reputation30,177,498,572,933
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,763,738
net_rshares0
@mrlemmer11 ·
If this is your first time being introduced to Eos, i highly recommend watching this video. It lends so much credibility and legitimacy to everything you just read, in addition to making it slightly easier to comprehend. 

https://youtu.be/MUZWZj1pu94
👍  ,
👎  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authormrlemmer11
permlinkre-eosio-the-dawn-of-eos-io-20170903t054424270z
categoryeos
json_metadata{"tags":["eos"],"image":["https://img.youtube.com/vi/MUZWZj1pu94/0.jpg"],"links":["https://youtu.be/MUZWZj1pu94"],"app":"steemit/0.1"}
created2017-09-03 05:44:24
last_update2017-09-03 05:44:24
depth1
children13
last_payout2017-09-10 05:44:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length251
author_reputation1,435,844,972,284
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,712,928
net_rshares-1,145,647,221,080
author_curate_reward""
vote details (54)
@ibringawareness ·
$0.02
15 min in so far. Very good, thanks for posting.
👍  
properties (23)
authoribringawareness
permlinkre-mrlemmer11-re-eosio-the-dawn-of-eos-io-20170903t063214121z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:32:21
last_update2017-09-03 06:32:21
depth2
children12
last_payout2017-09-10 06:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation18,353,960,014,817
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,715,584
net_rshares5,242,896,676
author_curate_reward""
vote details (1)
@mrlemmer11 · (edited)
$0.16
No problem at all. With so many new ICOs coming out everyday, one gets immune to 'the next big thing.' I have been scouring for days trying to find a couple upcoming purposeful projects which will do good for crypto, the blockchain, and my pocket! But almost everything feels scammy. I read through this post by @eosio and felt pretty excited and immediately headed to their site. Found the video and see that they are in ICO currently with EOS avaliable now on secondary markets as well. Being from the US, i can not partake in the ICO, but i have already purchased on the secondary and will continue to do so. Cheers!
👍  , , ,
properties (23)
authormrlemmer11
permlinkre-ibringawareness-re-mrlemmer11-re-eosio-the-dawn-of-eos-io-20170903t071222893z
categoryeos
json_metadata{"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"}
created2017-09-03 07:12:24
last_update2017-09-03 07:12:48
depth3
children11
last_payout2017-09-10 07:12:24
cashout_time1969-12-31 23:59:59
total_payout_value0.142 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length619
author_reputation1,435,844,972,284
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,717,921
net_rshares42,157,298,804
author_curate_reward""
vote details (4)
@mysteir ·
Will EOS pay token holders a dividend down the line?
properties (22)
authormysteir
permlinkre-eosio-the-dawn-of-eos-io-20170906t080256741z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 08:02:57
last_update2017-09-06 08:02:57
depth1
children0
last_payout2017-09-13 08:02: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_length52
author_reputation4,487,920,692
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,026,633
net_rshares0
@nadaceh ·
thanks for the information, this is very useful for me
properties (22)
authornadaceh
permlinkre-eosio-the-dawn-of-eos-io-20170904t085308966z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 08:53:18
last_update2017-09-04 08:53:18
depth1
children0
last_payout2017-09-11 08:53:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation40,111,444,632
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,825,563
net_rshares0
@nicholas1983 ·
I must say a very good job to the entire EOS team! I was on the fence where EOS is concerned, but now that you have released your MVP before the schedule gave me confidence that EOS is truly going to deliver what many saw way before many of us did. You guys are on point and it is obvious that you will deliver. Now I have moved off the fence and now I am in the middle of the arena. I see exciting things ahead. BIG ups to EOS.
👍  
properties (23)
authornicholas1983
permlinkre-eosio-the-dawn-of-eos-io-20170903t083643480z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 08:36:42
last_update2017-09-03 08:36:42
depth1
children0
last_payout2017-09-10 08:36: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_length428
author_reputation678,448,408,817
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,722,870
net_rshares2,148,260,949
author_curate_reward""
vote details (1)
@nideo ·
$0.04
This is incredible and it has such huge implications for streaming industries like Netflix and video game companies.

Good work guys!
👍  
properties (23)
authornideo
permlinkre-eosio-the-dawn-of-eos-io-20170904t175737315z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 17:57:36
last_update2017-09-04 17:57:36
depth1
children0
last_payout2017-09-11 17:57:36
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation1,241,451,350,227
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,869,458
net_rshares11,778,549,180
author_curate_reward""
vote details (1)
@nueza ·
EOS.IO Storage! Nice move.
properties (22)
authornueza
permlinkre-eosio-the-dawn-of-eos-io-20170905t172101369z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 17:21:03
last_update2017-09-05 17:21:03
depth1
children0
last_payout2017-09-12 17:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation7,391,982,906
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,968,228
net_rshares0
@padmakshi ·
Great to hear about eos!
👍  ,
properties (23)
authorpadmakshi
permlinkre-eosio-the-dawn-of-eos-io-20170903t060417888z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:04:21
last_update2017-09-03 06:04:21
depth1
children0
last_payout2017-09-10 06:04: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_length24
author_reputation1,095,407,523,576
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,714,060
net_rshares2,379,121,735
author_curate_reward""
vote details (2)
@piranha ·
But what's the use and value of the EOS token if it's not used on the EOS network and just an ETH ERC20 token?..
properties (22)
authorpiranha
permlinkre-eosio-the-dawn-of-eos-io-20170904t174856400z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 17:49:00
last_update2017-09-04 17:49:00
depth1
children0
last_payout2017-09-11 17:49: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_length112
author_reputation11,479,562,224
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,868,670
net_rshares0
@prakashghai · (edited)
Excellent

This is great news..

EOS can now fight it out with Big Centralized Companies...

I only wish buying into the ICO was simpler...so even the not so technical people could participate.

**Like if it was available on Blocktrades.us as a simple swap for Steem or SBD or Litecoin/Bitcoin**
properties (22)
authorprakashghai
permlinkre-eosio-the-dawn-of-eos-io-20170903t134457234z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 13:45:00
last_update2017-09-03 13:46:12
depth1
children4
last_payout2017-09-10 13:45: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_length295
author_reputation20,465,565,974,840
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,743,775
net_rshares0
@full-steem-ahead ·
$0.06
You could use blocktrades buy DASH with steem or SBD then shapeshift DASH to EOS. Check out the Exodus wallet that has shapeshift, DASH and EOS natively.
👍  , ,
properties (23)
authorfull-steem-ahead
permlinkre-prakashghai-re-eosio-the-dawn-of-eos-io-20170903t174053245z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:40:54
last_update2017-09-03 17:40:54
depth2
children2
last_payout2017-09-10 17:40:54
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation30,177,498,572,933
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,764,724
net_rshares16,199,829,149
author_curate_reward""
vote details (3)
@prakashghai ·
not too sure about that
properties (22)
authorprakashghai
permlinkre-full-steem-ahead-re-prakashghai-re-eosio-the-dawn-of-eos-io-20170903t183819212z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 18:38:21
last_update2017-09-03 18:38:21
depth3
children0
last_payout2017-09-10 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_length23
author_reputation20,465,565,974,840
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,769,563
net_rshares0
@tbnfl4sun ·
I give the Exodus wallet a big thumbs up!
properties (22)
authortbnfl4sun
permlinkre-full-steem-ahead-re-prakashghai-re-eosio-the-dawn-of-eos-io-20170904t134722489z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 13:47:21
last_update2017-09-04 13:47:21
depth3
children0
last_payout2017-09-11 13:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation109,775,864,993,253
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,847,070
net_rshares0
@surfyogi ·
$0.08
I agree @blocktrades, what about it?
👍  
properties (23)
authorsurfyogi
permlinkre-prakashghai-re-eosio-the-dawn-of-eos-io-20170910t005500351z
categoryeos
json_metadata{"tags":["eos"],"users":["blocktrades"],"app":"steemit/0.1"}
created2017-09-10 00:55:00
last_update2017-09-10 00:55:00
depth2
children0
last_payout2017-09-17 00:55:00
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation31,155,045,810,316
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,407,504
net_rshares29,775,645,339
author_curate_reward""
vote details (1)
@prameshtyagi ·
good info. We will keep track how it progresses
👍  ,
properties (23)
authorprameshtyagi
permlinkre-eosio-the-dawn-of-eos-io-20170903t051509633z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:15:09
last_update2017-09-03 05:15:09
depth1
children0
last_payout2017-09-10 05:15:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation133,698,299,152,872
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,711,224
net_rshares1,976,486,633
author_curate_reward""
vote details (2)
@randomatrix ·
$0.43
EOS - here we come.. I am ready!
👍  ,
properties (23)
authorrandomatrix
permlinkre-eosio-the-dawn-of-eos-io-20170904t165022598z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 16:50:21
last_update2017-09-04 16:50:21
depth1
children0
last_payout2017-09-11 16:50:21
cashout_time1969-12-31 23:59:59
total_payout_value0.368 HBD
curator_payout_value0.064 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation78,549,177,039
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,863,648
net_rshares125,766,842,818
author_curate_reward""
vote details (2)
@rebeccaryan ·
This is very exciting!!! I see EOS as the Ferrari of blockchain technology. I can't wait to see applications built on EOS, racing on the crypto-track.
properties (22)
authorrebeccaryan
permlinkre-eosio-the-dawn-of-eos-io-20170903t115955586z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 11:59:54
last_update2017-09-03 11:59:54
depth1
children0
last_payout2017-09-10 11:59: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_length150
author_reputation77,990,144,956,239
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,735,567
net_rshares0
@richard10 ·
Thanks for the post looks good but what is the price that can reach in a year? 30$ maximum?
properties (22)
authorrichard10
permlinkre-eosio-the-dawn-of-eos-io-20170904t051730341z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 05:17:30
last_update2017-09-04 05:17:30
depth1
children0
last_payout2017-09-11 05:17: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_length91
author_reputation0
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,811,656
net_rshares0
@robochunks ·
Thanks for the update! Very exciting :)
properties (22)
authorrobochunks
permlinkre-eosio-the-dawn-of-eos-io-20170906t145624491z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 14:56:36
last_update2017-09-06 14:56:36
depth1
children0
last_payout2017-09-13 14:56: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_length39
author_reputation811,499,002
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,057,660
net_rshares0
@rogermarx ·
I hope that EOS is truly Blockchain 2.0 and ends up being very successful. I hope one EOS is worth $10 by Q1 2018 and then $100 by July 2018 :)
properties (22)
authorrogermarx
permlinkre-eosio-the-dawn-of-eos-io-20170904t103129913z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 10:31:39
last_update2017-09-04 10:31:39
depth1
children0
last_payout2017-09-11 10:31: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_length143
author_reputation37,785,425,082
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,831,838
net_rshares0
@ronmamita ·
Hi @eosio , thank you for informing us about EOS.
I'm resteeming!
properties (22)
authorronmamita
permlinkre-eosio-the-dawn-of-eos-io-20170904t063209974z
categoryeos
json_metadata{"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"}
created2017-09-04 06:32:09
last_update2017-09-04 06:32:09
depth1
children0
last_payout2017-09-11 06:32: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_length65
author_reputation770,066,160,449
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,816,296
net_rshares0
@roshanlal2017 ·
congrats to dan, this is a post very intesting and coming time again and again intesting the post.
👍  
properties (23)
authorroshanlal2017
permlinkre-eosio-the-dawn-of-eos-io-20170903t064233837z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:42:36
last_update2017-09-03 06:42:36
depth1
children1
last_payout2017-09-10 06:42:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation37,213,845,809
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,716,238
net_rshares1,906,203,377
author_curate_reward""
vote details (1)
@jamesahancock ·
one of the biggest scams I have ever seen!
👎  , ,
properties (23)
authorjamesahancock
permlinkre-roshanlal2017-re-eosio-the-dawn-of-eos-io-20170903t071345061z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 07:13:45
last_update2017-09-03 07:13:45
depth2
children0
last_payout2017-09-10 07:13:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation-20,327,431,421
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,717,999
net_rshares-1,328,557,709,827
author_curate_reward""
vote details (3)
@rubenalexander ·
<blockquote>In addition to computational bandwidth, native EOS.IO software-based blockchain token holders will now have access to free cloud storage, hosting, and download bandwidth via IPFS / HTTPS; this access can be used without consuming or transferring tokens.
</blockquote>

EOS storage sounds incredible!!! Could this storage also be rented out?
properties (22)
authorrubenalexander
permlinkre-eosio-the-dawn-of-eos-io-20170904t003410331z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 00:34:09
last_update2017-09-04 00:34:09
depth1
children0
last_payout2017-09-11 00:34: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_length352
author_reputation104,366,547,780,590
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,794,500
net_rshares0
@ryanreynolds ·
Hi @dan, I see you flagged my post.  Apologies you thought there was plagiarism as I thought I gave enough credit in my post to EOS.  I received the update via email and wanted to share it with everyone.  In fact if you look at my posts EOS is just about all I promote as I believe in it 100%.  Was I not allowed to use the image or should I have given the image credit separately to the content even though they came from the same source?  In hindsight, even though I received the content via email should I then have gone to search for the content on steemit and resteem instead?  No harm intended in my post, just wanted to spread the good news.   I am a big fan of yours and constantly replying to those spreading the "EOS is a scam, have you read the terms and conditions" rubbish regarding the tokens on Ethereum.  I will continue to buy EOS and spread news regarding EOS, didn't realize my post wasn't correctly published and thought I gave the credit correctly.  Apologies, it won't happen again.
properties (22)
authorryanreynolds
permlinkre-eosio-the-dawn-of-eos-io-20170904t073539536z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-09-04 07:35:42
last_update2017-09-04 07:35:42
depth1
children0
last_payout2017-09-11 07:35: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_length1,004
author_reputation290,615,663,292
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,820,478
net_rshares0
@ryanreynolds ·
Hi @dan, just resteemed this post instead. Apologies again.
properties (22)
authorryanreynolds
permlinkre-eosio-the-dawn-of-eos-io-20170904t084306639z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-09-04 08:43:09
last_update2017-09-04 08:43:09
depth1
children0
last_payout2017-09-11 08:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation290,615,663,292
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,824,895
net_rshares0
@saeedshaikh ·
your post is very nice, full pack of knowledge and very attractive :-)
properties (22)
authorsaeedshaikh
permlinkre-eosio-the-dawn-of-eos-io-20170903t050534042z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:05:36
last_update2017-09-03 05:05:36
depth1
children0
last_payout2017-09-10 05:05: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_length70
author_reputation95,404,093,559
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,710,705
net_rshares0
@saeedshaikh ·
your post is very nice, full pack of knowledge and very attractive...
i am new here bro plz come see my blog and upvote me if you like :-)
properties (22)
authorsaeedshaikh
permlinkre-eosio-the-dawn-of-eos-io-20170905t220522800z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 22:05:24
last_update2017-09-05 22:05:24
depth1
children0
last_payout2017-09-12 22:05: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_length138
author_reputation95,404,093,559
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,989,689
net_rshares0
@saifulrahmad ·
this is top post,,, i like blog steemit,, good job friend
👎  ,
properties (23)
authorsaifulrahmad
permlinkre-eosio-201793t115426436z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-03 04:54:36
last_update2017-09-03 04:54:36
depth1
children0
last_payout2017-09-10 04:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation1,795,905,708,572
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,710,160
net_rshares-1,325,210,550,472
author_curate_reward""
vote details (2)
@sandrina.life ·
Well, congrats for it! I am just sorry you have been so badly flagged. I guess people work hard and others get jealous!
properties (22)
authorsandrina.life
permlinkre-eosio-the-dawn-of-eos-io-20170905t041420141z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 04:14:18
last_update2017-09-05 04:14:18
depth1
children0
last_payout2017-09-12 04:14:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation5,534,287,837,956
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,910,352
net_rshares0
@selly ·
Through ‘ github ’, I am watching your hard work record everyday. You guys worked really hard. works on weekends.
👍  ,
properties (23)
authorselly
permlinkre-eosio-the-dawn-of-eos-io-20170903t054739996z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:47:21
last_update2017-09-03 05:47:21
depth1
children0
last_payout2017-09-10 05:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation380,842,516,318
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,713,090
net_rshares2,430,344,580
author_curate_reward""
vote details (2)
@seveaux ·
whoever doesn't buy now will regret it in july 2018... I recommend to get a EOS wallet and private key first... don't know where to find, I got it via a link here but you need one in july to claim your EOS on the EOS platform since the PCR20 Etherium is basically holding no value only the value EOS will be in the future when the blockchain is released.. with the price down now, it's a bargain
properties (22)
authorseveaux
permlinkre-eosio-the-dawn-of-eos-io-20170906t144559281z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-06 14:45:51
last_update2017-09-06 14:45:51
depth1
children0
last_payout2017-09-13 14:45:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length395
author_reputation8,844,643,038,229
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,056,714
net_rshares0
@shaungerow ·
Time to buy?
properties (22)
authorshaungerow
permlinkre-eosio-the-dawn-of-eos-io-20170903t142458406z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 14:24:57
last_update2017-09-03 14:24:57
depth1
children2
last_payout2017-09-10 14:24: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_length12
author_reputation38,418,257,529,459
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,747,230
net_rshares0
@veliton77 ·
Definitely yes 👍🏻
👍  
properties (23)
authorveliton77
permlinkre-shaungerow-201793t2149715z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-09-03 19:04:12
last_update2017-09-03 19:04:12
depth2
children1
last_payout2017-09-10 19:04:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation262,732,651,259
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,771,794
net_rshares128,208,095
author_curate_reward""
vote details (1)
@shaungerow ·
I'm in!
👍  
properties (23)
authorshaungerow
permlinkre-veliton77-re-shaungerow-201793t2149715z-20170903t221056348z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 22:10:57
last_update2017-09-03 22:10:57
depth3
children0
last_payout2017-09-10 22:10: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_length7
author_reputation38,418,257,529,459
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,785,748
net_rshares1,422,468,738
author_curate_reward""
vote details (1)
@simoncase ·
I'm super pumped on __EOS__ and have been educating people on how to register them on heaps of FB groups etc. 

I'm amazed at how many people are _excited_ about the project but have absolutely no idea that they have to register the tokens...

Then there are droves of uninformed, apparently illiterate people claiming they've read everything there is to read on __EOS__ and their assessment is __EOS__ is a _scam coin_.

I'm so sure this is going to change the world, I've assisted most of my family and friends in making their first ever crypto purchase. I'm proud to say that every one of them have bought __EOS__ as their first crypto investment :-) 

I look forward to seeing the look on their faces when I show them what __EOS__ is worth come Dec 2018 and beyond!
properties (22)
authorsimoncase
permlinkre-eosio-the-dawn-of-eos-io-20170904t024203084z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 02:42:00
last_update2017-09-04 02:42:00
depth1
children0
last_payout2017-09-11 02:42: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_length769
author_reputation93,682,296,200
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,802,026
net_rshares0
@skyeg3 ·
Dan Larimer
properties (22)
authorskyeg3
permlinkre-eosio-the-dawn-of-eos-io-20170903t064340507z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:43:39
last_update2017-09-03 06:43:39
depth1
children0
last_payout2017-09-10 06:43: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_length11
author_reputation948,208,874
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,716,302
net_rshares0
@songminer ·
Life! Liberty! Property!
properties (22)
authorsongminer
permlinkre-eosio-the-dawn-of-eos-io-20170912t131828928z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-12 13:15:45
last_update2017-09-12 13:15:45
depth1
children0
last_payout2017-09-19 13:15: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_length24
author_reputation60,948,446,901
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,657,363
net_rshares0
@stealthtrader ·
Exciting times!!
Will Steemit be able to use EOS to host something like dtube or even like a SteemTube?
properties (22)
authorstealthtrader
permlinkre-eosio-the-dawn-of-eos-io-20170903t072403948z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 07:24:03
last_update2017-09-03 07:24:03
depth1
children0
last_payout2017-09-10 07:24: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_reputation74,266,337,461,760
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,718,645
net_rshares0
@surfyogi ·
$7.51
I thought it was interesting; Dan made it pretty clear in his last video interview I saw, he expects EOS will eventually power wallstreet.

Very interesting... he may very well be right; they will be interested in Fabric...
👍  , , , , ,
properties (23)
authorsurfyogi
permlinkre-eosio-the-dawn-of-eos-io-20170910t003301141z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-10 00:33:00
last_update2017-09-10 00:33:00
depth1
children3
last_payout2017-09-17 00:33:00
cashout_time1969-12-31 23:59:59
total_payout_value7.484 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length223
author_reputation31,155,045,810,316
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,406,280
net_rshares2,683,196,621,252
author_curate_reward""
vote details (6)
@newsandviews ·
$0.69
You may or may not find this revealing, but here goes..

I find it more than interesting that EOS has just released an SDK called "Dawn." The reason I find this interesting is the Eos was a Titan and the Greek goddess of the Dawn. Eos is also known traditionally as the "Harbinger of Lucifer" and that's why the name of Lucifer in Greek is "Eos-phoros."

If you'd like to understand a bit more about this then you should have a read of my recent post on EOS and all the strange, Luciferic symbolism associated with it.

https://steemitimages.com/DQmWLxTet2fA7keAuPHnz67W63x9HnbazE8Nk5VxxosjjM3/eos-new-blog.png

The link to [my post on EOS symbolism is here.](https://steemit.com/life/@newsandviews/cryptocurrency-luciferian-symbolism-part-5-eos-greek-goddess-of-the-dawn-and-harbinger-of-lucifer)
👍  , , , , , ,
properties (23)
authornewsandviews
permlinkre-surfyogi-re-eosio-the-dawn-of-eos-io-20170915t210939035z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmWLxTet2fA7keAuPHnz67W63x9HnbazE8Nk5VxxosjjM3/eos-new-blog.png"],"links":["https://steemit.com/life/@newsandviews/cryptocurrency-luciferian-symbolism-part-5-eos-greek-goddess-of-the-dawn-and-harbinger-of-lucifer"],"app":"steemit/0.1"}
created2017-09-15 21:09:30
last_update2017-09-15 21:09:30
depth2
children2
last_payout2017-09-22 21:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.516 HBD
curator_payout_value0.170 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length797
author_reputation3,103,741,266,799
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,002,609
net_rshares256,455,649,360
author_curate_reward""
vote details (7)
@rufussed ·
Lucifer invites you to take a byte of the apple hanging on the Merkle tree end enter the space of knowledge...
👍  , ,
properties (23)
authorrufussed
permlinkre-newsandviews-re-surfyogi-re-eosio-the-dawn-of-eos-io-20170927t134313920z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-27 13:43:15
last_update2017-09-27 13:43:15
depth3
children1
last_payout2017-10-04 13:43: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_length110
author_reputation6,482,061,007
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,084,074
net_rshares4,601,976,789
author_curate_reward""
vote details (3)
@syt ·
Be interesting in it!!! Expect!!
properties (22)
authorsyt
permlinkre-eosio-the-dawn-of-eos-io-20170903t102029888z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 10:20:30
last_update2017-09-03 10:20:30
depth1
children0
last_payout2017-09-10 10:20: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_length32
author_reputation321,997,465,326
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,729,035
net_rshares0
@tanayjain1 ·
i have one question for you guys.what is more important for you money or time. think about it
👍  , ,
properties (23)
authortanayjain1
permlinkre-eosio-the-dawn-of-eos-io-20170903t085540770z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 08:55:42
last_update2017-09-03 08:55:42
depth1
children1
last_payout2017-09-10 08:55: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_length93
author_reputation14,506,100,767
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,723,919
net_rshares4,620,230,031
author_curate_reward""
vote details (3)
@full-steem-ahead ·
I suspect the answer is time, as Block1 has plenty of capital.
👍  
properties (23)
authorfull-steem-ahead
permlinkre-tanayjain1-re-eosio-the-dawn-of-eos-io-20170903t172737073z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:27:36
last_update2017-09-03 17:27:36
depth2
children0
last_payout2017-09-10 17:27: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_length62
author_reputation30,177,498,572,933
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,763,561
net_rshares619,093,249
author_curate_reward""
vote details (1)
@thegoliath ·
EOS is definitely something I have looked into getting and may still do so when I have the money for it. Will continue to watch, thank you for sharing this with us though!
properties (22)
authorthegoliath
permlinkre-eosio-the-dawn-of-eos-io-20170903t112352137z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 11:23:51
last_update2017-09-03 11:23:51
depth1
children0
last_payout2017-09-10 11:23: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_length171
author_reputation253,019,388,123,904
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,733,208
net_rshares0
@thenomadictales · (edited)
Winter is xoming
properties (22)
authorthenomadictales
permlinkre-eosio-201799t203344599z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-09 15:03:48
last_update2017-09-09 17:00:51
depth1
children0
last_payout2017-09-16 15:03: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_length16
author_reputation3,117,654,789,376
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,364,491
net_rshares0
@titusfrost ·
$0.95
I have been looking forward to this since I heard about it. I will cover this article on my YouTube channel next livestream. Peace.
👍  
properties (23)
authortitusfrost
permlinkre-eosio-the-dawn-of-eos-io-20170903t134010796z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 13:40:12
last_update2017-09-03 13:40:12
depth1
children0
last_payout2017-09-10 13:40:12
cashout_time1969-12-31 23:59:59
total_payout_value0.712 HBD
curator_payout_value0.236 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation648,917,868,874,417
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,743,399
net_rshares255,623,224,218
author_curate_reward""
vote details (1)
@tochukwumadubuko ·
grand post
👍  ,
properties (23)
authortochukwumadubuko
permlinkre-eosio-the-dawn-of-eos-io-20170903t202535137z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 20:25:30
last_update2017-09-03 20:25:30
depth1
children0
last_payout2017-09-10 20:25:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation-504,587,213,282
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,778,128
net_rshares590,427,903
author_curate_reward""
vote details (2)
@ttopswag ·
I am still missing out in this. I have tried reading it over ten times. Maybe I might missing something
properties (22)
authorttopswag
permlinkre-eosio-201794t21558654z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-04 01:16:03
last_update2017-09-04 01:16:03
depth1
children0
last_payout2017-09-11 01:16:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation13,711,498,513,931
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,796,809
net_rshares0
@tunnelrat ·
Ahead of schedule! Nice.

Take your time though, gotta respect that long-term ICO and what it means for both the confidence of the development team and the long-term usability of the platform.
properties (22)
authortunnelrat
permlinkre-eosio-the-dawn-of-eos-io-20170904t175114709z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 17:52:39
last_update2017-09-04 17:52:39
depth1
children0
last_payout2017-09-11 17:52: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_length192
author_reputation613,567,205,601
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,869,022
net_rshares0
@turmericrob ·
So to summarize: you can store (for free?!), you can share, you can scale - I will be getting that SDK.
properties (22)
authorturmericrob
permlinkre-eosio-the-dawn-of-eos-io-20170903t110426272z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 11:04:27
last_update2017-09-03 11:04:27
depth1
children0
last_payout2017-09-10 11:04: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_length103
author_reputation57,787,430,915
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,731,961
net_rshares0
@uchefrancis ·
Amazing article am glad I saw this
properties (22)
authoruchefrancis
permlinkre-eosio-201794t132816357z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-04 12:28:21
last_update2017-09-04 12:28:21
depth1
children0
last_payout2017-09-11 12:28: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_length34
author_reputation2,396,813,947,241
root_title"The Dawn of EOS.IO"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,840,383
net_rshares0
@ujjaval ·
nice post.thanks to provide info. EOS. in your post i understand what is EOS, it's blockchain process,it's software& storage.. your post really helpfull for me..thanks to sharing...
👍  ,
properties (23)
authorujjaval
permlinkre-eosio-the-dawn-of-eos-io-20170903t071942266z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 07:19:45
last_update2017-09-03 07:19:45
depth1
children0
last_payout2017-09-10 07:19: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_length181
author_reputation-780,184,975
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,718,375
net_rshares2,167,321,360
author_curate_reward""
vote details (2)
@underbob ·
Great progress!  Anybody have any idea why the price is diving down after news like this..   I would have thought the opposite
properties (22)
authorunderbob
permlinkre-eosio-the-dawn-of-eos-io-20170904t113243215z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 11:32:45
last_update2017-09-04 11:32:45
depth1
children0
last_payout2017-09-11 11:32: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_length126
author_reputation3,371,792
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,836,276
net_rshares0
@vegeto ·
Unfortunately it will be undervalued untill ico are taking place , fortunately more for us to accumulate
properties (22)
authorvegeto
permlinkre-eosio-the-dawn-of-eos-io-20170903t093528173z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 09:35:33
last_update2017-09-03 09:35:33
depth1
children0
last_payout2017-09-10 09:35: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_length104
author_reputation1,037,932,268,254
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,726,268
net_rshares0
@vinukarthek ·
$0.14
still, I don't get the confidence on EOS..... it's being traded but actual users I don't feel it's growing
👍  
properties (23)
authorvinukarthek
permlinkre-eosio-the-dawn-of-eos-io-20170904t033455933z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 03:34:57
last_update2017-09-04 03:34:57
depth1
children2
last_payout2017-09-11 03:34:57
cashout_time1969-12-31 23:59:59
total_payout_value0.139 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation141,835,595,924
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,805,385
net_rshares38,982,598,312
author_curate_reward""
vote details (1)
@jaxtaylor ·
The EOS crowdsale is ongoing. 2,000,000 token being sold every 23 hours for 350 periods. Today 10/27/2017 we are on period 123, average amount of donated ETH is devided by 2,000,000 to detirmine the price per EOS token in order to insure everyone gets the same price whether you buy 1 or 10,000. They have been collecting about 3,500ETH every 23 hours since period 99 or so (way more before that) or about $1,050,000USD  EVERY 23hrs. The team is ahead of the scheduled road map and coming out with new innovations previously unthought of along the way.  
Want to see something really awe inspiring go to this etherscan of the contract address 
https://etherscan.io/address/0xd0a6e6c54dbc68db5db3a091b171a77407ff7ccf#tokentxns
and just randomly click on some of the ether addresses the tokens are going to and see how many multi million dollar account holders are buying this up. That should boost your confidence a bit. Big money always seems to be buying the right thing before everyone else. Most of these accounts started buying EOS at $2.00+, go look for yourself, they are still buying more at $.50 
Take your time, understand how this one works (it is structured a bit differently than all the others) and scale into your position over the next 200 or so days and if they do what they say they are successfully doing it should be as big a move as Ethereum has been. Remember you are buying ERC-20 tokens (Ethereum tokens) that represent an equal number of EOS Tokens when the platform is launched, not the actual EOS tokens even though that is what they are named. This is the reason that you have to generate a EOS account key pair and map it to the ethereum address used to store your ERC-20 tokens. This way when the EOS platform is launched, the Ethereum smart contract can look into your ETH account and count the ERC-20 Tokens and send the same amount of EOS tokens to the mapped EOS address. The ERC-20 tokens become worthless at that point. 
It takes a bit to wrap your head around, just ask questions until you get it, it will be worth the learning.
EOS is building a competing smart contract platform to Ethereum and using the Ethereum platform to do it, brilliant really. Some of the smartest people just can't seem to dumb down thier explanations of how it works to a level the rest of us can comprehend.  It took me a while to grasp, but now that I do, I am a really strong believer in EOS. Will be scaling in till Jun 2018. Will post more on this account explaining it as we progress and I have time.
Hope this helps?
jax
properties (22)
authorjaxtaylor
permlinkre-vinukarthek-re-eosio-the-dawn-of-eos-io-20171027t085754569z
categoryeos
json_metadata{"tags":["eos"],"links":["https://etherscan.io/address/0xd0a6e6c54dbc68db5db3a091b171a77407ff7ccf#tokentxns"],"app":"steemit/0.1"}
created2017-10-27 08:58:00
last_update2017-10-27 08:58:00
depth2
children0
last_payout2017-11-03 08:58: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_length2,541
author_reputation29,941,316,598
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,677,994
net_rshares0
@zedchamaa ·
A seed does not become a tree overnight
properties (22)
authorzedchamaa
permlinkre-vinukarthek-re-eosio-the-dawn-of-eos-io-20170904t181544911z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 18:15:42
last_update2017-09-04 18:15:42
depth2
children0
last_payout2017-09-11 18:15: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_length39
author_reputation13,573,064,409
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,871,107
net_rshares0
@virtualgrowth · (edited)
Great to hear about eos!  Love the mention of the following: Proof of Performance, Shared Database Access, Message Passing, & EOS.IO Storage.
The possibility of decentralized (business) application(s) is what I and many others have been seeking and now may look forward too!  Will be excitingly awaiting more great news and possibilities of new found technologies!

#### One of my favorite parts:
>For the first time, developers will be able to create and deploy a decentralized application and web interfaces without having to worry about bandwidth and storage costs, or even hosting any servers themselves; this enables a host of new innovative decentralized business models, such as a decentralized YouTube, Soundcloud, or other storage-intensive projects.

_shared on [twitter](https://twitter.com/virtualtoken/status/904212385648459777)_

Wishing you continued success in your blockchain master mind pieces that many of us have grown to love @dan!

Best,
http://www.onlinesignature.in/animateText/text785697588.gif
👍  , , , , , , , , , ,
👎  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorvirtualgrowth
permlinkre-eosio-the-dawn-of-eos-io-20170903t052820070z
categoryeos
json_metadata{"tags":["eos"],"image":["http://www.onlinesignature.in/animateText/text785697588.gif"],"app":"steemit/0.1","links":["https://twitter.com/virtualtoken/status/904212385648459777"],"users":["dan"]}
created2017-09-03 05:28:21
last_update2017-09-03 05:31:30
depth1
children14
last_payout2017-09-10 05:28: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_length1,019
author_reputation194,279,551,234,595
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,712,036
net_rshares-887,915,109,462
author_curate_reward""
vote details (63)
@ash ·
$0.06
absolutely. email 2.0 and actual working decentralized net is a huge thing in my opinion
👍  
properties (23)
authorash
permlinkre-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t105358756z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 10:53:57
last_update2017-09-03 10:53:57
depth2
children3
last_payout2017-09-10 10:53:57
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation286,803,743,324,398
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,731,233
net_rshares16,671,231,506
author_curate_reward""
vote details (1)
@full-steem-ahead ·
Interesting, never thought of email as a blockchain app. Can I get stealth with that? LOL
properties (22)
authorfull-steem-ahead
permlinkre-ash-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t174854552z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:48:54
last_update2017-09-03 17:48:54
depth3
children1
last_payout2017-09-10 17:48: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_length89
author_reputation30,177,498,572,933
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,765,450
net_rshares0
@virtualgrowth ·
Absolutely agree!
properties (22)
authorvirtualgrowth
permlinkre-ash-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t144234543z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 14:42:33
last_update2017-09-03 14:42:33
depth3
children0
last_payout2017-09-10 14:42: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_length17
author_reputation194,279,551,234,595
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,748,761
net_rshares0
@pugriffs ·
Exciting news!
👍  
properties (23)
authorpugriffs
permlinkre-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t060826381z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:08:27
last_update2017-09-03 06:08:27
depth2
children0
last_payout2017-09-10 06: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_length14
author_reputation34,869,992,091
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,714,261
net_rshares169,274,446
author_curate_reward""
vote details (1)
@rebeccabe ·
resteeming and reading tomorrow .. the future is here ... I will be reading posts that break this down for people like me learning this new world.
properties (22)
authorrebeccabe
permlinkre-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t063421908z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 06:34:21
last_update2017-09-03 06:34:21
depth2
children0
last_payout2017-09-10 06:34: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_length146
author_reputation18,143,162,511,159
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,715,702
net_rshares0
@sacred-agent · (edited)
$0.94
Well said VG... AND...  Dan... YOU are Da Man !!

Thank You 4 what You & Your Team are creating for the ongoing Paradigm Shift !!

Hope You're having a Good Weekend !!

Cheers !!
👍  , ,
properties (23)
authorsacred-agent
permlinkre-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t055233578z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 05:52:33
last_update2017-09-03 05:54:18
depth2
children1
last_payout2017-09-10 05:52:33
cashout_time1969-12-31 23:59:59
total_payout_value0.736 HBD
curator_payout_value0.204 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length178
author_reputation4,833,164,215,661
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,713,391
net_rshares241,934,530,847
author_curate_reward""
vote details (3)
@full-steem-ahead ·
$0.04
Couldn't have said it better myself @sacred-agent! And I like your clever name!
👍  
properties (23)
authorfull-steem-ahead
permlinkre-sacred-agent-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t174730413z
categoryeos
json_metadata{"tags":["eos"],"users":["sacred-agent"],"app":"steemit/0.1"}
created2017-09-03 17:47:30
last_update2017-09-03 17:47:30
depth3
children0
last_payout2017-09-10 17:47:30
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation30,177,498,572,933
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,765,330
net_rshares10,961,431,546
author_curate_reward""
vote details (1)
@tanayjain1 ·
i have one question for you guys.what is more important for you money or time. think about it
👍  ,
properties (23)
authortanayjain1
permlinkre-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t085440762z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 08:54:42
last_update2017-09-03 08:54:42
depth2
children2
last_payout2017-09-10 08: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_length93
author_reputation14,506,100,767
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,723,867
net_rshares1,985,678,570
author_curate_reward""
vote details (2)
@full-steem-ahead ·
That makes 2 questions, since you asked it twice :)  I like VG's reply better!
properties (22)
authorfull-steem-ahead
permlinkre-tanayjain1-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t175053981z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 17:50:54
last_update2017-09-03 17:50:54
depth3
children0
last_payout2017-09-10 17:50: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_length78
author_reputation30,177,498,572,933
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,765,617
net_rshares0
@virtualgrowth ·
Energy and life!
properties (22)
authorvirtualgrowth
permlinkre-tanayjain1-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t144420349z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 14:44:21
last_update2017-09-03 14:44:21
depth3
children0
last_payout2017-09-10 14:44: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_reputation194,279,551,234,595
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,748,927
net_rshares0
@teamsteem ·
$0.13
That's exactly the thing I would have been quoting. Very exciting indeed.
👍  , ,
properties (23)
authorteamsteem
permlinkre-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t080315480z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 08:03:15
last_update2017-09-03 08:03:15
depth2
children1
last_payout2017-09-10 08:03:15
cashout_time1969-12-31 23:59:59
total_payout_value0.095 HBD
curator_payout_value0.030 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation284,804,541,406,803
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,721,062
net_rshares32,563,722,787
author_curate_reward""
vote details (3)
@virtualgrowth ·
Very exciting indeed!
properties (22)
authorvirtualgrowth
permlinkre-teamsteem-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t144335759z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 14:43:36
last_update2017-09-03 14:43:36
depth3
children0
last_payout2017-09-10 14:43: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_length21
author_reputation194,279,551,234,595
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,748,855
net_rshares0
@twitterbot ·
### ![virtualtoken](https://pbs.twimg.com/profile_images/859824299548520448/tSGEhDPX_normal.jpg) **[Virtual Growth](https://twitter.com/@virtualtoken/status/904212385648459777)** tweeted @ 03 Sep 2017 - 05:20 UTC

> The Dawn of EOS.IO — @Steemit [steemit.com/eos/@eosio/the…](https://t.co/ad69sjyjf7)


###### *Disclaimer: I am just a bot trying to be helpful.*
👍  ,
👎  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authortwitterbot
permlinkre-re-eosio-the-dawn-of-eos-io-20170903t052820070z-20170903t052910
categoryeos
json_metadata""
created2017-09-03 05:29:12
last_update2017-09-03 05:29:12
depth2
children0
last_payout2017-09-10 05:29: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_length361
author_reputation2,792,128,643,772
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,712,089
net_rshares-1,106,572,477,735
author_curate_reward""
vote details (54)
@vovannoviy ·
Good idea!  One more step forward towards a decentralized society.
properties (22)
authorvovannoviy
permlinkre-eosio-the-dawn-of-eos-io-20170903t093714026z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 09:37:18
last_update2017-09-03 09:37:18
depth1
children0
last_payout2017-09-10 09:37: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_length66
author_reputation2,166,348,216
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,726,372
net_rshares0
@wilku ·
Upvoted and resteemed! Thanks guys, you doing great work. I am really happy that I am part of this great project. Looking forward to hear more news!
properties (22)
authorwilku
permlinkre-eosio-the-dawn-of-eos-io-20170904t092203680z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 09:22:03
last_update2017-09-04 09:22:03
depth1
children0
last_payout2017-09-11 09:22: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_length148
author_reputation19,492,812,682,728
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,827,383
net_rshares0
@wuhotan ·
good news
👍  
properties (23)
authorwuhotan
permlinkre-eosio-the-dawn-of-eos-io-20170903t072931317z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 07:29:30
last_update2017-09-03 07:29:30
depth1
children0
last_payout2017-09-10 07:29: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_length9
author_reputation555,308,368,366
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,718,977
net_rshares1,754,917,395
author_curate_reward""
vote details (1)
@yentl7 ·
Thank you for sharing.
properties (22)
authoryentl7
permlinkre-eosio-the-dawn-of-eos-io-20170904t063609598z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-04 06:36:09
last_update2017-09-04 06:36:09
depth1
children0
last_payout2017-09-11 06:36: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_reputation4,960,280,242
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,816,575
net_rshares0
@zahidmasood ·
Very nice and interesting post, very beautifully explained, even a person like me who do not know much about computers can gain much benefit and knowledge.
properties (22)
authorzahidmasood
permlinkre-eosio-the-dawn-of-eos-io-20170905t145634631z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 14:56:33
last_update2017-09-05 14:56:33
depth1
children0
last_payout2017-09-12 14:56: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_length155
author_reputation2,216,436,641
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,955,156
net_rshares0
@zardoz144 ·
This is awesome.
properties (22)
authorzardoz144
permlinkre-eosio-the-dawn-of-eos-io-20170903t151932143z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 15:19:33
last_update2017-09-03 15:19:33
depth1
children0
last_payout2017-09-10 15:19:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation34,495,646,010
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,752,192
net_rshares0
@zetetrahedron369 ·
Congrats on being ahead of schedule.
properties (22)
authorzetetrahedron369
permlinkre-eosio-the-dawn-of-eos-io-20170903t091347323z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-03 09:13:48
last_update2017-09-03 09:13:48
depth1
children0
last_payout2017-09-10 09:13: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_length36
author_reputation804,797,990,499
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,725,014
net_rshares0
@zzboy ·
yes,baby
👍  
properties (23)
authorzzboy
permlinkre-eosio-the-dawn-of-eos-io-20170905t083753236z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-05 08:37:54
last_update2017-09-05 08:37:54
depth1
children0
last_payout2017-09-12 08:37: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_length8
author_reputation17,499,909
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,926,393
net_rshares1,119,994,231
author_curate_reward""
vote details (1)
@zzboy ·
https://steemitimages.com/0x0/https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png
properties (22)
authorzzboy
permlinkre-eosio-the-dawn-of-eos-io-20170905t084227744z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png"],"app":"steemit/0.1"}
created2017-09-05 08:42:30
last_update2017-09-05 08:42:30
depth1
children1
last_payout2017-09-12 08: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_length113
author_reputation17,499,909
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,926,717
net_rshares0
@zzboy ·
你好啊,https://steemitimages.com/0x0/https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png
properties (22)
authorzzboy
permlinkre-zzboy-re-eosio-the-dawn-of-eos-io-20170905t084316566z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png"],"app":"steemit/0.1"}
created2017-09-05 08:43:21
last_update2017-09-05 08:43:21
depth2
children0
last_payout2017-09-12 08:43: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_length117
author_reputation17,499,909
root_title"The Dawn of EOS.IO"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,926,797
net_rshares0