 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>
author | eosio |
---|---|
permlink | the-dawn-of-eos-io |
category | eos |
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"} |
created | 2017-09-03 04:38:57 |
last_update | 2017-09-03 04:38:57 |
depth | 0 |
children | 294 |
last_payout | 2017-09-10 04:38:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13,235 |
author_reputation | 27,974,755,807,058 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 13,709,293 |
net_rshares | 219,336,757,204,999 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nextgen11 | 0 | -206,279,132 | -10% | ||
nextgen10 | 0 | -206,279,134 | -10% | ||
nextgen1 | 0 | -309,419,482 | -10% | ||
nextgen12 | 0 | -206,279,130 | -10% | ||
nextgen6 | 0 | -206,237,421 | -10% | ||
nextgen2 | 0 | -309,419,460 | -10% | ||
nextgen13 | 0 | -206,279,127 | -10% | ||
nextgen7 | 0 | -206,237,419 | -10% | ||
nextgen3 | 0 | -309,419,478 | -10% | ||
nextgen16 | 0 | -206,237,418 | -10% | ||
yomamasofat | 0 | -206,237,415 | -10% | ||
charlesmanson | 0 | -825,119,124 | -10% | ||
jacktheripper | 0 | -412,559,569 | -10% | ||
jeffreydahmer | 0 | -412,559,549 | -10% | ||
berniesanders | 0 | -19,424,386,359 | -10% | ||
donalddrumpf | 0 | -206,278,991 | -10% | ||
dan | 0 | 132,515,845,453,836 | 100% | ||
jamesc | 0 | 16,024,176,357,534 | 100% | ||
chatterbox | 0 | -206,268,953 | -10% | ||
ihashfury | 0 | 27,032,450,947 | 26% | ||
nextgencrypto100 | 0 | -206,237,434 | -10% | ||
nextgencrypto | 0 | -171,021,566,276 | -10% | ||
nextgencrypto120 | 0 | -206,237,427 | -10% | ||
nextgencrypto110 | 0 | -206,237,430 | -10% | ||
liondani | 0 | 1,409,851,066,086 | 100% | ||
nextgencrypto111 | 0 | -206,237,428 | -10% | ||
nextgencrypto101 | 0 | -206,237,432 | -10% | ||
boy | 0 | 248,250,268 | 100% | ||
nextgencrypto121 | 0 | -206,237,424 | -10% | ||
xeroc | 0 | 1,752,808,300,142 | 100% | ||
bue-witness | 0 | 302,699,278 | 100% | ||
fminer05 | 0 | 501,973,634,457 | 100% | ||
bue | 0 | 13,601,287,831 | 100% | ||
theterrorist | 0 | -206,278,956 | -10% | ||
steemittroll | 0 | -206,268,950 | -10% | ||
theghost | 0 | -206,278,987 | -10% | ||
thepresident | 0 | -206,278,985 | -10% | ||
sockpuppet | 0 | -206,268,948 | -10% | ||
danknugs | 0 | -94,097,425,561 | -10% | ||
elchapo | 0 | -412,559,554 | -10% | ||
steemservices | 0 | -108,730,836,808 | -10% | ||
steemservices1 | 0 | -412,559,520 | -10% | ||
muhammad | 0 | -206,237,416 | -10% | ||
mini | 0 | 132,685,647 | 100% | ||
steemservices3 | 0 | -412,559,517 | -10% | ||
steemservices5 | 0 | -412,559,509 | -10% | ||
benjojo | 0 | 967,948,983,982 | 25% | ||
healthcare | 0 | 98,895,804 | 100% | ||
daniel.pan | 0 | 78,227,740 | 100% | ||
sativa | 0 | -287,646,841 | -10% | ||
indica | 0 | -412,558,347 | -10% | ||
dab | 0 | 211,189,189,315 | 100% | ||
fractalnode | 0 | 306,124,973 | 25% | ||
coindup | 0 | 229,488,020,055 | 100% | ||
marketingmonk | 0 | 439,219,426,360 | 100% | ||
chris4210 | 0 | 759,753,252,475 | 100% | ||
kimjongun | 0 | -103,139,747 | -10% | ||
chryspano | 0 | 1,205,286,186,475 | 100% | ||
morning | 0 | 1,484,381,797,498 | 100% | ||
ppitonak | 0 | 12,396,531,460 | 100% | ||
bleepcoin | 0 | 797,968,655,361 | 100% | ||
hbhades | 0 | 17,942,047,063 | 100% | ||
rod-campbell | 0 | 4,535,057,436 | 100% | ||
oaldamster | 0 | 201,461,610,200 | 100% | ||
kevinwong | 0 | 1,575,582,892,527 | 34% | ||
mughat | 0 | 376,266,651,995 | 100% | ||
frabrunelle | 0 | 1,503,719,306 | 100% | ||
eric-boucher | 0 | 253,310,644,334 | 100% | ||
malacandrahyoi | 0 | 2,925,275,671 | 100% | ||
the-alien | 0 | 265,712,088,839 | 100% | ||
hedge-x | 0 | 396,628,535,617 | 100% | ||
juanmiguelsalas | 0 | 874,170,583 | 1% | ||
lynda-j-leonard | 0 | 0 | 100% | ||
g-dubs | 0 | 22,309,555,437 | 15% | ||
michaelx | 0 | 180,804,477,728 | 100% | ||
knopki | 0 | 748,220,616 | 100% | ||
kwonjs77 | 0 | 137,185,675,694 | 100% | ||
angusleung100 | 0 | 2,308,482,993 | 100% | ||
superfreek | 0 | 3,938,697,882 | 100% | ||
koen28001 | 0 | 10,141,072,006 | 100% | ||
kingg | 0 | 1,502,578,992 | 100% | ||
spiry-btc | 0 | 19,719,805,455 | 100% | ||
stealthtrader | 0 | 18,312,830,923 | 100% | ||
chamviet | 0 | 1,947,077,682 | 100% | ||
jaysanz | 0 | 3,426,699,999 | 100% | ||
ausbitbank | 0 | 167,258,580,193 | 1% | ||
joseph.kalu | 0 | 180,825,081 | 100% | ||
igster | 0 | 1,720,915,981 | 1% | ||
sephiroth | 0 | 768,661,880,164 | 100% | ||
bycz | 0 | 55,557,934,809 | 100% | ||
shla-rafia | 0 | 572,673,587 | 2% | ||
exitmass | 0 | 702,103,715 | 100% | ||
chessmonster | 0 | 354,873,015,044 | 100% | ||
yogi | 0 | 193,994,275,810 | 100% | ||
moon32walker | 0 | 615,784,188,545 | 100% | ||
prasanna | 0 | 396,918,734 | 100% | ||
remlaps | 0 | 26,164,366,615 | 100% | ||
alexpmorris | 0 | 26,316,156,685 | 25% | ||
lsc9999 | 0 | 116,892,073,244 | 100% | ||
luikonaissa | 0 | 2,552,188,160 | 100% | ||
espaciobit | 0 | 256,076,510 | 100% | ||
skyeg3 | 0 | 253,823,099 | 100% | ||
veerprit | 0 | 10,471,122,414 | 100% | ||
vladikras | 0 | 8,036,898,317 | 100% | ||
thebotkiller | 0 | -65,545,677,099 | -10% | ||
ashwim | 0 | 2,919,569,583 | 100% | ||
ericxtang | 0 | 0 | 100% | ||
runaway-psyche | 0 | 710,560,425 | 3% | ||
dollarvigilante | 0 | 263,658,456,439 | 100% | ||
wakeupjohnny | 0 | 29,457,576,658 | 100% | ||
blubeast | 0 | 384,737,148 | 1% | ||
coolspeed | 0 | 1,950,783,356 | 100% | ||
gaio | 0 | 243,607,086 | 100% | ||
itsmein3d | 0 | 457,658,887,613 | 100% | ||
layl | 0 | 826,881,692 | 100% | ||
leesmoketree | 0 | 52,662,217,735 | 33% | ||
rossomahar | 0 | 246,422,585 | 100% | ||
themonetaryfew | 0 | 1,105,413,701,296 | 100% | ||
barrydutton | 0 | 35,465,588,350 | 5% | ||
darkflame | 0 | 11,866,666,488 | 24% | ||
richardcrill | 0 | 151,240,670,295 | 50% | ||
xanoxt | 0 | 198,980,132,011 | 100% | ||
leoplaw | 0 | 13,581,951,244 | 30% | ||
ajaub1962 | 0 | 9,824,764,771 | 25% | ||
ghasemkiani | 0 | 5,469,125,564 | 0.25% | ||
demions | 0 | 428,755,289 | 100% | ||
titusfrost | 0 | 266,196,380,033 | 100% | ||
imassakin | 0 | 221,100,847 | 100% | ||
thecyclist | 0 | -866,535,020 | -10% | ||
cybernatic | 0 | 217,234,849 | 100% | ||
mjhomb | 0 | 73,974,817,605 | 100% | ||
paulc | 0 | 2,308,159,489 | 100% | ||
ibringawareness | 0 | 48,424,506,937 | 100% | ||
rantanplan41 | 0 | 225,520,408 | 100% | ||
kharn | 0 | 2,987,035,964 | 100% | ||
joelerbear | 0 | 0 | 100% | ||
anomaly | 0 | 365,096,439 | 1% | ||
tarekadam | 0 | 263,457,349,234 | 100% | ||
thenextturn | 0 | 95,710,967,759 | 100% | ||
largelyuseless | 0 | 163,222,738 | 100% | ||
mari886 | 0 | 139,159,139 | 100% | ||
drago | 0 | 136,553,591 | 100% | ||
shaungerow | 0 | 195,364,716 | 100% | ||
whoib | 0 | 212,558,042 | 100% | ||
skhosi1 | 0 | 199,577,511 | 100% | ||
tunnelrat | 0 | 3,735,792,201 | 20% | ||
dylanhobalart | 0 | 14,711,435,196 | 13% | ||
olesya1989 | 0 | 609,438,189 | 100% | ||
rebeccabe | 0 | 11,372,407,957 | 51% | ||
cryptoblog | 0 | 620,721,857 | 100% | ||
bleujay | 0 | 1,123,892,070,119 | 100% | ||
mrlemmer11 | 0 | 5,269,242,890 | 100% | ||
aldentan | 0 | 4,371,798,872 | 100% | ||
dgiors | 0 | 203,934,616,891 | 100% | ||
br-real | 0 | 336,652,228,937 | 100% | ||
blhz | 0 | 5,260,333,088 | 25% | ||
black-eye | 0 | 96,142,781 | 100% | ||
daverex | 0 | 1,806,536,632 | 100% | ||
alangrant | 0 | 802,173,364 | 100% | ||
thejohalfiles | 0 | 44,825,715,693,478 | 100% | ||
jmehta | 0 | 1,394,106,142 | 100% | ||
maxse | 0 | 21,230,083,450 | 100% | ||
alanfreestone | 0 | 107,158,928,918 | 100% | ||
chessminator | 0 | 517,958,443 | 100% | ||
wagnertamanaha | 0 | 6,793,449,892 | 100% | ||
teamhumble | 0 | 40,215,791,377 | 100% | ||
guttormf | 0 | 27,001,775,561 | 100% | ||
belidged | 0 | 3,711,523,980 | 100% | ||
illbeyourfriend | 0 | -4,242,488,419 | -10% | ||
engagement | 0 | -3,608,691,280 | -10% | ||
drgorogbalazs | 0 | 2,271,075,781 | 100% | ||
bigtakosensei | 0 | 13,568,665,850 | 100% | ||
onesnzeros | 0 | 6,753,625,250 | 100% | ||
kuching | 0 | 43,882,460,372 | 100% | ||
v4vapid | 0 | 2,911,952,895,661 | 20% | ||
petermonien | 0 | 2,136,883,882 | 100% | ||
dreaser | 0 | 2,016,095,340 | 100% | ||
personz | 0 | 118,383,782,082 | 100% | ||
destbest | 0 | 632,978,242,049 | 100% | ||
deaconlee | 0 | 6,769,654,781 | 10.32% | ||
iflagtrash | 0 | -1,237,294,013 | -10% | ||
rizaldamti | 0 | 10,596,049,877 | 100% | ||
ikbear | 0 | -1,669,811,183 | -100% | ||
rishi2184 | 0 | 7,742,987,775 | 100% | ||
paolobeneforti | 0 | 9,540,099,686 | 3% | ||
theyeti | 0 | -136,215,735 | -10% | ||
jacksonkim | 0 | 1,480,516,877 | 100% | ||
thedumpster | 0 | -12,316,638,294 | -10% | ||
llyrran | 0 | 0 | 100% | ||
yougotflagged | 0 | -917,758,487 | -10% | ||
laddawan | 0 | 11,006,365,093 | 20% | ||
verethragna | 0 | 2,123,129,037 | 100% | ||
estronitex | 0 | 5,333,098,157 | 100% | ||
randomthoughts | 0 | -1,506,515,130 | -10% | ||
normanvortex | 0 | 302,935,394 | 100% | ||
tranquilpen | 0 | 0 | 0% | ||
kide | 0 | 1,385,702,668 | 100% | ||
elmetro | 0 | 274,726,300,542 | 100% | ||
mckenziegary | 0 | 27,623,354,621 | 100% | ||
funkit | 0 | 38,359,957,948 | 100% | ||
bitkoinkenya | 0 | 11,360,970,335 | 100% | ||
toniesteem | 0 | 0 | 100% | ||
mrmoneyman | 0 | 0 | 100% | ||
malonmar | 0 | 62,867,317,987 | 100% | ||
amrsaeed | 0 | 318,315,982 | 100% | ||
edmundspriede | 0 | 47,498,493,724 | 100% | ||
fnszn | 0 | 1,455,409,507 | 100% | ||
davidellison | 0 | 7,711,389,349 | 100% | ||
nba05 | 0 | 24,019,038,479 | 100% | ||
taspingo | 0 | 3,291,908,708 | 100% | ||
andrianna | 0 | 5,233,837,026 | 100% | ||
nusi | 0 | 420,133,108 | 100% | ||
puli | 0 | 439,909,256 | 100% | ||
venomnymous | 0 | 659,173,284 | 100% | ||
lic | 0 | 431,895,182 | 100% | ||
jupadr | 0 | 0 | 100% | ||
chudik | 0 | 437,960,069 | 100% | ||
ammonium | 0 | 439,879,452 | 100% | ||
herfie | 0 | 636,690,395 | 100% | ||
lgcct | 0 | 3,235,785,724 | 100% | ||
jovandonahue | 0 | 433,548,654 | 100% | ||
agooddirection | 0 | 0 | 100% | ||
synapse | 0 | 100,820,506,935 | 100% | ||
silversnake | 0 | 612,019,900 | 100% | ||
ruttydm | 0 | 112,047,643 | 100% | ||
aarkay | 0 | 2,216,592,349 | 100% | ||
tusam | 0 | 0 | 100% | ||
pakiis | 0 | 1,135,438,602 | 100% | ||
mengmeng | 0 | 8,370,072,541 | 100% | ||
eosio | 0 | 11,663,900,179 | 100% | ||
renesa | 0 | 565,419,400 | 100% | ||
sacred-agent | 0 | 7,672,040,885 | 7% | ||
pugriffs | 0 | 554,171,049 | 100% | ||
ethios17 | 0 | 542,826,513 | 100% | ||
traderdad | 0 | 10,038,539,136 | 100% | ||
misterbitcoin | 0 | 9,597,235,226 | 100% | ||
meurahpasee | 0 | 612,789,552 | 100% | ||
aemkar | 0 | 660,122,738 | 100% | ||
kneko | 0 | 573,590,389 | 100% | ||
swam | 0 | 619,520,000 | 100% | ||
ijoel | 0 | 10,502,642,857 | 100% | ||
beordo | 0 | 7,196,226,978 | 100% | ||
davy73 | 0 | 100,926,518 | 100% | ||
traceyyoung | 0 | 557,568,000 | 100% | ||
andybets | 0 | 14,159,010,014 | 100% | ||
rt395 | 0 | 12,347,088,304 | 100% | ||
blazin3596 | 0 | 442,895,200 | 100% | ||
zacharius | 0 | 6,714,758,889 | 100% | ||
cptnsolo | 0 | 1,264,954,454 | 100% | ||
mazar | 0 | 2,852,158,686 | 50% | ||
iqbal05 | 0 | 5,680,057,693 | 100% | ||
todstikles | 0 | 621,919,760 | 100% | ||
kinghill7 | 0 | 621,340,000 | 100% | ||
reedus | 0 | 3,071,819,152 | 100% | ||
egetror | 0 | 2,919,819,459 | 100% | ||
lukecooper | 0 | 621,340,000 | 100% | ||
ikegass33 | 0 | 76,002,025,622 | 96% | ||
superskillz | 0 | 15,798,379,723 | 100% | ||
saccky | 0 | 621,340,000 | 100% | ||
wijuwiju | 0 | 9,671,749,920 | 100% | ||
riskiafifunna | 0 | 1,142,526,129 | 100% | ||
embracingchaos | 0 | 4,798,714,370 | 25% | ||
sprenne | 0 | 0 | 100% | ||
orbitalqq | 0 | 21,256,645,075 | 100% | ||
suitablybored | 0 | 983,651,891 | 100% | ||
infinitycoin | 0 | 619,520,000 | 100% | ||
almost-digital | 0 | 189,565,697,405 | 100% | ||
yunus | 0 | 0 | 100% | ||
turmericrob | 0 | 613,324,800 | 100% | ||
quanahjayhicks | 0 | 2,141,013,104 | 7% | ||
droucil | 0 | 1,179,388,044 | 1% | ||
saylor | 0 | 1,175,937,127 | 100% | ||
ghipnon | 0 | 4,763,690,830 | 100% | ||
arpepa | 0 | 635,688,148 | 100% | ||
gregaria | 0 | 6,812,629,037 | 100% | ||
joker8 | 0 | 1,180,879,789 | 100% | ||
speeding | 0 | 619,520,000 | 100% | ||
tsinrong | 0 | 1,690,358,368 | 100% | ||
kissthebottle | 0 | 554,310,387 | 100% | ||
marianpancu | 0 | 446,677,752 | 100% | ||
neniemsu | 0 | 2,034,875,754 | 100% | ||
cyborg-lemur | 0 | 619,520,000 | 100% | ||
ammonite | 0 | 7,005,506,738 | 53.41% | ||
amvanaken | 0 | 498,862,110 | 1% | ||
slavix | 0 | 3,392,842,397 | 100% | ||
igoryou | 0 | 509,734,998 | 100% | ||
merkaba | 0 | 619,520,000 | 100% | ||
todderic | 0 | 680,695,798 | 100% | ||
greenerz | 0 | 10,127,341,189 | 100% | ||
luke-sanjay | 0 | 3,274,882,677 | 100% | ||
nanogivers | 0 | 160,839,142 | 100% | ||
derevtso | 0 | 497,268,271 | 100% | ||
cashisking | 0 | 8,284,392,719 | 100% | ||
agusdiansyah | 0 | 2,666,946,161 | 85.59% | ||
tfl15mlvk3d | 0 | 508,480,748 | 100% | ||
kramarenko | 0 | 161,382,829 | 100% | ||
nirewwe | 0 | 507,267,168 | 100% | ||
bigdan | 0 | 619,520,000 | 100% | ||
charliehao | 0 | 610,227,200 | 100% | ||
mehrab | 0 | 607,170,068 | 100% | ||
geraldhardy | 0 | 504,908,800 | 100% | ||
mushlih.ar0 | 0 | 519,112,276 | 80.19% | ||
makshay5 | 0 | 28,398,552,404 | 100% | ||
riyansteem | 0 | 552,509,946 | 100% | ||
stock84 | 0 | 620,405,912 | 100% | ||
deepwaterscrypto | 0 | 674,746,628 | 100% | ||
rafine | 0 | 28,075,030,157 | 100% | ||
sovereign-naan | 0 | 659,905,099 | 100% | ||
faruk400 | 0 | 848,404,463 | 100% | ||
sidkey | 0 | 619,520,000 | 100% | ||
the-housewife | 0 | 5,501,293,219 | 100% | ||
tacolife | 0 | 619,520,000 | 100% | ||
ghaaspur | 0 | 7,758,018,384 | 100% | ||
nickeles | 0 | 1,059,617,587 | 100% | ||
mannyfig1956 | 0 | 665,489,414 | 100% | ||
binkyprod | 0 | 2,483,488,080 | 100% | ||
thedelegator | 0 | -1,442,532,458 | -10% | ||
littlevoice | 0 | 3,262,809,119 | 100% | ||
konstantint | 0 | 14,808,990,056 | 100% | ||
dhuyvetter | 0 | 619,520,000 | 100% | ||
stegis | 0 | 505,921,186 | 100% | ||
frankbuse | 0 | 737,006,900 | 100% | ||
anarcho | 0 | 619,520,000 | 100% | ||
katari | 0 | 2,592,442,430 | 100% | ||
romit-radical | 0 | 619,520,000 | 100% | ||
agorist13 | 0 | 13,903,134,903 | 100% | ||
darkprism | 0 | 105,465,774 | 100% | ||
alessandrorossi | 0 | 619,520,000 | 100% | ||
dashakrug | 0 | 610,227,200 | 100% | ||
beltashazzar | 0 | 3,578,980,707 | 100% | ||
bardamazon | 0 | 894,688,229 | 100% | ||
trave160 | 0 | 1,157,817,902 | 100% | ||
alextracy | 0 | 628,521,065 | 100% | ||
nukelukeem | 0 | 517,299,200 | 100% | ||
eikr | 0 | 619,520,000 | 100% | ||
luigi-tecnologo | 0 | 228,612,682 | 1% | ||
mrperozzi | 0 | 619,643,915 | 100% | ||
boucaron | 0 | 755,264,156 | 100% | ||
gabberted | 0 | 725,008,649 | 100% | ||
wintermute | 0 | 619,520,000 | 100% | ||
sharoon | 0 | 1,222,482,740 | 100% | ||
cryptosam95 | 0 | 1,015,607,951 | 100% | ||
enforcer2k | 0 | 1,125,873,868 | 100% | ||
coinex | 0 | 869,293,886 | 100% | ||
travelinggreek | 0 | 3,469,156,006 | 100% | ||
witus777 | 0 | 607,980,052 | 100% | ||
yogevm | 0 | 16,345,131,403 | 100% | ||
angelomedisport | 0 | 628,601,421 | 100% | ||
soulra1ser | 0 | 7,359,450,038 | 100% | ||
eddieb | 0 | 619,520,000 | 100% | ||
eyegasm | 0 | 8,434,895,582 | 44% | ||
majorposquare | 0 | 619,520,000 | 100% | ||
themystic | 0 | 15,375,623,347 | 100% | ||
vladg | 0 | 619,520,000 | 100% | ||
hope-on-fire | 0 | 211,749,037 | 100% | ||
erikaortiz | 0 | 610,421,813 | 100% | ||
christ2169 | 0 | 531,787,382 | 100% | ||
rogasa3000 | 0 | 1,546,917,654 | 100% | ||
santoscruise | 0 | 604,896,485 | 100% | ||
george-zagraid | 0 | 3,406,410,020 | 100% | ||
aifuture | 0 | 1,170,478,714 | 100% | ||
theredhornet | 0 | 610,227,200 | 100% | ||
steemitbc | 0 | 3,139,768,421 | 100% | ||
reville | 0 | 7,565,039,715 | 100% | ||
thinkocapo | 0 | 0 | 0% | ||
ahsansaeed | 0 | 8,550,068,994 | 100% | ||
felixohartmann | 0 | 5,001,538,859 | 100% | ||
johnstep | 0 | 619,520,000 | 100% | ||
fauzipase | 0 | 681,760,773 | 100% | ||
saiful83 | 0 | 178,595,239 | 100% | ||
deepakd | 0 | 542,080,000 | 100% | ||
epeakinfo | 0 | 103,037,932 | 100% | ||
kona | 0 | 516,574,735 | 100% | ||
cain342 | 0 | 0 | 100% | ||
kayaman | 0 | 6,260,660,946 | 100% | ||
beccadeals | 0 | 1,868,639,522 | 100% | ||
zolfarin | 0 | 619,520,000 | 100% | ||
palme | 0 | 35,305,482,611 | 80% | ||
fairbear | 0 | 619,520,000 | 100% | ||
minalshah | 0 | 662,693,124 | 100% | ||
h8rry | 0 | 3,867,385,535 | 10% | ||
riceball | 0 | 0 | 100% | ||
born2win | 0 | 620,356,212 | 100% | ||
virik | 0 | 619,520,000 | 100% | ||
whitethunder | 0 | 620,800,128 | 100% | ||
jejangkit | 0 | 122,386,383 | 100% | ||
singledudetravel | 0 | 619,520,000 | 100% | ||
prc | 0 | 7,390,400,838 | 100% | ||
theofilos13 | 0 | 610,227,200 | 100% | ||
aaronaugustine | 0 | 608,383,989 | 100% | ||
sirdre | 0 | 0 | 100% | ||
kamilason | 0 | 613,324,800 | 100% | ||
stirgoi | 0 | 0 | 100% | ||
g0nr0gue | 0 | 1,316,632,223 | 100% | ||
anonimous | 0 | 723,484,130 | 100% | ||
hazooka | 0 | 496,400,891 | 100% | ||
cyberberry | 0 | 635,586,019 | 100% | ||
bikash-tutor | 0 | 10,829,708,214 | 100% | ||
kentutmonyet | 0 | 1,009,736,272 | 100% | ||
shashankgupta | 0 | 2,203,602,667 | 100% | ||
inok | 0 | 634,044,553 | 100% | ||
xainba | 0 | 755,386,415 | 100% | ||
zachacaria | 0 | 621,171,241 | 100% | ||
dignityinside | 0 | 614,248,901 | 100% | ||
adoelesteem | 0 | 541,702,470 | 100% | ||
bukhairidin | 0 | 640,897,549 | 100% | ||
nimadgr | 0 | 619,520,000 | 100% | ||
thesloth | 0 | -30,963,640,182 | -10% | ||
tolkatore | 0 | 1,073,437,128 | 100% | ||
duekie | 0 | 355,717,723 | 100% | ||
forever.nocturnl | 0 | 619,520,000 | 100% | ||
kevinflo | 0 | 619,520,000 | 100% | ||
zakariagrami | 0 | 0 | 0% | ||
seranium | 0 | 0 | 100% | ||
cryptoqu33n | 0 | 14,659,501,768 | 100% | ||
zedchamaa | 0 | 619,520,000 | 100% | ||
nastaatr | 0 | 452,249,600 | 100% | ||
hassenmzali | 0 | 1,033,927,318 | 100% | ||
charlesx | 0 | 10,351,838,598 | 100% | ||
anthonyjek | 0 | 99,123,200 | 100% | ||
zulfadliekawom | 0 | 98,672,841 | 3.51% | ||
selly | 0 | 1,176,151,550 | 100% | ||
nehab | 0 | 389,611,366 | 100% | ||
champmc | 0 | 1,160,667,782 | 100% | ||
maramina | 0 | 610,227,200 | 100% | ||
nurhasib | 0 | 60,135,527 | 100% | ||
fooart | 0 | 708,785,913 | 100% | ||
sim31 | 0 | 622,161,250 | 100% | ||
imrane | 0 | 619,726,569 | 100% | ||
polysen | 0 | 527,241,569 | 100% | ||
elrandom | 0 | 609,395,738 | 100% | ||
choosefreedom | 0 | 4,199,507,914 | 100% | ||
kovilvns | 0 | 0 | 0% | ||
pomidora | 0 | 514,270,112 | 100% | ||
buiduyquang25 | 0 | 619,520,000 | 100% | ||
jaca | 0 | 56,551,380 | 100% | ||
thepink | 0 | 794,183,430 | 100% | ||
mamoru | 0 | 1,116,426,251 | 100% | ||
mrs.ginger | 0 | 619,520,000 | 100% | ||
pearleu | 0 | 800,448,949 | 100% | ||
newpioneer | 0 | 41,739,965,215 | 100% | ||
albuluhi | 0 | 943,458,003 | 100% | ||
crf250 | 0 | 1,160,665,049 | 100% | ||
amochckins | 0 | 495,408,056 | 100% | ||
hronn | 0 | 424,371,200 | 100% | ||
idina | 0 | 427,468,800 | 100% | ||
juanpe2012 | 0 | 820,283,495 | 100% | ||
layertachi | 0 | 501,878,061 | 100% | ||
kabayaki | 0 | 0 | 100% | ||
thenomadictales | 0 | 697,052,525 | 100% | ||
debraycodes | 0 | 619,520,000 | 100% | ||
tedzpriego | 0 | 607,129,600 | 100% | ||
katkar | 0 | 182,203,111 | 100% | ||
onabi | 0 | 390,297,600 | 100% | ||
medicbtom | 0 | 265,960,091 | 100% | ||
soltree | 0 | 619,520,000 | 100% | ||
antonykiller | 0 | 712,788,816 | 100% | ||
sabatini | 0 | 508,006,400 | 100% | ||
blockchain-mike | 0 | 610,227,200 | 100% | ||
garudi | 0 | 763,216,625 | 100% | ||
sapphirevixen | 0 | 3,949,963,043 | 100% | ||
eleon88 | 0 | 683,984,863 | 100% | ||
prokhorlyud | 0 | 495,814,181 | 100% | ||
jbrave84 | 0 | 256,604,142 | 100% | ||
isaacm | 0 | 611,406,821 | 100% | ||
nickhu123 | 0 | 619,520,000 | 100% | ||
wakjems | 0 | 585,446,400 | 100% | ||
dondiegoii | 0 | 142,489,600 | 23.62% | ||
unsignedint8 | 0 | 619,520,000 | 100% | ||
palmerjm1 | 0 | 500,048,091 | 100% | ||
helloiamantoine | 0 | 619,520,000 | 100% | ||
adurakov | 0 | 619,520,000 | 100% | ||
sarbina | 0 | 495,715,035 | 100% | ||
zurov.fyodor | 0 | 505,245,261 | 100% | ||
skakamaz | 0 | 513,382,258 | 100% | ||
amedeo | 0 | 140,382,625 | 100% | ||
unomas | 0 | 619,520,000 | 100% | ||
skirdinvalerij | 0 | 495,715,049 | 100% | ||
cibola | 0 | 619,520,000 | 100% | ||
an-di | 0 | 610,227,200 | 100% | ||
gurev | 0 | 619,520,000 | 100% | ||
inforemix | 0 | 619,520,000 | 100% | ||
causalinference | 0 | 591,641,600 | 100% | ||
imuandwhaticisme | 0 | 613,324,800 | 100% | ||
yandot | 0 | 0 | 0% | ||
saufan | 0 | 583,395,283 | 100% | ||
sandrina.life | 0 | 885,166,213 | 100% | ||
alex666 | 0 | 520,396,800 | 100% | ||
n3r0 | 0 | 0 | 0% | ||
leonfroos | 0 | 630,833,732 | 100% | ||
nueza | 0 | 633,841,254 | 100% | ||
sraf | 0 | 551,372,800 | 100% | ||
adriand | 0 | 619,520,000 | 100% | ||
trivanoch | 0 | 515,066,743 | 100% | ||
ehabakhdar | 0 | -6,215,265,529 | -100% | ||
sultan-aceh | 0 | 380,083,080 | 100% | ||
oliverart | 0 | 619,520,000 | 100% | ||
atulkr | 0 | 607,129,600 | 100% | ||
ridwan-kamil | 0 | 145,175,608 | 100% | ||
rismanrachman | 0 | 1,444,935,062 | 100% | ||
akbaralivari | 0 | 619,561,290 | 100% | ||
timspeer | 0 | 3,899,331,086 | 100% | ||
cryptomam | 0 | 757,589,326 | 100% | ||
nessyquel | 0 | 619,520,000 | 100% | ||
yefeth | 0 | 734,910,935 | 100% | ||
swen | 0 | 607,129,600 | 100% | ||
otega | 0 | 617,949,957 | 100% | ||
ikramshaikh | 0 | 201,344,000 | 100% | ||
gguoss | 0 | 619,520,000 | 100% | ||
hato | 0 | 1,322,973,361 | 100% | ||
erone47 | 0 | 1,164,200,584 | 100% | ||
hayat | 0 | 0 | 100% | ||
manarckova | 0 | 934,390,021 | 100% | ||
nogalert | 0 | -3,566,551,457 | -10% | ||
sevlom777 | 0 | 0 | 100% | ||
dwbash | 0 | 1,160,649,586 | 100% | ||
minecrew | 0 | 167,215,610 | 100% | ||
mehrakana | 0 | 565,136,236 | 100% | ||
irvanni13 | 0 | 168,317,744 | 100% | ||
jaxtaylor | 0 | 1,243,120,188 | 100% | ||
lisnasusilawati | 0 | 1,161,802,585 | 100% | ||
binodsinghdhami | 0 | 1,165,702,612 | 100% | ||
jtavassol | 0 | 64,005,726 | 100% | ||
movietrailar | 0 | 896,732,629 | 100% | ||
ghettodweller | 0 | -10,000,834,654 | -10% | ||
denisreach | 0 | 882,310,287 | 100% | ||
fiber.god | 0 | 1,160,769,447 | 100% | ||
neot | 0 | 1,097,082,957 | 100% | ||
crossle | 0 | 1,160,645,442 | 100% | ||
wuhotan | 0 | 169,274,446 | 100% | ||
kokoliso | 0 | 218,417,853 | 100% | ||
sebboo4 | 0 | 959,630,020 | 100% | ||
ridhomaslizal | 0 | 1,034,443,026 | 100% | ||
mstodola91 | 0 | 0 | 100% | ||
mooncryption | 0 | 4,285,080,541 | 100% | ||
mufti | 0 | 0 | 0% | ||
holbein81 | 0 | 33,759,166,588 | 44% | ||
bvillagran | 0 | 1,160,643,551 | 100% | ||
jalai | 0 | 1,609,802,091 | 100% | ||
neoconqueso | 0 | 224,183,237 | 100% | ||
sbowmans96 | 0 | 1,160,642,884 | 100% | ||
hira-bashir | 0 | 621,319,229 | 100% | ||
anilmehta00 | 0 | 291,800,066 | 100% | ||
lovetheyogagirl | 0 | 1,194,733,119 | 100% | ||
ryvat | 0 | 748,614,489 | 100% | ||
tiktuk | 0 | 208,073,893 | 100% | ||
sumean75 | 0 | 8,602,839,256 | 100% | ||
oye1 | 0 | 1,000,033,750 | 100% | ||
ball8888 | 0 | 1,236,839,662 | 100% | ||
belgarath | 0 | 1,143,231,230 | 100% | ||
veliton77 | 0 | 1,273,412,381 | 100% | ||
crazyspazeface | 0 | 527,578,547 | 100% | ||
arrkiin | 0 | 16,076,165,528 | 100% | ||
mikebluehair42 | 0 | 395,928,394 | 100% | ||
samuraiz | 0 | -60,535,530 | -100% | ||
ograf | 0 | 1,160,638,564 | 100% | ||
arturoalex00 | 0 | 1,342,059,261 | 100% | ||
pyl96 | 0 | 0 | 100% | ||
steemresteem | 0 | 1,150,202,179 | 100% | ||
masterwu | 0 | 1,073,590,499 | 100% | ||
bassie | 0 | 1,005,659,681 | 100% | ||
superfluousman | 0 | 1,164,120,864 | 100% | ||
turist | 0 | 940,116,980 | 100% | ||
kashking5150 | 0 | 1,137,425,351 | 100% | ||
bappask | 0 | 81,357,225 | 100% | ||
spiritualmatters | 0 | 1,240,520,094 | 100% | ||
ajaykumark | 0 | 1,044,572,926 | 100% | ||
y-matsuwitter | 0 | 1,160,636,443 | 100% | ||
jaderpogi | 0 | 1,526,095,487 | 100% | ||
jhon.harvey | 0 | 1,925,395,592 | 100% | ||
fixatij | 0 | 149,576,167 | 100% | ||
artem.klinov | 0 | 1,120,012,891 | 100% | ||
jeffreybak | 0 | 1,160,717,617 | 100% | ||
aprilllicious | 0 | 506,759,125 | 100% | ||
cement41 | 0 | 767,247,832 | 100% | ||
thomasbcox | 0 | 1,160,634,949 | 100% | ||
nicholas1983 | 0 | 2,654,170,921 | 100% | ||
thomashblum | 0 | 730,455,520 | 100% | ||
i-steem | 0 | 308,300,381 | 100% | ||
doroga.dobra | 0 | 1,160,633,874 | 100% | ||
foxyt | 0 | 835,656,291 | 100% | ||
meutiarachmi | 0 | 701,996,213 | 100% | ||
serfis | 0 | 851,900,228 | 100% | ||
renaldrobby | 0 | 1,160,633,156 | 100% | ||
alexey11 | 0 | 635,005,113 | 100% | ||
aleksandranails | 0 | 534,574,201 | 100% | ||
chrisdemis | 0 | 1,154,829,427 | 100% | ||
manshar | 0 | 282,008,217 | 100% | ||
albanna | 0 | 1,257,384,759 | 100% | ||
juanmallorca | 0 | 298,138,115 | 100% | ||
asyriz7 | 0 | 1,209,272,186 | 100% | ||
stiuly | 0 | 1,146,098,667 | 100% | ||
tikkirill | 0 | 716,790,431 | 100% | ||
stendekq | 0 | 522,878,070 | 100% | ||
oodeyaa | 0 | 493,759,354 | 100% | ||
ahmedkamel2000 | 0 | 174,094,762 | 100% | ||
skillfulchux | 0 | 365,611,987 | 100% | ||
fabioborgogno | 0 | 1,170,857,006 | 100% | ||
hga777 | 0 | 127,746,607 | 100% | ||
gorex | 0 | 0 | 100% | ||
fredywnavas | 0 | 1,120,009,323 | 100% | ||
flanny790 | 0 | 0 | 100% | ||
fabio2614 | 0 | 1,085,189,869 | 100% | ||
finelife | 0 | 707,984,702 | 100% | ||
njstar0010 | 0 | 1,138,468,899 | 100% | ||
joshpeterson | 0 | 1,160,630,428 | 100% | ||
regleroc | 0 | 1,120,008,334 | 100% | ||
killuminati | 0 | 1,066,118,588 | 100% | ||
ergiegonzaga | 0 | 1,143,220,364 | 100% | ||
amanat1993 | 0 | 111,325,360 | 100% | ||
bobbyirawan | 0 | 799,596,605 | 61.6% | ||
ibrahimsardar | 0 | 1,160,629,552 | 100% | ||
yulie | 0 | 273,632,740 | 100% | ||
schmevepoobly | 0 | 1,091,418,213 | 100% | ||
moist-von-lipvig | 0 | 1,160,629,268 | 100% | ||
mysteir | 0 | 132,986,748,443 | 100% | ||
amitpro | 0 | 1,160,628,503 | 100% | ||
faber | 0 | 1,143,218,968 | 100% | ||
azziz | 0 | 406,219,926 | 100% | ||
nicolcb | 0 | 1,160,628,342 | 100% | ||
jbenticer | 0 | 1,096,793,392 | 100% | ||
traderview | 0 | 1,125,809,055 | 100% | ||
pitwi | 0 | 2,594,887,891 | 100% | ||
viviesteem | 0 | 1,137,495,831 | 100% | ||
alessio.amigoni | 0 | 1,160,626,705 | 100% | ||
zardoz144 | 0 | 731,194,619 | 100% | ||
vovannoviy | 0 | 1,143,216,903 | 100% | ||
joshtristram | 0 | 131,013,857 | 9.9% | ||
jollyroger1 | 0 | 493,265,958 | 100% | ||
onur1s | 0 | 1,015,547,424 | 100% | ||
jeremy1127 | 0 | 0 | 100% | ||
egleskoks | 0 | 1,160,624,455 | 100% | ||
jorjinho10 | 0 | 203,109,253 | 100% | ||
joelpaseearon | 0 | 992,333,177 | 100% | ||
bhargava | 0 | 0 | 0% | ||
nickperry | 0 | 1,067,773,336 | 100% | ||
bigbigfish | 0 | 1,149,016,939 | 100% | ||
jerroldseow | 0 | 1,061,970,118 | 100% | ||
kham | 0 | 963,317,148 | 100% | ||
shellbeer | 0 | 1,160,623,032 | 100% | ||
mouach | 0 | 435,233,634 | 100% | ||
andri911 | 0 | 1,079,379,408 | 100% | ||
yuristeem | 0 | 1,137,410,554 | 100% | ||
theassailant | 0 | 518,771,499 | 100% | ||
dreda | 0 | 1,120,001,128 | 100% | ||
twoblockchainz | 0 | 1,160,622,916 | 100% | ||
denis.savisko | 0 | 0 | 0% | ||
akki | 0 | 1,032,954,303 | 100% | ||
sayche | 0 | 1,003,938,705 | 100% | ||
umbul | 0 | 1,073,652,349 | 100% | ||
willow1114 | 0 | 615,130,065 | 100% | ||
kmangodb | 0 | 226,321,436 | 100% | ||
jheirendt | 0 | 1,160,622,737 | 100% | ||
bitty | 0 | 1,143,213,349 | 100% | ||
ibkar | 0 | 1,143,213,309 | 100% | ||
xhliu | 0 | 0 | 100% | ||
balakumar | 0 | 980,726,049 | 100% | ||
cryptobaron8 | 0 | 1,160,622,520 | 100% | ||
juaniev | 0 | 1,050,363,310 | 0% | ||
vicky.dodeng27 | 0 | 1,160,622,437 | 100% | ||
murtazahathai | 0 | 986,528,987 | 100% | ||
denihidayat | 0 | 1,160,622,294 | 100% | ||
micaldaviddin | 0 | 882,104,207 | 100% | ||
steemfuad | 0 | 400,414,636 | 100% | ||
moneyup | 0 | 1,160,622,093 | 100% | ||
harshraj | 0 | 1,160,621,971 | 100% | ||
mirzamughal | 0 | 1,137,409,512 | 100% | ||
zetetrahedron369 | 0 | 216,528,704 | 100% | ||
thegoliath | 0 | 179,896,366 | 100% | ||
javieralexvr | 0 | 1,050,362,621 | 100% | ||
mariachan | 0 | 0 | 0% | ||
intania | 0 | 922,694,063 | 100% | ||
carlitoff | 0 | 1,073,574,836 | 100% | ||
syt | 0 | 1,096,787,257 | 100% | ||
thesteemdream | 0 | 0 | 0% | ||
whoisthatarun | 0 | 429,429,905 | 100% | ||
joska | 0 | 1,160,621,358 | 100% | ||
wilfpod | 0 | 1,137,408,889 | 100% | ||
cryptorian | 0 | 1,143,211,854 | 100% | ||
giowindana | 0 | 1,160,621,154 | 100% | ||
brokenheartgang | 0 | 197,305,554 | 100% | ||
wilku | 0 | 1,160,620,903 | 100% | ||
scottisatthepool | 0 | 1,137,408,485 | 100% | ||
rollsman | 0 | 1,056,165,007 | 100% | ||
crytowin | 0 | 1,160,620,873 | 100% | ||
juanvilla | 0 | 1,160,620,817 | 100% | ||
tonytornado | 0 | 1,143,211,487 | 100% | ||
imamalkimas | 0 | 0 | 99.59% | ||
blockchaincenter | 0 | 1,160,620,380 | 100% | ||
thedewmedia | 0 | 1,137,407,918 | 100% | ||
juplek | 0 | 551,294,645 | 47.9% | ||
tameker | 0 | 1,032,952,025 | 100% | ||
trimmi | 0 | 1,160,619,918 | 100% | ||
yusliadi | 0 | 1,032,951,620 | 100% | ||
vanisis | 0 | 0 | 100% | ||
kevinbourque | 0 | 1,160,619,702 | 100% | ||
jasoncohen | 0 | 0 | 0% | ||
nekcorp | 0 | 1,160,619,615 | 100% | ||
yentl7 | 0 | 1,009,739,033 | 100% | ||
kindytrotsky | 0 | 1,160,619,576 | 100% | ||
xj3000 | 0 | 174,092,918 | 100% | ||
pra2009pandey | 0 | 1,160,619,308 | 100% | ||
anthony51 | 0 | 0 | 0% | ||
anvesh32 | 0 | 1,160,619,163 | 100% | ||
forresthealer | 0 | 1,160,619,122 | 100% | ||
flyfisher | 0 | 1,038,753,921 | 100% | ||
mentors | 0 | 1,160,618,868 | 100% | ||
elisa30 | 0 | 1,137,406,407 | 100% | ||
carlosmertens | 0 | 1,160,618,769 | 100% | ||
cryptomillion | 0 | 1,009,738,329 | 100% | ||
alhalim | 0 | 1,160,618,749 | 100% | ||
rogeliohdz | 0 | 1,160,618,744 | 100% | ||
ahmedfarag | 0 | 1,160,618,728 | 100% | ||
rabiah | 0 | 1,160,618,715 | 100% | ||
cryptopunk23 | 0 | 754,402,110 | 100% | ||
thubten | 0 | 824,039,197 | 100% | ||
makrem | 0 | 1,137,406,213 | 100% | ||
mike76 | 0 | 1,067,769,040 | 100% | ||
animatrix140 | 0 | 1,050,359,745 | 100% | ||
djray89 | 0 | 1,119,996,094 | 100% | ||
miminsteem | 0 | 945,903,430 | 100% | ||
swedishdrems | 0 | 1,096,783,721 | 100% | ||
zulfikarnoor | 0 | 591,915,020 | 55.73% | ||
blossomessoh | 0 | 1,160,617,657 | 100% | ||
erinahoque | 0 | 1,056,162,066 | 100% | ||
saadijaz | 0 | 591,914,985 | 100% | ||
coinjunkie556 | 0 | 1,096,783,637 | 100% | ||
olgavincent | 0 | 1,160,617,548 | 100% | ||
daiki3 | 0 | 1,160,617,494 | 100% | ||
romaluk | 0 | 649,945,788 | 100% | ||
laja | 0 | 1,160,617,443 | 100% | ||
skyrockzzz | 0 | 841,447,641 | 100% | ||
arin.fereg | 0 | 0 | 0% | ||
rihardszaimonts | 0 | 63,833,958 | 100% | ||
middreks | 0 | 1,160,617,431 | 100% | ||
alex.morris | 0 | 1,160,617,425 | 100% | ||
mrbaxi | 0 | 1,160,617,422 | 100% | ||
ababino | 0 | 1,160,617,411 | 100% | ||
kwabena-flo | 0 | 1,160,617,407 | 100% | ||
realise | 0 | 1,137,405,048 | 100% | ||
darudemydude | 0 | 1,160,617,395 | 100% | ||
hossamfarouk | 0 | 1,079,374,170 | 100% | ||
dasasoul | 0 | 974,918,602 | 100% | ||
valerynz | 0 | 1,079,374,166 | 100% | ||
haxmat | 0 | 1,160,617,374 | 100% | ||
siratalmustakim | 0 | 1,160,617,361 | 100% | ||
gallexy65 | 0 | 998,130,922 | 100% | ||
kerouac | 0 | 1,160,617,339 | 100% | ||
piranha-bob | 0 | 1,160,617,309 | 100% | ||
steemoshark | 0 | 1,160,617,305 | 100% | ||
agonzalez2 | 0 | 1,160,617,304 | 100% | ||
maorizzio | 0 | 1,143,208,013 | 100% | ||
rodrigombs | 0 | 1,131,601,820 | 100% | ||
irfanagustam | 0 | 1,160,617,247 | 100% | ||
hifilorau | 0 | 247,406,881 | 100% | ||
tarros | 0 | 1,160,617,232 | 100% | ||
ifreeski420 | 0 | 1,050,358,594 | 100% | ||
arklskbtcethrep | 0 | 1,137,404,866 | 100% | ||
dade | 0 | 1,143,207,944 | 100% | ||
josephlwiess | 0 | 1,160,617,199 | 100% | ||
simoncase | 0 | 1,160,617,181 | 100% | ||
vishalsingh4997 | 0 | 864,659,790 | 100% | ||
peter224 | 0 | 864,659,782 | 100% | ||
yujunchen | 0 | 1,160,617,145 | 100% | ||
aquill | 0 | 1,160,617,134 | 100% | ||
sagagora | 0 | 1,160,617,078 | 100% | ||
jeffreygilaga | 0 | 1,160,617,062 | 100% | ||
cheshurkat | 0 | 1,143,207,803 | 100% | ||
harveylevi | 0 | 1,137,404,705 | 100% | ||
philla | 0 | 1,160,617,025 | 100% | ||
nevergiveup3 | 0 | 1,160,616,990 | 100% | ||
depot-boost | 0 | 1,032,949,096 | 100% | ||
aakashtyagi | 0 | -1,160,616,935 | -100% | ||
stephanieanne | 0 | 0 | 0% | ||
singlebruce | 0 | 1,160,616,814 | 100% | ||
phemxonic | 0 | 1,160,616,806 | 100% | ||
kiranshrestha | 0 | 1,143,207,488 | 100% | ||
adelanzid | 0 | 1,160,616,681 | 100% | ||
dremer1 | 0 | 1,160,616,662 | 100% | ||
pantoranews | 0 | 0 | 0% | ||
nolajoe | 0 | 1,160,616,570 | 100% | ||
zubaili | 0 | 1,160,616,543 | 100% | ||
brinis | 0 | 1,160,616,536 | 100% | ||
miguelr1 | 0 | 1,160,616,515 | 100% | ||
mtommalieh | 0 | 1,160,616,512 | 100% | ||
redditmaster | 0 | 1,160,616,489 | 100% | ||
bino | 0 | 1,160,616,486 | 100% | ||
dimpu | 0 | 858,856,197 | 100% | ||
curion | 0 | 1,160,616,476 | 100% | ||
jacobmarquez | 0 | 1,021,342,492 | 100% | ||
pat9 | 0 | 1,160,616,462 | 100% | ||
alex304 | 0 | 1,143,207,214 | 100% | ||
great-richy | 0 | 1,021,342,456 | 100% | ||
marckdrums | 0 | 1,032,948,518 | 100% | ||
schurik | 0 | 969,114,564 | 100% | ||
hrsh.goutham | 0 | 1,137,403,902 | 100% | ||
joemlr | 0 | 1,160,616,220 | 100% | ||
btcscalper | 0 | 667,354,254 | 100% | ||
jagg1 | 0 | 1,137,403,683 | 100% | ||
keungryan0038 | 0 | 0 | 0% | ||
projectkarma | 0 | 1,160,615,953 | 100% | ||
zzboy | 0 | 1,137,403,467 | 100% | ||
kizlercrypto | 0 | 1,160,615,775 | 100% | ||
jopasserat | 0 | 1,143,206,465 | 100% | ||
broturd | 0 | 1,137,403,207 | 100% | ||
tymed | 0 | 1,143,206,236 | 100% | ||
maxcar975 | 0 | 1,125,796,997 | 100% | ||
fndjang | 0 | 1,137,403,150 | 100% | ||
sanwaimyint | 0 | 266,941,555 | 27.27% | ||
fisnikdestani | 0 | 1,137,403,123 | 100% | ||
chicane42 | 0 | 1,096,781,580 | 100% | ||
diegoarroyook | 0 | 1,119,993,839 | 100% | ||
nellytjie | 0 | 1,160,615,344 | 100% | ||
manish22rai | 0 | 1,137,403,015 | 100% | ||
etheos | 0 | 1,160,615,300 | 100% | ||
bittu.verma | 0 | 1,137,402,881 | 100% | ||
pleiades | 0 | 1,160,615,105 | 100% | ||
prateek.shr | 0 | 1,137,402,768 | 100% | ||
nirza.riyaz | 0 | 1,050,356,601 | 100% | ||
ranaji | 0 | 1,119,993,472 | 100% | ||
debby.cali | 0 | 1,050,356,554 | 100% | ||
theresa.rusl | 0 | 1,119,993,444 | 100% | ||
maria.pabla | 0 | 1,119,993,437 | 100% | ||
gayatri.st3mgrl | 0 | 1,119,993,431 | 100% | ||
nhelzen | 0 | 1,119,993,375 | 100% | ||
rubanbalaji | 0 | 882,067,235 | 100% | ||
basyir | 0 | 1,119,993,209 | 100% | ||
sarhyd | 0 | 684,762,302 | 100% | ||
alfavedic | 0 | 1,160,613,834 | 100% | ||
mnayak | 0 | 290,153,456 | 100% | ||
ebx2 | 0 | 1,119,992,303 | 100% | ||
racer1 | 0 | 1,160,613,730 | 100% | ||
boytaufik | 0 | 1,160,613,594 | 100% | ||
yehtethein | 0 | 1,073,565,588 | 100% | ||
akakshaya | 0 | 0 | 0% | ||
wxzurd | 0 | 0 | 100% | ||
kovalski | 0 | 0 | 100% | ||
hashcrown | 0 | 0 | 100% | ||
adigotze | 0 | 0 | 100% | ||
kanchana | 0 | 0 | 100% | ||
joxus | 0 | 0 | 100% | ||
markwu | 0 | 0 | 100% | ||
steadycoins | 0 | 0 | 100% | ||
ildottore | 0 | 0 | 100% | ||
roborton | 0 | 0 | 100% | ||
sungcherkwon | 0 | 0 | 100% | ||
sambot | 0 | 0 | 100% | ||
jungch98 | 0 | 0 | 100% | ||
liar | 0 | 0 | 100% |
Guess can bring change. Thanks
author | abitghimire |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t100507873z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 17:04:24 |
last_update | 2017-09-05 17:04:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 17:04:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 268,060,715 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,966,696 |
net_rshares | 0 |
Absolutely wonderful🏴 "rest peacefully and wake up and rage" Stxs JOURNALIST @acab1312news
author | acab1312news |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t052052173z |
category | eos |
json_metadata | {"tags":["eos"],"users":["acab1312news"],"app":"steemit/0.1"} |
created | 2017-09-03 05:20:54 |
last_update | 2017-09-03 05:35:36 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:20:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 4,891,948,847,901 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,711,583 |
net_rshares | 16,746,440,509 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acab1312news | 0 | 16,746,440,509 | 100% |
Nice Post! *Upvoted and Resteemed*
author | ahsansaeed |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t153401657z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 15:33:48 |
last_update | 2017-09-05 15:33:48 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 15:33:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 1,201,935,056,486 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,958,471 |
net_rshares | 0 |
If EOS succed, its going to be hugeeee.
author | ahuruglica |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t231437463z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 23:14:39 |
last_update | 2017-09-03 23:14:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 23:14:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.838 HBD |
curator_payout_value | 0.275 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 14,261,615,182,387 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,789,890 |
net_rshares | 309,216,415,535 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kingg | 0 | 1,525,460,906 | 100% | ||
ctyptouniverse | 0 | 302,379,671,711 | 100% | ||
ahuruglica | 0 | 5,311,282,918 | 100% |
This post was very informative thanks for sharing. upvoted and followed. Regards @ajaykumark !!
author | ajaykumark |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t051015811z |
category | eos |
json_metadata | {"tags":["eos"],"users":["ajaykumark"],"app":"steemit/0.1"} |
created | 2017-09-03 05:10:15 |
last_update | 2017-09-03 05:10:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:10:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 29,670,820,126 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,710,958 |
net_rshares | 0 |
amazing project @eosio. Crypto Life!
author | amaliatul |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t130453480z |
category | eos |
json_metadata | {"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"} |
created | 2017-09-03 13:04:48 |
last_update | 2017-09-03 13:04:48 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 13:04:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 1,657,063,691,423 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,740,321 |
net_rshares | 0 |
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!
author | amvanaken |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t052037145z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-09-03 05:20:36 |
last_update | 2017-09-03 05:20:36 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:20:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 18,480,113,935,205 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,711,565 |
net_rshares | 3,786,014,512 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gavincapital | 0 | 608,913,200 | 100% | ||
egetror | 0 | 2,526,475,905 | 100% | ||
amvanaken | 0 | 498,862,110 | 1% | ||
wuhotan | 0 | 151,763,297 | 100% |
so what do you think on EAO like is today?
author | andreolf |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t203122601z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 20:31:21 |
last_update | 2017-09-05 20:31:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 20:31:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 1,543,487,410,268 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,982,991 |
net_rshares | 0 |
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.
author | andybets |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t074002685z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 07:40:03 |
last_update | 2017-09-03 07:41:39 |
depth | 1 |
children | 3 |
last_payout | 2017-09-10 07:40:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 333 |
author_reputation | 15,189,090,569,005 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,719,607 |
net_rshares | 0 |
Not really.
author | dan |
---|---|
permlink | re-andybets-re-eosio-the-dawn-of-eos-io-20170903t142442478z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 14:24:42 |
last_update | 2017-09-03 14:24:42 |
depth | 2 |
children | 2 |
last_payout | 2017-09-10 14:24:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 155,470,101,136,708 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,747,205 |
net_rshares | 0 |
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.
author | andybets |
---|---|
permlink | re-dan-re-andybets-re-eosio-the-dawn-of-eos-io-20170903t173016650z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:30:15 |
last_update | 2017-09-03 17:30:57 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 17:30:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 289 |
author_reputation | 15,189,090,569,005 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,763,831 |
net_rshares | 0 |
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.
author | andybets |
---|---|
permlink | re-dan-re-andybets-re-eosio-the-dawn-of-eos-io-20170920t063018922z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/eos/@eosio/eos-io-storage-white-paper-now-available"],"app":"steemit/0.1"} |
created | 2017-09-20 06:30:18 |
last_update | 2017-09-20 06:30:18 |
depth | 3 |
children | 0 |
last_payout | 2017-09-27 06:30:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 187 |
author_reputation | 15,189,090,569,005 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,394,985 |
net_rshares | 0 |
There was no doubt it could be prepared for a bullish start
author | anforo |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t205759583z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 20:58:00 |
last_update | 2017-09-03 20:58:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 20:58:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.319 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 2,861,241,802,070 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,780,492 |
net_rshares | 90,003,404,955 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anforo | 0 | 90,003,404,955 | 100% |
awesome
author | aomame |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t214132459z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 21:41:33 |
last_update | 2017-09-04 21:41:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 21:41:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 606,677,653,311 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,887,019 |
net_rshares | 12,434,844,718 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aomame | 0 | 12,434,844,718 | 100% |
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
author | arcange |
---|---|
permlink | re-the-dawn-of-eos-io-20170903t163951000z |
category | eos |
json_metadata | "" |
created | 2017-09-04 14:38:30 |
last_update | 2017-09-04 14:38:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 14:38:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 285 |
author_reputation | 1,148,272,911,368,966 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,851,329 |
net_rshares | 0 |
Me http://stream1.gifsoup.com/webroot/animatedgifs2/1403563_o.gif
author | arturoalex00 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t050319607z |
category | eos |
json_metadata | {"tags":["eos"],"image":["http://stream1.gifsoup.com/webroot/animatedgifs2/1403563_o.gif"],"app":"steemit/0.1"} |
created | 2017-09-04 05:04:36 |
last_update | 2017-09-04 05:04:36 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 05:04:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 824,264,602,328 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,810,907 |
net_rshares | 0 |
Good post fruend
author | ata27 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201793t13552270z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-03 06:56:36 | ||||||
last_update | 2017-09-03 06:56:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-10 06:56:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 16 | ||||||
author_reputation | 2,655,276,404,578 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,716,972 | ||||||
net_rshares | 0 |
This post was very informative thank you for sharing you have my upvote Keep smiling, reading, writing and voting!!! @azziz
author | azziz |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t185323418z |
category | eos |
json_metadata | {"tags":["eos"],"users":["azziz"],"app":"steemit/0.1"} |
created | 2017-09-03 18:53:33 |
last_update | 2017-09-03 18:53:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 18:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | -1,736,799,682 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,770,937 |
net_rshares | 0 |
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.
author | azziz |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t122142847z |
category | eos |
json_metadata | {"tags":["eos"],"users":["azziz"],"app":"steemit/0.1"} |
created | 2017-09-05 12:21:45 |
last_update | 2017-09-05 12:21:45 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 12:21:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 300 |
author_reputation | -1,736,799,682 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,941,483 |
net_rshares | 0 |
nice post
author | bappask |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t135523480z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 13:55:30 |
last_update | 2017-09-03 13:55:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 13:55:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 38,362,788,613 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,744,664 |
net_rshares | 0 |
I keep buying right now the price is pretty low. I expect at least x25 returns within 2 years.
author | behamot |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t100533689z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 10:05:33 |
last_update | 2017-09-06 10:05:33 |
depth | 1 |
children | 1 |
last_payout | 2017-09-13 10:05:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 86,301,808,625 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,034,690 |
net_rshares | 0 |
Hi behamot, new here. Is it better to buy EOS on exchange, or ICO tokens? Now that it is cheap at $0.80.
author | alfredko |
---|---|
permlink | re-behamot-re-eosio-the-dawn-of-eos-io-20170909t101413166z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-09 10:14:12 |
last_update | 2017-09-09 10:14:12 |
depth | 2 |
children | 0 |
last_payout | 2017-09-16 10:14:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 12,172,655 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,342,997 |
net_rshares | 0 |
that's great!i will try to translate it to cn community
author | bigbigfish | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201793t133418881z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-03 05:34:30 | ||||||
last_update | 2017-09-03 05:34:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-10 05:34:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.381 HBD | ||||||
curator_payout_value | 0.012 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 55 | ||||||
author_reputation | 1,608,578,620,795 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,712,399 | ||||||
net_rshares | 106,508,290,176 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 100,204,618,376 | 0.5% | ||
mysteem | 0 | 84,110,067 | 1% | ||
demo | 0 | 162,276,774 | 1% | ||
feruz | 0 | 1,521,402,005 | 1% | ||
esteemapp | 0 | 2,048,385,867 | 1% | ||
bounties | 0 | 172,474,655 | 1% | ||
steempoll | 0 | 167,421,006 | 1% | ||
tipping | 0 | 152,152,984 | 1% | ||
amvanaken | 0 | 1,995,448,442 | 5% |
https://steemit.com/@binodsinghdhami upvote me plz.
author | binodsinghdhami |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t100355380z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/@binodsinghdhami"],"app":"steemit/0.1"} |
created | 2017-09-05 10:04:18 |
last_update | 2017-09-05 10:04:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 10:04:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | -12,785,561,579 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,931,994 |
net_rshares | 0 |
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.
author | bitcoinflood |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t052340575z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:23:39 |
last_update | 2017-09-03 05:23:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:23:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 130 |
author_reputation | 1,645,032,522,271,404 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,711,737 |
net_rshares | 5,283,373,110 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,632,376,092 | 100% | ||
bitcoinflood | 0 | 2,415,908,710 | 10% | ||
zetetrahedron369 | 0 | 235,088,308 | 100% |
Looking good
author | bitcoinmeetups |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t052505682z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:25:15 |
last_update | 2017-09-03 05:25:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:25:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 236,882,220,234 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,711,829 |
net_rshares | 0 |
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!
author | blockchain-mike |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t171228321z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:12:30 |
last_update | 2017-09-03 17:12:30 |
depth | 1 |
children | 1 |
last_payout | 2017-09-10 17:12:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 798 |
author_reputation | 19,214,800 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,762,247 |
net_rshares | 1,229,747,200 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shareme | 0 | 610,227,200 | 100% | ||
blockchain-mike | 0 | 619,520,000 | 100% |
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.
author | ashaman |
---|---|
permlink | re-blockchain-mike-re-eosio-the-dawn-of-eos-io-20170911t104218846z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-11 10:42:18 |
last_update | 2017-09-11 10:42:18 |
depth | 2 |
children | 0 |
last_payout | 2017-09-18 10:42:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 323 |
author_reputation | 3,785,245,463,720 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,542,980 |
net_rshares | 0 |
very nice sharing, thanks for sharing with us i am following with pleasure :)
author | bot35 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t154339578z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 15:43:45 |
last_update | 2017-09-04 15:43:45 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 15:43:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 167,858,605,724 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,857,205 |
net_rshares | 0 |
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...
author | bsingh1 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t134521165z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 13:45:24 |
last_update | 2017-09-03 13:45:24 |
depth | 1 |
children | 3 |
last_payout | 2017-09-10 13:45:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 207 |
author_reputation | 1,184,721,334 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,743,808 |
net_rshares | 0 |
author | dan |
---|---|
permlink | re-bsingh1-re-eosio-the-dawn-of-eos-io-20170903t143010330z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 14:30:09 |
last_update | 2017-09-03 14:30:09 |
depth | 2 |
children | 2 |
last_payout | 2017-09-10 14:30:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 155,470,101,136,708 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,747,679 |
net_rshares | 10,902,296,890 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tbnfl4sun | 0 | 9,809,544,764 | 25% | ||
veliton77 | 0 | 1,092,752,126 | 100% |
Thanks @dan
author | bsingh1 |
---|---|
permlink | re-dan-re-bsingh1-re-eosio-the-dawn-of-eos-io-20170903t182314176z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-09-03 18:23:18 |
last_update | 2017-09-03 18:23:18 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 18:23:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 1,184,721,334 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,768,264 |
net_rshares | 0 |
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
author | nanowins77 |
---|---|
permlink | re-dan-re-bsingh1-re-eosio-the-dawn-of-eos-io-20170903t160509198z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 16:04:48 |
last_update | 2017-09-03 16:04:48 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 16:04:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 931 |
author_reputation | 139,924,811,172 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,756,186 |
net_rshares | -1,325,215,760,066 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,325,158,454,538 | -1% | ||
blacklist-a | 0 | -57,305,528 | -10% |
wow i like
author | cancervero |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20190114t232802190z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2019-01-14 23:28:03 |
last_update | 2019-01-14 23:28:03 |
depth | 1 |
children | 0 |
last_payout | 2019-01-21 23:28:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 905,753,620 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,383,762 |
net_rshares | 0 |
Looking brilliant!! I will definitely increase my position this week :)
author | carlosmertens |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t204529369z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 20:45:30 |
last_update | 2017-09-03 20:45:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 20:45:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 938,627,222 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,779,529 |
net_rshares | 0 |
Dan Larimer is the Elon Musk of crypto!
author | champmc |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t181012489z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 18:10:24 |
last_update | 2017-09-03 18:10:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 18:10:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 92,332,158 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,767,259 |
net_rshares | 1,800,303,189 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 1,800,303,189 | 100% |
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
author | charlesx |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t080051539z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://cdn1.vox-cdn.com/assets/4707984/kingjeong.gif"],"app":"steemit/0.1"} |
created | 2017-09-03 08:00:51 |
last_update | 2017-09-03 08:00:51 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 08:00:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 230 |
author_reputation | 21,751,943,663,024 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,720,936 |
net_rshares | 3,573,662,863 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,481,090,110 | 100% | ||
veliton77 | 0 | 1,092,572,753 | 100% |
the question is how we who dont know the programming can join in?
author | charliehao |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t144933807z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 14:48:54 |
last_update | 2017-09-03 14:48:54 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 14:48:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 7,552,087,992 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,749,358 |
net_rshares | 0 |
I'm pretty excited about this development. Can't wait to see it in action.
author | chicane42 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t163758853z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 16:37:57 |
last_update | 2017-09-05 16:37:57 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 16:37:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 805,874,022 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,964,341 |
net_rshares | 1,143,206,198 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chicane42 | 0 | 1,143,206,198 | 100% |
author | cloudspyder | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201793t14144398z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-03 06:09:36 | ||||||
last_update | 2017-09-03 06:09:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-10 06:09:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 46 | ||||||
author_reputation | 8,281,689,777,163 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,714,313 | ||||||
net_rshares | 3,505,672,114 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,435,704,315 | 100% | ||
veliton77 | 0 | 1,069,967,799 | 100% |
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!
author | coderaviverma |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t170520993z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/cryptocurrency/@coderaviverma/3-cryptocurrencies-going-to-the-moon-walton-chain-included"],"app":"steemit/0.1"} |
created | 2017-09-05 17:05:21 |
last_update | 2017-09-05 17:05:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 17:05:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 195 |
author_reputation | 63,350,476,134 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,966,784 |
net_rshares | 0 |
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?
author | coinjunkie556 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t170403765z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:04:06 |
last_update | 2017-09-03 17:04:06 |
depth | 1 |
children | 3 |
last_payout | 2017-09-10 17:04:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 760 |
author_reputation | 1,024,294,516 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,761,496 |
net_rshares | 934,297,172 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
coinjunkie556 | 0 | 934,297,172 | 100% |
In the first sentence, did you really intend to write NEO?
author | ghaaspur |
---|---|
permlink | re-coinjunkie556-re-eosio-the-dawn-of-eos-io-20170903t180946584z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 18:09:48 |
last_update | 2017-09-03 18:09:48 |
depth | 2 |
children | 1 |
last_payout | 2017-09-10 18:09:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 278,893,346,456 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,767,213 |
net_rshares | 957,509,524 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
coinjunkie556 | 0 | 957,509,524 | 100% |
LMAO no, but I do have plenty of it. NEO has been on my mind lately, so that probably explains it. :D
author | coinjunkie556 |
---|---|
permlink | re-ghaaspur-re-coinjunkie556-re-eosio-the-dawn-of-eos-io-20170903t192749011z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 19:27:51 |
last_update | 2017-09-03 19:27:51 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 19:27:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 1,024,294,516 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,773,660 |
net_rshares | 922,690,996 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
coinjunkie556 | 0 | 922,690,996 | 100% |
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.
author | surfyogi |
---|---|
permlink | re-coinjunkie556-re-eosio-the-dawn-of-eos-io-20170910t005254555z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-10 00:52:54 |
last_update | 2017-09-10 00:52:54 |
depth | 2 |
children | 0 |
last_payout | 2017-09-17 00:52:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 461 |
author_reputation | 31,155,045,810,316 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,407,377 |
net_rshares | 0 |
UPDATE: CHINA BANS ALL ICO'S AND EOS IS IN CHINA
author | cqdx |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t181145469z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 18:11:45 |
last_update | 2017-09-04 18:11:45 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 18:11:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 29,591,656,050 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,870,719 |
net_rshares | 0 |
Very good improvements! It was a good job.
author | cristian07 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t103621597z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 10:36:24 |
last_update | 2017-09-03 10:36:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 10:36:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 1,587,120,838,149 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,730,058 |
net_rshares | 0 |
author | cryptotrader2017 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t071653703z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 07:16:54 |
last_update | 2017-09-03 07:16:54 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 07:16:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 7,902,886,759,634 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,718,202 |
net_rshares | 2,327,898,891 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,193,646,744 | 100% | ||
wuhotan | 0 | 134,252,147 | 100% |
Next Eherium killer called EOS.
author | cutegirl |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t101619741z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 10:16:18 |
last_update | 2017-09-06 10:16:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 10:16:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 393,296,319,466 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,035,359 |
net_rshares | 0 |
author | d00b |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t034921263z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 03:49:21 |
last_update | 2017-09-04 03:49:21 |
depth | 1 |
children | 2 |
last_payout | 2017-09-11 03:49:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.150 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 50,101,716,368 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,806,193 |
net_rshares | 42,618,353,843 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cqdx | 0 | 1,595,779,203 | 100% | ||
d00b | 0 | 41,022,574,640 | 100% |
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
author | anarcho |
---|---|
permlink | re-d00b-re-eosio-the-dawn-of-eos-io-20170907t075028814z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-07 07:50:30 |
last_update | 2017-09-07 07:50:30 |
depth | 2 |
children | 0 |
last_payout | 2017-09-14 07:50:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.098 HBD |
curator_payout_value | 0.032 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 239 |
author_reputation | 34,969,131,174 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,125,870 |
net_rshares | 41,063,228,157 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
d00b | 0 | 41,063,228,157 | 100% |
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 ;).
author | kingg |
---|---|
permlink | re-d00b-re-eosio-the-dawn-of-eos-io-20170904t214455572z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 21:45:03 |
last_update | 2017-09-04 21:45:03 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 21:45:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.106 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 149 |
author_reputation | 184,714,408,524 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,887,292 |
net_rshares | 41,029,111,710 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anarcho | 0 | 619,520,000 | 100% | ||
d00b | 0 | 40,409,591,710 | 100% |
I am very excited to launch my theatre token distribution on EOS!!
author | darkflame |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t173840999z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 17:38:42 |
last_update | 2017-09-04 17:38:42 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 17:38:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 92,418,588,505,994 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,867,794 |
net_rshares | 0 |
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.
author | darkflame |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t064920187z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 06:49:21 |
last_update | 2017-09-06 06:49:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 06:49:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 202 |
author_reputation | 92,418,588,505,994 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,021,706 |
net_rshares | 0 |
Greatttt
author | davidrestrepo |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t052750267z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 05:27:51 |
last_update | 2017-09-04 05:27:51 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 05:27:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.408 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 757,119,534,433 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,812,310 |
net_rshares | 116,856,289,268 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davidrestrepo | 0 | 116,856,289,268 | 100% |
10,000 single threaded transactions per second on a multi-node network? That makes bitcoin look like a turtle.
author | deepwaterscrypto |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t060051912z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:00:51 |
last_update | 2017-09-03 06:01:12 |
depth | 1 |
children | 7 |
last_payout | 2017-09-10 06:00:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 194,386,454,476 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,713,875 |
net_rshares | 14,429,807,871 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
runaway-psyche | 0 | 3,079,095,175 | 13% | ||
gavincapital | 0 | 587,166,300 | 100% | ||
luishurtado39 | 0 | 6,758,329,113 | 100% | ||
egetror | 0 | 2,738,276,280 | 100% | ||
wuhotan | 0 | 151,763,297 | 100% | ||
veliton77 | 0 | 1,115,177,706 | 100% |
As does all graphene blockchains do (BitShares, Steemit, PeerPlays, GoLos....)
author | full-steem-ahead |
---|---|
permlink | re-deepwaterscrypto-re-eosio-the-dawn-of-eos-io-20170903t172633919z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:26:33 |
last_update | 2017-09-03 17:26:33 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 17:26:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 30,177,498,572,933 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,763,481 |
net_rshares | 0 |
It makes bitshars look like a turtle and bitcoin a statue
author | leprechaun | ||||||
---|---|---|---|---|---|---|---|
permlink | re-deepwaterscrypto-201793t214656552z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-04 00:47:21 | ||||||
last_update | 2017-09-04 00:47:21 | ||||||
depth | 2 | ||||||
children | 2 | ||||||
last_payout | 2017-09-11 00:47:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.037 HBD | ||||||
curator_payout_value | 0.010 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 57 | ||||||
author_reputation | 43,025,812,810,398 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,795,221 | ||||||
net_rshares | 14,159,771,954 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
greenerz | 0 | 13,016,487,665 | 100% | ||
enforcer2k | 0 | 1,143,284,289 | 100% |
Bitshares is like a starship and EOS like a starship fleet
author | idealist |
---|---|
permlink | re-leprechaun-re-deepwaterscrypto-201793t214656552z-20170905t102942667z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 10:29:42 |
last_update | 2017-09-05 10:29:42 |
depth | 3 |
children | 0 |
last_payout | 2017-09-12 10:29:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 3,482,305,647,602 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,933,768 |
net_rshares | 0 |
bitcoin Is like Saturn V, then.
author | leprechaun | ||||||
---|---|---|---|---|---|---|---|
permlink | re-leprechaun-201795t9340350z | ||||||
category | eos | ||||||
json_metadata | {"tags":"e","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-05 12:03:45 | ||||||
last_update | 2017-09-05 12:03:45 | ||||||
depth | 3 | ||||||
children | 0 | ||||||
last_payout | 2017-09-12 12:03:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 32 | ||||||
author_reputation | 43,025,812,810,398 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,940,081 | ||||||
net_rshares | 0 |
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.
author | squidlings |
---|---|
permlink | re-deepwaterscrypto-re-eosio-the-dawn-of-eos-io-20170903t203051124z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 20:30:51 |
last_update | 2017-09-03 20:30:51 |
depth | 2 |
children | 2 |
last_payout | 2017-09-10 20:30:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 465 |
author_reputation | 457,282,197 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,778,537 |
net_rshares | 0 |
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
author | tamwin33 |
---|---|
permlink | re-squidlings-re-deepwaterscrypto-re-eosio-the-dawn-of-eos-io-20170903t210923913z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/eos/@dan/response-to-vitalik-buterin-on-eos"],"app":"steemit/0.1"} |
created | 2017-09-03 21:09:24 |
last_update | 2017-09-03 21:09:24 |
depth | 3 |
children | 1 |
last_payout | 2017-09-10 21:09:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 879 |
author_reputation | 3,540,334,005,966 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,781,411 |
net_rshares | 1,160,648,457 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dae | 0 | 1,160,648,457 | 100% | ||
dallasj | 0 | 0 | 100% |
한국어 번역을 게시하였습니다. I posted a Korean translation here: https://steemit.com/eos/@dev1by0/eos-io-the-dawn-of-eos-io
author | dev1by0 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t114247135z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/eos/@dev1by0/eos-io-the-dawn-of-eos-io"],"app":"steemit/0.1"} |
created | 2017-09-03 11:42:48 |
last_update | 2017-09-03 13:18:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 11:42:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 10,155,370,629,176 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,734,452 |
net_rshares | 3,852,717,231 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,102,875,154 | 100% | ||
lukecooper | 0 | 618,233,300 | 100% | ||
dev1by0 | 0 | 1,131,608,777 | 100% |
"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
author | droucil |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t052259807z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:23:00 |
last_update | 2017-09-03 05:23:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:23:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | 14,002,540,951,182 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,711,708 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zzboy | 0 | 0 | 0% |
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 ...
author | eikr |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t184339001z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 18:43:39 |
last_update | 2017-09-04 18:43:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 18:43:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 409 |
author_reputation | 184,848,194 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,873,529 |
net_rshares | 0 |
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?
author | emerge | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201793t182429898z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-03 10:24:36 | ||||||
last_update | 2017-09-03 10:24:36 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2017-09-10 10:24:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.366 HBD | ||||||
curator_payout_value | 0.012 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 199 | ||||||
author_reputation | 2,561,516,158,392 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,729,292 | ||||||
net_rshares | 104,541,057,782 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 100,217,821,579 | 0.5% | ||
mysteem | 0 | 84,110,067 | 1% | ||
demo | 0 | 162,276,774 | 1% | ||
feruz | 0 | 1,521,402,005 | 1% | ||
esteemapp | 0 | 2,063,398,712 | 1% | ||
bounties | 0 | 172,474,655 | 1% | ||
steempoll | 0 | 167,421,006 | 1% | ||
tipping | 0 | 152,152,984 | 1% |
> 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.
author | full-steem-ahead |
---|---|
permlink | re-emerge-re-eosio-201793t182429898z-20170903t172523054z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:25:21 |
last_update | 2017-09-03 17:25:21 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 17:25:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 282 |
author_reputation | 30,177,498,572,933 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,763,365 |
net_rshares | 0 |
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 :)
author | eric-boucher |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t060533129z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:05:33 |
last_update | 2017-09-03 06:05:33 |
depth | 1 |
children | 39 |
last_payout | 2017-09-10 06:05:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.376 HBD |
curator_payout_value | 0.066 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 263 |
author_reputation | 68,503,601,066,539 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,714,114 |
net_rshares | 370,043,899,883 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 248,294,591,971 | 100% | ||
soushi888 | 0 | 32,013,744,387 | 100% | ||
tbnfl4sun | 0 | 9,809,544,764 | 25% | ||
ikegass33 | 0 | 77,981,245,040 | 100% | ||
xiaoyang.zhu | 0 | 0 | 0% | ||
isaacm | 0 | 620,717,585 | 100% | ||
wuhotan | 0 | 163,437,396 | 100% | ||
mrauben | 0 | 1,160,618,740 | 100% | ||
arin.fereg | 0 | 0 | 0% | ||
wxzurd | 0 | 0 | 100% |
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.
author | anarcho |
---|---|
permlink | re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170906t222450687z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 22:24:54 |
last_update | 2017-09-06 22:24:54 |
depth | 2 |
children | 3 |
last_payout | 2017-09-13 22:24:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 539 |
author_reputation | 34,969,131,174 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,092,159 |
net_rshares | 15,067,632,927 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 15,067,632,927 | 5% |
Great points added up to the arsenal of goodness that came my way already, thanks a bunch! Namaste :)
author | eric-boucher |
---|---|
permlink | re-anarcho-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170906t224047187z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 22:40:45 |
last_update | 2017-09-06 22:40:45 |
depth | 3 |
children | 2 |
last_payout | 2017-09-13 22:40:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.047 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 68,503,601,066,539 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,093,148 |
net_rshares | 15,067,632,927 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 15,067,632,927 | 5% |
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.
author | balkrishna |
---|---|
permlink | re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t063903954z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://ec40a397.usi-tech.info/"],"app":"steemit/0.1"} |
created | 2017-09-04 06:39:09 |
last_update | 2017-09-04 06:39:09 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 06:39:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 560 |
author_reputation | -464,476,183,299 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,816,789 |
net_rshares | -7,597,730,097 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kingmotan | 0 | -7,597,730,097 | -100% |
Upload an Exodus wallet. You can trade it with other cryptocurrencies right inside that wallet. It's pretty cool.
author | bardamazon |
---|---|
permlink | re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t010636154z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 01:06:36 |
last_update | 2017-09-04 01:06:36 |
depth | 2 |
children | 3 |
last_payout | 2017-09-11 01:06:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 115 |
author_reputation | 52,621,952,587 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,796,303 |
net_rshares | 17,341,011,672 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 7,531,466,908 | 2% | ||
tbnfl4sun | 0 | 9,809,544,764 | 25% |
Thanks a bunch for the suggestion, it is a powerful path to take. Namaste :)
author | eric-boucher |
---|---|
permlink | re-bardamazon-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t213117415z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 21:31:15 |
last_update | 2017-09-04 21:31:15 |
depth | 3 |
children | 2 |
last_payout | 2017-09-11 21:31:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 68,503,601,066,539 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,886,288 |
net_rshares | 7,531,466,908 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 7,531,466,908 | 2% |
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)
author | jaxtaylor |
---|---|
permlink | re-eric-boucher-re-eosio-the-dawn-of-eos-io-20171027t082139598z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-10-27 08:21:45 |
last_update | 2017-10-27 08:21:45 |
depth | 2 |
children | 0 |
last_payout | 2017-11-03 08:21:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 423 |
author_reputation | 29,941,316,598 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,675,878 |
net_rshares | 0 |
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.
author | skyeg3 |
---|---|
permlink | re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170903t063033882z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:30:33 |
last_update | 2017-09-03 06:30:33 |
depth | 2 |
children | 1 |
last_payout | 2017-09-10 06:30:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 948,208,874 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,715,443 |
net_rshares | 12,235,535,747 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 10,041,955,877 | 3% | ||
rameshsingaram | 0 | 1,160,630,353 | 100% | ||
arin.fereg | 0 | 1,032,949,517 | 100% |
Thanks a bunch for the straightforward instructions! Namaste :)
author | eric-boucher |
---|---|
permlink | re-skyeg3-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t211921912z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 21:19:21 |
last_update | 2017-09-04 21:19:21 |
depth | 3 |
children | 0 |
last_payout | 2017-09-11 21:19:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 68,503,601,066,539 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,885,426 |
net_rshares | 10,041,955,877 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 10,041,955,877 | 3% |
use exodus wallet, it is really simple
author | vdatsuk |
---|---|
permlink | re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170908t093409255z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-08 09:30:57 |
last_update | 2017-09-08 09:30:57 |
depth | 2 |
children | 1 |
last_payout | 2017-09-15 09:30:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 78,572,009 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,234,885 |
net_rshares | 5,028,608,620 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 5,028,608,620 | 1% |
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 :)
author | eric-boucher |
---|---|
permlink | re-vdatsuk-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170908t200455217z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-08 20:04:54 |
last_update | 2017-09-08 20:04:54 |
depth | 3 |
children | 0 |
last_payout | 2017-09-15 20:04:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 166 |
author_reputation | 68,503,601,066,539 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,290,906 |
net_rshares | 5,028,608,620 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 5,028,608,620 | 1% |
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
author | zedchamaa |
---|---|
permlink | re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170903t162016924z |
category | eos |
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"} |
created | 2017-09-03 16:20:12 |
last_update | 2017-09-03 16:20:12 |
depth | 2 |
children | 24 |
last_payout | 2017-09-10 16:20:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.704 HBD |
curator_payout_value | 0.517 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,518 |
author_reputation | 13,573,064,409 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,757,627 |
net_rshares | 604,356,336,445 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clickside | 0 | 1,516,151,845 | 100% | ||
eric-boucher | 0 | 313,811,121,186 | 100% | ||
lynda-j-leonard | 0 | 0 | 100% | ||
layl | 0 | 852,993,746 | 100% | ||
underbob | 0 | 215,794,720 | 100% | ||
riskdebonair | 0 | 233,927,711,944 | 100% | ||
gavincapital | 0 | 621,340,000 | 100% | ||
lukzurski | 0 | 0 | 100% | ||
kinghill7 | 0 | 612,019,900 | 100% | ||
jupiter5 | 0 | 0 | 100% | ||
emoney | 0 | 619,520,000 | 100% | ||
kingmotan | 0 | 7,725,781,728 | 100% | ||
jomeszaros | 0 | 19,383,930,943 | 100% | ||
oreoninja | 0 | 2,570,235,477 | 100% | ||
jakeryan | 0 | 1,201,983,415 | 100% | ||
stirgoi | 0 | 619,520,000 | 100% | ||
ector714 | 0 | 619,520,000 | 100% | ||
cryptotypeme | 0 | 0 | 100% | ||
johncaroll | 0 | 1,164,175,931 | 100% | ||
thenomadictales | 0 | 668,745,823 | 100% | ||
animosteles | 0 | 0 | 100% | ||
unomas | 0 | 607,129,600 | 100% | ||
imuandwhaticisme | 0 | 600,934,400 | 100% | ||
unfair | 0 | 619,520,000 | 100% | ||
swen | 0 | 619,520,000 | 100% | ||
reckon | 0 | 1,096,836,017 | 100% | ||
jasongreen | 0 | 1,160,630,486 | 100% | ||
danielgberger | 0 | 1,160,630,079 | 100% | ||
jeffallen | 0 | 1,160,624,064 | 100% | ||
filippo-f | 0 | 0 | 100% | ||
wilku | 0 | 1,154,817,798 | 100% | ||
iamsoup | 0 | 1,160,620,771 | 100% | ||
mentors | 0 | 1,160,618,868 | 100% | ||
carlosmertens | 0 | 1,143,209,488 | 100% | ||
mrmarcroca | 0 | 1,160,617,438 | 100% | ||
arin.fereg | 0 | 1,009,737,169 | 100% | ||
leafist | 0 | 1,160,617,427 | 100% | ||
almondbutter | 0 | 945,903,158 | 100% | ||
andrewwu | 0 | 1,143,207,751 | 100% | ||
jacobnzw | 0 | 1,160,615,273 | 100% | ||
wxzurd | 0 | 0 | 100% | ||
ildottore | 0 | 0 | 100% |
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.
author | bashadow |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170912t052628648z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-12 05:26:15 |
last_update | 2017-09-12 05:26:15 |
depth | 3 |
children | 1 |
last_payout | 2017-09-19 05:26:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 377 |
author_reputation | 100,388,692,638,882 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,624,304 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clayjoy | 0 | 0 | 100% |
I had no idea I have to register my tokens. Thanks for your very clear and through response. @zedchamaa
author | carlosmertens |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170903t204815570z |
category | eos |
json_metadata | {"tags":["eos"],"users":["zedchamaa"],"app":"steemit/0.1"} |
created | 2017-09-03 20:48:15 |
last_update | 2017-09-03 20:48:15 |
depth | 3 |
children | 1 |
last_payout | 2017-09-10 20:48:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 938,627,222 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,779,718 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wxzurd | 0 | 0 | 100% |
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!
author | coins4max |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t102642200z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 10:26:42 |
last_update | 2017-09-04 10:26:42 |
depth | 3 |
children | 1 |
last_payout | 2017-09-11 10:26:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 251 |
author_reputation | 705,992,135 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,831,480 |
net_rshares | 0 |
If you are waiting on a hardware wallet, can you transfer your EOS to your ETH wallet on JAXX??
author | digijebz |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t053536735z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 05:35:36 |
last_update | 2017-09-04 05:35:36 |
depth | 3 |
children | 3 |
last_payout | 2017-09-11 05:35:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 154,814,538 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,812,823 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wxzurd | 0 | 0 | 100% |
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 :)
author | eric-boucher |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t212422031z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 21:24:21 |
last_update | 2017-09-04 21:24:21 |
depth | 3 |
children | 1 |
last_payout | 2017-09-11 21:24:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.318 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 189 |
author_reputation | 68,503,601,066,539 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,885,808 |
net_rshares | 92,888,091,871 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 92,888,091,871 | 30% | ||
wxzurd | 0 | 0 | 100% | ||
ildottore | 0 | 0 | 100% |
Why is it necessary to register EOS tokens? I'm missing something
author | jasonshick |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170918t144414617z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-18 14:52:15 |
last_update | 2017-09-18 14:52:15 |
depth | 3 |
children | 0 |
last_payout | 2017-09-25 14:52:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 34,285,892,602,808 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,234,456 |
net_rshares | 0 |
Thanks for the info! Question about No. 4: Why not leave EOS on an exchange?
author | mentors |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170903t215326027z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 21:53:24 |
last_update | 2017-09-03 21:53:24 |
depth | 3 |
children | 2 |
last_payout | 2017-09-10 21:53:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 0 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,784,530 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wxzurd | 0 | 0 | 100% |
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?
author | mmmltr |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20171112t074202117z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-11-12 07:42:03 |
last_update | 2017-11-12 07:42:03 |
depth | 3 |
children | 0 |
last_payout | 2017-11-19 07:42:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | 8,824,197 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,122,482 |
net_rshares | 0 |
I had no idea I even had to register my EOS tokens until I read this. Thanks for posting this info.
author | unomas |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t060341851z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 06:03:36 |
last_update | 2017-09-04 06:03:36 |
depth | 3 |
children | 0 |
last_payout | 2017-09-11 06:03:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 971,933,356,391 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,814,522 |
net_rshares | 0 |
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
author | wilku |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t103913785z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 10:39:12 |
last_update | 2017-09-04 10:39:12 |
depth | 3 |
children | 4 |
last_payout | 2017-09-11 10:39:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 150 |
author_reputation | 19,492,812,682,728 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,832,367 |
net_rshares | 0 |
Goodmorning Thank you for sharing! Have a nice day
author | yentl7 |
---|---|
permlink | re-zedchamaa-re-eric-boucher-re-eosio-the-dawn-of-eos-io-20170904t063806119z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 06:38:06 |
last_update | 2017-09-04 06:38:06 |
depth | 3 |
children | 0 |
last_payout | 2017-09-11 06:38:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 4,960,280,242 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,816,711 |
net_rshares | 0 |
Without your own EOS blockchain, how does this impact the ERC20 token? What will it be used for????
author | exxodus |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t183119089z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 18:31:18 |
last_update | 2017-09-03 18:31:18 |
depth | 1 |
children | 1 |
last_payout | 2017-09-10 18:31:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 7,589,375,156,104 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,768,963 |
net_rshares | 1,981,846,368 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 1,981,846,368 | 100% |
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.
author | nickeles |
---|---|
permlink | re-exxodus-re-eosio-the-dawn-of-eos-io-20170903t220752933z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 22:07:57 |
last_update | 2017-09-03 22:07:57 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 22:07:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 323 |
author_reputation | 334,056,741,142 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,785,563 |
net_rshares | 0 |
Great. Thanks for sharing. I'm starting to follow you.
author | fady2017 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t030040654z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 03:00:57 |
last_update | 2017-09-05 03:00:57 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 03:00:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | -56,082,651,601 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,905,965 |
net_rshares | 0 |
We have EOS, now all we need are end-users creating their own smart contracts. That will free up a lot of unncessary resources.
author | fastdraw07 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t155030471z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 15:50:27 |
last_update | 2017-09-03 15:50:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 15:50:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 9,654,377,405 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,754,888 |
net_rshares | 0 |
storage is a huge upgrade, can't wait to use email 2.0!
author | fav | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | re-eosio-the-dawn-of-eos-io-201793t134650451z | ||||||||||||
category | eos | ||||||||||||
json_metadata | {"app":"eostalk/0.3","format":"markdown+html","tags":[]} | ||||||||||||
created | 2017-09-03 11:46:48 | ||||||||||||
last_update | 2017-09-03 11:46:48 | ||||||||||||
depth | 1 | ||||||||||||
children | 0 | ||||||||||||
last_payout | 2017-09-10 11:46:48 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 0.000 HBD | ||||||||||||
curator_payout_value | 0.000 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 55 | ||||||||||||
author_reputation | 8,439,588,475,730 | ||||||||||||
root_title | "The Dawn of EOS.IO" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 13,734,701 | ||||||||||||
net_rshares | -655,225,405,508 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nextgen11 | 0 | -443,500,135 | -23% | ||
nextgen10 | 0 | -443,500,139 | -23% | ||
nextgen1 | 0 | -665,251,886 | -23% | ||
nextgen12 | 0 | -443,500,130 | -23% | ||
nextgen6 | 0 | -453,722,327 | -23% | ||
nextgen2 | 0 | -665,251,840 | -23% | ||
nextgen13 | 0 | -443,500,124 | -23% | ||
nextgen7 | 0 | -453,722,323 | -23% | ||
nextgen3 | 0 | -665,251,879 | -23% | ||
nextgen16 | 0 | -453,722,320 | -23% | ||
yomamasofat | 0 | -453,722,314 | -23% | ||
charlesmanson | 0 | -1,774,006,116 | -23% | ||
jacktheripper | 0 | -887,003,073 | -23% | ||
jeffreydahmer | 0 | -887,003,031 | -23% | ||
berniesanders | 0 | -43,419,216,569 | -23% | ||
donalddrumpf | 0 | -443,499,831 | -23% | ||
chatterbox | 0 | -443,478,250 | -23% | ||
nextgencrypto100 | 0 | -453,722,355 | -23% | ||
nextgencrypto | 0 | -369,046,537,754 | -23% | ||
nextgencrypto120 | 0 | -453,722,339 | -23% | ||
nextgencrypto110 | 0 | -453,722,347 | -23% | ||
nextgencrypto111 | 0 | -453,722,343 | -23% | ||
nextgencrypto101 | 0 | -453,722,351 | -23% | ||
nextgencrypto121 | 0 | -453,722,333 | -23% | ||
theterrorist | 0 | -443,499,755 | -23% | ||
steemittroll | 0 | -443,478,244 | -23% | ||
theghost | 0 | -443,499,823 | -23% | ||
thepresident | 0 | -443,499,818 | -23% | ||
sockpuppet | 0 | -443,478,239 | -23% | ||
danknugs | 0 | -198,099,843,287 | -23% | ||
elchapo | 0 | -887,003,041 | -23% | ||
steemservices | 0 | -234,629,700,482 | -23% | ||
steemservices1 | 0 | -887,002,969 | -23% | ||
muhammad | 0 | -453,722,317 | -23% | ||
steemservices3 | 0 | -887,002,961 | -23% | ||
steemservices5 | 0 | -887,002,945 | -23% | ||
sativa | 0 | -618,440,708 | -23% | ||
indica | 0 | -887,000,447 | -23% | ||
ash | 0 | 505,398,179,754 | 100% | ||
kimjongun | 0 | -221,750,457 | -23% | ||
thebotkiller | 0 | -144,890,444,114 | -23% | ||
thecyclist | 0 | -1,915,498,466 | -23% | ||
mrlemmer11 | 0 | 5,163,858,032 | 100% | ||
ianboil | 0 | 479,310,081 | 10% | ||
illbeyourfriend | 0 | -9,378,132,295 | -23% | ||
engagement | 0 | -7,758,686,252 | -23% | ||
iflagtrash | 0 | -2,660,182,130 | -23% | ||
theyeti | 0 | -292,863,831 | -23% | ||
thedumpster | 0 | -26,480,772,332 | -23% | ||
yougotflagged | 0 | -1,973,180,747 | -23% | ||
randomthoughts | 0 | -3,330,191,341 | -23% | ||
thedelegator | 0 | -3,101,444,786 | -23% | ||
thesloth | 0 | -70,075,606,729 | -23% | ||
nogalert | 0 | -8,071,669,088 | -23% | ||
ghettodweller | 0 | -21,501,794,508 | -23% | ||
veliton77 | 0 | 1,047,362,846 | 100% |
This news is Aweeesome!
author | frost04 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t082510824z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 08:25:12 |
last_update | 2017-09-05 08:25:12 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 08:25:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.219 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 3,645,772,569,932 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,925,556 |
net_rshares | 65,299,313,572 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
frost04 | 0 | 32,691,271,417 | 100% | ||
cryptoman01 | 0 | 28,313,972,806 | 100% | ||
lisaocampo | 0 | 0 | 100% | ||
ladydiana | 0 | 4,294,069,349 | 100% |
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.
author | frost04 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170907t065149301z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-07 06:51:51 |
last_update | 2017-09-07 06:51:51 |
depth | 1 |
children | 0 |
last_payout | 2017-09-14 06:51:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.220 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | 3,645,772,569,932 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,121,918 |
net_rshares | 69,704,419,607 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
frost04 | 0 | 33,193,355,086 | 100% | ||
cryptoman01 | 0 | 31,290,817,373 | 100% | ||
lisaocampo | 0 | 0 | 100% | ||
ladydiana | 0 | 4,451,379,780 | 100% | ||
feye | 0 | 768,867,368 | 100% |
Great article, thank you for the detailed explanations
author | ghaaspur |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t181909391z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 18:19:09 |
last_update | 2017-09-03 18:19:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 18:19:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 278,893,346,456 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,767,931 |
net_rshares | 0 |
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...
author | gorex |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170924t081739313z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-24 08:17:39 |
last_update | 2017-09-24 08:17:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-01 08:17:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 169 |
author_reputation | 1,934,742,713 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,774,466 |
net_rshares | 3,492,792,025 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gorex | 0 | 3,492,792,025 | 100% |
upvoted and resteemed! love ESO
author | greenerz |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t085130202z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 08:51:30 |
last_update | 2017-09-03 08:51:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 08:51:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 131,215,670,880 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,723,697 |
net_rshares | 12,817,762,663 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
greenerz | 0 | 12,817,762,663 | 100% |
Too much token. I want too like
author | hanisullah | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201793t18132270z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-03 11:01:42 | ||||||
last_update | 2017-09-03 11:01:42 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-10 11:01:42 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 31 | ||||||
author_reputation | 225,450,626,470 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,731,745 | ||||||
net_rshares | 0 |
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
author | hashcrown |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170917t055957682z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://imgur.com/a/bCsR6"],"app":"steemit/0.1"} |
created | 2017-09-17 05:59:57 |
last_update | 2017-09-17 05:59:57 |
depth | 1 |
children | 0 |
last_payout | 2017-09-24 05:59:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 575 |
author_reputation | 0 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,110,236 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hashcrown | 0 | 0 | 100% |
Yala EOS let's go to mars !
author | hazooka |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t144501195z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 14:45:00 |
last_update | 2017-09-06 14:45:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 14:45:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 21,689,305,514 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,056,648 |
net_rshares | 1,570,422,715 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hazooka | 0 | 486,730,744 | 100% | ||
killuminati | 0 | 1,083,691,971 | 100% |
When will we be able to try it out? I'm interested in how the IPFS thingy works.
author | heimindanger |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t114622286z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 11:46:21 |
last_update | 2017-09-03 11:46:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 11:46:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.196 HBD |
curator_payout_value | 0.064 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | -16,507,408,909,111 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,734,671 |
net_rshares | 69,833,757,559 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
crypto-investor | 0 | 69,833,757,559 | 30% |
a really amazing project, looking forward to this crypto and planning to invest on it in the near future
author | hiroyamagishi |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t122112299z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 12:21:12 |
last_update | 2017-09-03 12:21:12 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 12:21:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.499 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 71,901,302,671,995 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,737,022 |
net_rshares | 133,610,574,111 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hiroyamagishi | 0 | 133,610,574,111 | 100% |
WOW NICE JOB I LIKE IT THIS POST
author | holl.boll |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t070427304z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 07:04:27 |
last_update | 2017-09-03 07:04:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 07:04:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | -30,357,862,109 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,717,447 |
net_rshares | 1,875,946,181 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 1,875,946,181 | 100% |
nice post..follow and upvote
author | holycitycomedy |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t091759573z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 09:18:00 |
last_update | 2017-09-04 09:18:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 09:18:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 149,560,410,885 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,827,115 |
net_rshares | 1,434,471,182 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holycitycomedy | 0 | 1,434,471,182 | 100% |
Beautiful!
author | initforthemoney |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t053419105z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 05:34:18 |
last_update | 2017-09-04 05:34:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 05:34:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 6,227,007,446,802 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,812,737 |
net_rshares | 0 |
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!
author | jalai |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t064010204z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:40:09 |
last_update | 2017-09-03 07:33:06 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 06:40:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 30,304,700,656 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,716,092 |
net_rshares | 1,951,589,172 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 1,951,589,172 | 100% |
I did a translation to Spanish of this article https://steemit.com/eos/@jarib/el-nacimiento-de-eos-io-the-dawn-of-eos-io
author | jarib |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t205851764z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/eos/@jarib/el-nacimiento-de-eos-io-the-dawn-of-eos-io"],"app":"steemit/0.1"} |
created | 2017-09-05 20:58:51 |
last_update | 2017-09-05 20:58:51 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 20:58:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 120 |
author_reputation | 240,980,358,372 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,984,885 |
net_rshares | 0 |
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
author | jaxtaylor |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t072801941z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 07:28:18 |
last_update | 2017-09-04 07:28:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 07:28:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 594 |
author_reputation | 29,941,316,598 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,819,997 |
net_rshares | 0 |
When is the next major catalyst for EOS? There are a lot of negative conspiracy theories circulating.
author | jbenticer |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t232815633z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 23:28:15 |
last_update | 2017-09-03 23:28:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 23:28:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 426,227,517,338 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,790,726 |
net_rshares | 5,375,277,994 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jbenticer | 0 | 5,375,277,994 | 100% |
Wow excellent! !! Good work. I think is time to buy more eos. Take advantage of the low prices!!
author | jga |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t112406383z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 11:24:00 |
last_update | 2017-09-03 11:24:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 11:24:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 76,172,796,162,312 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,733,216 |
net_rshares | 8,372,341,099 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jga | 0 | 5,685,838,084 | 100% | ||
egetror | 0 | 2,072,617,958 | 100% | ||
lvmusc | 0 | 613,885,057 | 100% |
EOS storage, rocks!
author | joele |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t025112776z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 02:51:12 |
last_update | 2017-09-04 02:51:12 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 02:51:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 2,761,532,307,555 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,802,565 |
net_rshares | 884,879,483 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jbfoundation | 0 | 884,879,483 | 100% |
Next year 1 EOS >= $100
author | joele |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t025905265z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 02:59:03 |
last_update | 2017-09-04 02:59:03 |
depth | 1 |
children | 2 |
last_payout | 2017-09-11 02:59:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 2,761,532,307,555 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,803,028 |
net_rshares | 4,591,350,655 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
koffee | 0 | 2,805,297,918 | 100% | ||
jahangirbalti | 0 | 877,886,952 | 100% | ||
jbfoundation | 0 | 908,165,785 | 100% |
How can i thank you, you are my super supportive hero.
author | ehabakhdar |
---|---|
permlink | re-joele-re-eosio-the-dawn-of-eos-io-20170907t143312363z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-07 14:33:12 |
last_update | 2017-09-07 14:33:12 |
depth | 2 |
children | 0 |
last_payout | 2017-09-14 14:33:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 1,378,158,082,376 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,156,323 |
net_rshares | 6,645,055,711 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ehabakhdar | 0 | 6,645,055,711 | 100% |
hopefully EOS prevails
author | koffee |
---|---|
permlink | re-joele-re-eosio-the-dawn-of-eos-io-20170906t203241619z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 20:32:48 |
last_update | 2017-09-06 20:32:48 |
depth | 2 |
children | 0 |
last_payout | 2017-09-13 20:32:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 1,676,137,646,193 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,085,474 |
net_rshares | 0 |
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!
author | johnsmith |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t060543897z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:05:42 |
last_update | 2017-09-03 06:06:03 |
depth | 1 |
children | 19 |
last_payout | 2017-09-10 06:05:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 385 |
author_reputation | 22,729,726,767,685 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,714,120 |
net_rshares | -901,440,241,591 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nextgen11 | 0 | -773,546,747 | -40% | ||
nextgen10 | 0 | -773,546,755 | -40% | ||
nextgen1 | 0 | -1,160,323,057 | -40% | ||
nextgen12 | 0 | -773,546,739 | -40% | ||
nextgen6 | 0 | -794,014,072 | -40% | ||
nextgen2 | 0 | -1,160,322,976 | -40% | ||
nextgen13 | 0 | -773,546,729 | -40% | ||
nextgen7 | 0 | -794,014,066 | -40% | ||
nextgen3 | 0 | -1,160,323,044 | -40% | ||
nextgen16 | 0 | -794,014,060 | -40% | ||
yomamasofat | 0 | -794,014,050 | -40% | ||
charlesmanson | 0 | -3,135,452,671 | -40% | ||
jacktheripper | 0 | -1,567,726,363 | -40% | ||
jeffreydahmer | 0 | -1,567,726,288 | -40% | ||
berniesanders | 0 | -76,554,934,477 | -40% | ||
donalddrumpf | 0 | -783,860,167 | -40% | ||
chatterbox | 0 | -783,822,023 | -40% | ||
nextgencrypto100 | 0 | -794,014,122 | -40% | ||
nextgencrypto | 0 | -639,080,589,769 | -40% | ||
nextgencrypto120 | 0 | -794,014,094 | -40% | ||
nextgencrypto110 | 0 | -794,014,108 | -40% | ||
nextgencrypto111 | 0 | -794,014,101 | -40% | ||
nextgencrypto101 | 0 | -794,014,114 | -40% | ||
nextgencrypto121 | 0 | -794,014,084 | -40% | ||
theterrorist | 0 | -783,860,033 | -40% | ||
steemittroll | 0 | -783,822,013 | -40% | ||
theghost | 0 | -783,860,153 | -40% | ||
thepresident | 0 | -783,860,145 | -40% | ||
sockpuppet | 0 | -783,822,005 | -40% | ||
danknugs | 0 | -351,627,221,835 | -40% | ||
elchapo | 0 | -1,567,726,305 | -40% | ||
steemservices | 0 | -412,032,644,749 | -40% | ||
steemservices1 | 0 | -1,547,098,203 | -40% | ||
muhammad | 0 | -794,014,055 | -40% | ||
steemservices3 | 0 | -1,547,098,189 | -40% | ||
steemservices5 | 0 | -1,547,098,160 | -40% | ||
sativa | 0 | -1,093,057,995 | -40% | ||
indica | 0 | -1,567,721,721 | -40% | ||
kimjongun | 0 | -391,931,041 | -40% | ||
stealthtrader | 0 | 18,591,706,521 | 100% | ||
johnsmith | 0 | 1,097,759,325,604 | 100% | ||
thebotkiller | 0 | -255,283,163,439 | -40% | ||
ashwim | 0 | 2,853,215,729 | 100% | ||
thecyclist | 0 | -3,374,925,869 | -40% | ||
cybernatic | 0 | 212,890,152 | 100% | ||
ibringawareness | 0 | 9,532,383,255 | 20% | ||
shaungerow | 0 | 191,294,618 | 100% | ||
mrlemmer11 | 0 | 5,269,242,890 | 100% | ||
illbeyourfriend | 0 | -16,523,375,948 | -40% | ||
engagement | 0 | -13,713,026,865 | -40% | ||
iflagtrash | 0 | -4,639,852,552 | -40% | ||
theyeti | 0 | -517,619,795 | -40% | ||
thedumpster | 0 | -46,187,393,603 | -40% | ||
yougotflagged | 0 | -3,487,482,250 | -40% | ||
randomthoughts | 0 | -5,867,479,982 | -40% | ||
mrmoneyman | 0 | 1,456,030,675 | 100% | ||
luke-sanjay | 0 | 3,207,705,596 | 100% | ||
thedelegator | 0 | -5,409,496,719 | -40% | ||
thesloth | 0 | -122,224,895,458 | -40% | ||
tolkatore | 0 | 1,056,030,039 | 100% | ||
pearleu | 0 | 779,924,617 | 100% | ||
nogalert | 0 | -14,078,492,596 | -40% | ||
minecrew | 0 | 161,243,624 | 100% | ||
ghettodweller | 0 | -37,503,129,956 | -40% | ||
aleksandranails | 0 | 546,195,380 | 100% | ||
zetetrahedron369 | 0 | 216,528,704 | 100% | ||
wilfpod | 0 | 1,160,621,315 | 100% |
Exactly! Releasing an MVP ahead of schedule is very rare in the software business. Congrats!
author | geronimo |
---|---|
permlink | re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t144124331z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 14:41:27 |
last_update | 2017-09-03 14:41:27 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 14:41:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.550 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 2,923,721,121,912 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,748,668 |
net_rshares | 149,591,989,324 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
geronimo | 0 | 149,591,989,324 | 100% |
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.
author | ibringawareness |
---|---|
permlink | re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t063542931z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:35:48 |
last_update | 2017-09-03 06:35:48 |
depth | 2 |
children | 12 |
last_payout | 2017-09-10 06:35:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.020 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 223 |
author_reputation | 18,353,960,014,817 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,715,808 |
net_rshares | 23,563,910,397 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mammasitta | 0 | 21,955,013,226 | 6% | ||
lijinma | 0 | 632,645,357 | 100% | ||
tolkatore | 0 | 976,251,814 | 100% |
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.
author | an-di |
---|---|
permlink | re-ibringawareness-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t183138754z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/eos/@sandwich/the-most-important-eos-public-key-to-an-ethereum-address"],"app":"steemit/0.1"} |
created | 2017-09-03 18:31:39 |
last_update | 2017-09-03 18:31:39 |
depth | 3 |
children | 1 |
last_payout | 2017-09-10 18:31:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 236 |
author_reputation | 1,477,269,488 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,768,988 |
net_rshares | 9,913,678,585 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ibringawareness | 0 | 9,913,678,585 | 20% | ||
an-di | 0 | 0 | 0% |
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...
author | buuux |
---|---|
permlink | re-ibringawareness-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t132434246z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 13:24:33 |
last_update | 2017-09-03 13:24:33 |
depth | 3 |
children | 8 |
last_payout | 2017-09-10 13:24:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 223 |
author_reputation | 1,279,979,778 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,742,054 |
net_rshares | 6,460,667,830 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
paulanthony | 0 | 5,738,979,664 | 100% | ||
haroldfinch126 | 0 | 721,688,166 | 100% |
Smart man indeed.
author | tolkatore |
---|---|
permlink | re-ibringawareness-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170904t094931338z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 09:49:33 |
last_update | 2017-09-04 09:49:33 |
depth | 3 |
children | 0 |
last_payout | 2017-09-11 09:49:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 2,607,791,002,003 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,829,180 |
net_rshares | 0 |
https://steemit.com/mcap/@lifeisfun/story-from-bitcoin-mining-to-bitcoingrowthfund-mcap-tokens-and-now-towards-eth-mining
author | lifeisfun |
---|---|
permlink | re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t073053098z |
category | eos |
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"} |
created | 2017-09-03 07:30:09 |
last_update | 2017-09-03 07:30:09 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 07:30:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 1,962,145,227 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,719,024 |
net_rshares | 188,242,044 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shaungerow | 0 | 188,242,044 | 100% |
great
author | rabinthapa |
---|---|
permlink | re-johnsmith-re-eosio-the-dawn-of-eos-io-20170902t192628019z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 09:08:45 |
last_update | 2017-09-03 09:08:45 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 09:08:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 452,022,740 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,724,693 |
net_rshares | 626,413,323 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lvmusc | 0 | 626,413,323 | 100% |
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! 💰
author | tolkatore |
---|---|
permlink | re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t105511979z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 10:55:12 |
last_update | 2017-09-03 10:55:12 |
depth | 2 |
children | 2 |
last_payout | 2017-09-10 10:55:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.679 HBD |
curator_payout_value | 0.220 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 236 |
author_reputation | 2,607,791,002,003 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,731,316 |
net_rshares | 238,900,599,225 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
full-steem-ahead | 0 | 225,858,358,984 | 100% | ||
ibringawareness | 0 | 9,913,678,585 | 20% | ||
shaungerow | 0 | 184,171,946 | 100% | ||
whyknot | 0 | 649,575,620 | 100% | ||
dado13btc | 0 | 1,587,559,687 | 100% | ||
haroldfinch126 | 0 | 707,254,403 | 100% |
Here here!
author | jbbasics |
---|---|
permlink | re-tolkatore-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170904t035732459z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 03:57:33 |
last_update | 2017-09-04 03:57:33 |
depth | 3 |
children | 0 |
last_payout | 2017-09-11 03:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 527,662,449,377 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,806,790 |
net_rshares | 993,684,883 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tolkatore | 0 | 993,684,883 | 100% |
LOL
author | whyknot |
---|---|
permlink | re-tolkatore-re-johnsmith-re-eosio-the-dawn-of-eos-io-20170903t150845621z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 15:08:48 |
last_update | 2017-09-03 15:08:48 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 15:08:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3 |
author_reputation | 112,320,686,869 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,751,190 |
net_rshares | 1,016,928,973 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tolkatore | 0 | 1,016,928,973 | 100% |
Beautiful, thanks for posting it. upvoted and followed you if you like fitnessallione please follow me
author | jtavassol |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t052538970z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:25:45 |
last_update | 2017-09-03 05:25:45 |
depth | 1 |
children | 1 |
last_payout | 2017-09-10 05:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | -1,987,656,707,474 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,711,863 |
net_rshares | -127,877,848,168,479 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -127,877,790,862,951 | -100% | ||
blacklist-a | 0 | -57,305,528 | -10% |
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.
author | libertyteeth |
---|---|
permlink | re-jtavassol-re-eosio-the-dawn-of-eos-io-20170903t220902005z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 22:09:03 |
last_update | 2017-09-03 22:09:15 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 22:09:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 408 |
author_reputation | 7,938,471,600,702 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,785,638 |
net_rshares | 0 |
Interesting you post, upvoted
author | juaniev |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t044437922z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 04:44:36 |
last_update | 2017-09-03 04:44:36 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 04:44:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | -1,806,738,827,058 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,709,631 |
net_rshares | -127,877,842,958,885 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -127,877,790,862,951 | -100% | ||
blacklist-a | 0 | -52,095,934 | -10% |
>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!
author | juanmiguelsalas |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t082904889z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 08:29:03 |
last_update | 2017-09-03 08:29:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 08:29:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.109 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 514 |
author_reputation | 91,321,277,026,429 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,722,463 |
net_rshares | 36,612,293,470 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
max-infeld | 0 | 11,047,877,676 | 100% | ||
andybets | 0 | 11,893,568,412 | 100% | ||
egetror | 0 | 2,798,790,673 | 100% | ||
sevenstars | 0 | 8,747,421,413 | 100% | ||
shareme | 0 | 619,520,000 | 100% | ||
g0nr0gue | 0 | 1,266,315,068 | 100% | ||
zetetrahedron369 | 0 | 238,800,228 | 100% |
https://steemit.com/life/@juanpimentel/10-miniature-photos-that-show-you-a-very-funny-world-you-will-be-surprised-the-number-3 jajaja
author | juanpimentel |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t180214310z |
category | eos |
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"} |
created | 2017-09-05 18:02:15 |
last_update | 2017-09-05 18:02:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 18:02:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 525,458,287,931 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,971,671 |
net_rshares | 0 |
Nice post there thanks for update Upvoted and Followed.
author | kaushal1 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t023913991z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 02:39:15 |
last_update | 2017-09-06 02:39:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 02:39:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 27,132,924,873 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,006,488 |
net_rshares | 0 |

author | kevinwong |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t053236065z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://steemitimages.com/DQmbU5FimXabfhqF9qyNEXwcHNSDcAtBXyk7fWYwz18WXbT/image.png"],"app":"steemit/0.1"} |
created | 2017-09-03 05:32:36 |
last_update | 2017-09-03 05:32:36 |
depth | 1 |
children | 10 |
last_payout | 2017-09-10 05:32:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.874 HBD |
curator_payout_value | 0.378 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 621,253,570,295,288 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,712,293 |
net_rshares | 578,863,141,667 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
full-steem-ahead | 0 | 229,297,826,380 | 100% | ||
samether | 0 | 25,996,026,720 | 100% | ||
gmalhotra | 0 | 31,268,866,839 | 100% | ||
gaio | 0 | 238,734,944 | 100% | ||
themonetaryfew | 0 | 12,705,904,612 | 1% | ||
brotherhoodofnod | 0 | 0 | 100% | ||
yogihargobind | 0 | 228,276,936 | 100% | ||
v4vapid | 0 | 161,777,081,659 | 1% | ||
gavincapital | 0 | 0 | 0% | ||
breezer | 0 | 26,870,714,571 | 100% | ||
lunascookies | 0 | 36,854,336,878 | 100% | ||
amvanaken | 0 | 2,494,310,553 | 6% | ||
guyfawkes7 | 0 | 0 | 100% | ||
thecryptogod | 0 | 651,552,647 | 100% | ||
tculia | 0 | 619,520,000 | 100% | ||
needmorefat | 0 | 5,807,631,092 | 100% | ||
neuro-artisan | 0 | 619,561,375 | 100% | ||
stefanmoe | 0 | 6,735,413,202 | 100% | ||
sprad | 0 | 0 | 100% | ||
piranha | 0 | 17,196,179,498 | 100% | ||
theofilos13 | 0 | 597,836,800 | 100% | ||
g0nr0gue | 0 | 1,291,473,646 | 100% | ||
forever.nocturnl | 0 | 610,227,200 | 100% | ||
thecryptoreport | 0 | 619,520,000 | 100% | ||
ycz | 0 | 621,088,111 | 100% | ||
champmc | 0 | 1,137,454,427 | 100% | ||
binodsinghdhami | 0 | 915,909,195 | 100% | ||
fiber.god | 0 | 1,143,357,906 | 100% | ||
peterbrown | 0 | 1,213,325,435 | 100% | ||
y-matsuwitter | 0 | 1,137,423,714 | 100% | ||
corganmusic | 0 | 1,959,146,566 | 100% | ||
reckon | 0 | 1,120,049,478 | 100% | ||
nideo | 0 | 309,961,820 | 1% | ||
mariachan | 0 | 87,046,625 | 100% | ||
vickyp22 | 0 | 1,073,572,370 | 100% | ||
woodenladder12 | 0 | 1,160,617,426 | 100% | ||
alazar | 0 | 1,160,617,306 | 100% | ||
ifreeski420 | 0 | 1,073,570,938 | 100% | ||
garrus | 0 | 1,160,617,033 | 100% | ||
maxcar975 | 0 | 1,108,387,765 | 100% | ||
wxzurd | 0 | 0 | 100% | ||
joxus | 0 | 0 | 100% |
author | avilsd |
---|---|
permlink | re-kevinwong-re-eosio-the-dawn-of-eos-io-20170904t160003886z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 16:00:03 |
last_update | 2017-09-04 16:00:03 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 16:00:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.242 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 20,163,046,179,161 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,858,790 |
net_rshares | 70,271,051,509 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
avilsd | 0 | 70,271,051,509 | 100% | ||
wxzurd | 0 | 0 | 100% |
https://steemit.com/@binodsinghdhami upvote me plz.
author | binodsinghdhami |
---|---|
permlink | re-kevinwong-re-eosio-the-dawn-of-eos-io-20170905t100440400z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/@binodsinghdhami"],"app":"steemit/0.1"} |
created | 2017-09-05 10:04:39 |
last_update | 2017-09-05 10:04:39 |
depth | 2 |
children | 0 |
last_payout | 2017-09-12 10:04:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | -12,785,561,579 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,932,021 |
net_rshares | 1,780,131,735 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robyjaiss | 0 | 619,520,000 | 100% | ||
martymacfly1 | 0 | 1,160,611,735 | 100% | ||
wxzurd | 0 | 0 | 100% |
Nice, maybe you are interested into this too: https://steemit.com/cryptocurrency/@cryptomillion/video-games-driving-technology-what-s-next
author | cryptomillion |
---|---|
permlink | re-kevinwong-re-eosio-the-dawn-of-eos-io-20170904t174511966z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/cryptocurrency/@cryptomillion/video-games-driving-technology-what-s-next"],"app":"steemit/0.1"} |
created | 2017-09-04 18:41:21 |
last_update | 2017-09-04 18:41:21 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 18:41:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 139 |
author_reputation | 105,324,728,234 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,873,332 |
net_rshares | 607,129,600 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zodlock | 0 | 607,129,600 | 100% | ||
wxzurd | 0 | 0 | 100% |
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
author | dvapump |
---|---|
permlink | re-kevinwong-re-eosio-the-dawn-of-eos-io-20170903t185332986z |
category | eos |
json_metadata | {"tags":["eos"],"links":["http://telegram.me/DvaPump","http://telegram.me/Dvapump"],"app":"steemit/0.1"} |
created | 2017-09-03 18:53:33 |
last_update | 2017-09-03 18:53:33 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 18:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 946 |
author_reputation | -145,093,739,335 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,770,939 |
net_rshares | -59,462,129,571 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevinwong | 0 | -59,462,129,571 | -1% |
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 :)
author | full-steem-ahead |
---|---|
permlink | re-kevinwong-re-eosio-the-dawn-of-eos-io-20170903t172015491z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:20:15 |
last_update | 2017-09-03 17:21:27 |
depth | 2 |
children | 1 |
last_payout | 2017-09-10 17:20:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 144 |
author_reputation | 30,177,498,572,933 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,762,931 |
net_rshares | 4,825,155,365 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,859,305,066 | 100% | ||
zodlock | 0 | 619,520,000 | 100% | ||
bitty | 0 | 1,120,000,895 | 100% | ||
stbrians | 0 | 226,329,404 | 100% | ||
arin.fereg | 0 | 0 | 0% | ||
wxzurd | 0 | 0 | 100% |
I'm sorry but your avatar kind of looks like a blue butt-hole.
author | pinkdaddy |
---|---|
permlink | re-full-steem-ahead-re-kevinwong-re-eosio-the-dawn-of-eos-io-20171202t051202937z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-12-02 05:12:06 |
last_update | 2017-12-02 05:12:06 |
depth | 3 |
children | 0 |
last_payout | 2017-12-09 05:12:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 777,963,022,149 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,152,319 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pinkdaddy | 0 | 0 | 100% |
lol hope u guys not miss your chance ;) https://media.tenor.com/images/85b177ff2f998903b976dbf69bfd337f/tenor.gif
author | mariachan |
---|---|
permlink | re-kevinwong-re-eosio-the-dawn-of-eos-io-20170903t203533628z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://media.tenor.com/images/85b177ff2f998903b976dbf69bfd337f/tenor.gif"],"app":"steemit/0.1"} |
created | 2017-09-03 20:41:27 |
last_update | 2017-09-03 20:41:27 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 20:41:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | 8,034,608,246,109 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,779,241 |
net_rshares | 12,902,294,196 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cqdx | 0 | 1,628,346,125 | 100% | ||
enforcer2k | 0 | 1,160,694,710 | 100% | ||
stefanmoe | 0 | 6,576,932,892 | 100% | ||
kokoliso | 0 | 212,177,343 | 100% | ||
corganmusic | 0 | 1,929,005,850 | 100% | ||
nideo | 0 | 309,961,820 | 1% | ||
mariachan | 0 | 0 | 0% | ||
maxcar975 | 0 | 1,085,175,456 | 100% | ||
wxzurd | 0 | 0 | 100% | ||
roborton | 0 | 0 | 100% |
author | nideo |
---|---|
permlink | re-kevinwong-re-eosio-the-dawn-of-eos-io-20170904t175807378z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 17:58:06 |
last_update | 2017-09-04 17:58:06 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 17:58:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 1,241,451,350,227 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,869,514 |
net_rshares | 11,468,587,359 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nideo | 0 | 11,468,587,359 | 100% | ||
wxzurd | 0 | 0 | 100% |
I agree, EOS, she's a real head turner, make your steady very upset...
author | surfyogi |
---|---|
permlink | re-kevinwong-re-eosio-the-dawn-of-eos-io-20170910t004207582z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-10 00:42:06 |
last_update | 2017-09-10 00:42:06 |
depth | 2 |
children | 0 |
last_payout | 2017-09-17 00:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 31,155,045,810,316 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,406,790 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wxzurd | 0 | 0 | 100% |
Lol :)
author | vickyp22 |
---|---|
permlink | re-kevinwong-re-eosio-the-dawn-of-eos-io-20170905t144712959z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 14:47:12 |
last_update | 2017-09-05 14:47:12 |
depth | 2 |
children | 0 |
last_payout | 2017-09-12 14:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 26,485,281,032 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,954,369 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wxzurd | 0 | 0 | 100% |
EOS is a game changer. ETH does not stand a chance from all the homework I have done on EOS.
author | kingg |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t213125196z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 21:31:33 |
last_update | 2017-09-04 21:31:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 21:31:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 184,714,408,524 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,886,306 |
net_rshares | 0 |
Great post Thanks for sharing
author | kovilvns |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t044140118z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 04:41:39 |
last_update | 2017-09-03 04:41:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 04:41:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | -1,954,727,955,537 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,709,456 |
net_rshares | -130,528,165,077,556 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -130,528,107,772,028 | -100% | ||
blacklist-a | 0 | -57,305,528 | -10% |
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
author | kranoras | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201793t2209191z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-03 20:00:45 | ||||||
last_update | 2017-09-03 20:00:45 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-10 20:00:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 119 | ||||||
author_reputation | 4,638,780,885,266 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,776,139 | ||||||
net_rshares | 0 |
wow:) http://bit.ly/2jeOM8V
author | kurencja.com |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t191409672z |
category | eos |
json_metadata | {"tags":["eos"],"links":["http://bit.ly/2jeOM8V"],"app":"steemit/0.1"} |
created | 2017-09-06 19:14:09 |
last_update | 2017-09-06 19:14:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 19:14:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 2,747,334,470 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,079,928 |
net_rshares | 1,160,638,588 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kurencja.com | 0 | 1,160,638,588 | 100% |
Is anyone able to explain the EOS price behavior (http://bit.ly/2jeOM8V) in face of such good news regarding it? Thanks
author | kurencja.com |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170907t080554513z |
category | eos |
json_metadata | {"tags":["eos"],"links":["http://bit.ly/2jeOM8V"],"app":"steemit/0.1"} |
created | 2017-09-07 08:05:54 |
last_update | 2017-09-07 08:05:54 |
depth | 1 |
children | 0 |
last_payout | 2017-09-14 08:05:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 2,747,334,470 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,126,869 |
net_rshares | 1,149,032,202 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kurencja.com | 0 | 1,149,032,202 | 100% |
Final countdown? ;) https://twitter.com/Converteacom/status/905722626798215168
author | kurencja.com |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170907t092224789z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://twitter.com/Converteacom/status/905722626798215168"],"app":"steemit/0.1"} |
created | 2017-09-07 09:22:24 |
last_update | 2017-09-07 09:22:24 |
depth | 1 |
children | 1 |
last_payout | 2017-09-14 09:22:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 2,747,334,470 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,131,893 |
net_rshares | 0 |
###  **[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.*
author | twitterbot |
---|---|
permlink | re-re-eosio-the-dawn-of-eos-io-20170907t092224789z-20170907t092316 |
category | eos |
json_metadata | "" |
created | 2017-09-07 09:23:18 |
last_update | 2017-09-07 09:23:18 |
depth | 2 |
children | 0 |
last_payout | 2017-09-14 09:23:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 524 |
author_reputation | 2,792,128,643,772 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,131,961 |
net_rshares | 0 |
I very much like the part about EOS.IO Storage! =)
author | leoplaw |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t051233614z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:12:06 |
last_update | 2017-09-03 05:12:06 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:12:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 189,628,210,789,149 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,711,045 |
net_rshares | 8,139,095,686 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
largelyuseless | 0 | 159,925,309 | 100% | ||
egetror | 0 | 2,692,890,485 | 100% | ||
amvanaken | 0 | 3,990,896,885 | 10% | ||
wuhotan | 0 | 157,600,347 | 100% | ||
veliton77 | 0 | 1,137,782,660 | 100% |
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?
author | liveyourlife |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170911t162413293z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-11 16:24:12 |
last_update | 2017-09-11 16:24:12 |
depth | 1 |
children | 0 |
last_payout | 2017-09-18 16:24:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 54,135,646 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,571,404 |
net_rshares | 0 |
Good info.
author | loum |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t033921315z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 03:39:27 |
last_update | 2017-09-05 03:39:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 03:39:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 6,704,515,659,183 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,908,367 |
net_rshares | 0 |
Exciting times ahead :).
author | lukecooper | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | re-eosio-the-dawn-of-eos-io-201796t202444658z | ||||||||||||
category | eos | ||||||||||||
json_metadata | {"app":"eostalk/0.3","format":"markdown+html","tags":[]} | ||||||||||||
created | 2017-09-06 19:24:45 | ||||||||||||
last_update | 2017-09-06 19:24:45 | ||||||||||||
depth | 1 | ||||||||||||
children | 0 | ||||||||||||
last_payout | 2017-09-13 19:24:45 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 0.000 HBD | ||||||||||||
curator_payout_value | 0.000 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 24 | ||||||||||||
author_reputation | 343,504,245 | ||||||||||||
root_title | "The Dawn of EOS.IO" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 14,080,702 | ||||||||||||
net_rshares | 0 |
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.
author | lukestokes |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t153309380z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 15:33:09 |
last_update | 2017-09-03 15:33:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 15:33:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 251 |
author_reputation | 556,640,380,599,219 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,753,345 |
net_rshares | 10,882,159,511 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
max-infeld | 0 | 10,882,159,511 | 100% |
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~
author | lynda-j-leonard |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20171130t194307136z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-11-30 19:43:06 |
last_update | 2017-11-30 19:43:06 |
depth | 1 |
children | 0 |
last_payout | 2017-12-07 19:43:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 203 |
author_reputation | 2,050,361,390,392 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,023,913 |
net_rshares | 0 |
Very interesting stuff.
author | mabeeski |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t112227616z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 11:22:30 |
last_update | 2017-09-04 11:22:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 11:22:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 3,217,672,304 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,835,602 |
net_rshares | 0 |
a great post @eosio
author | madarenjoy | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201797t205829558z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-07 12:58:39 | ||||||
last_update | 2017-09-07 12:58:39 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-14 12:58:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 19 | ||||||
author_reputation | 176,094,141,584 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 14,147,836 | ||||||
net_rshares | 0 |
This post was very informative thank you for sharing you have my upvote Keep smiling, reading, writing and voting!!! @mannyfig1956
author | mannyfig1956 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t061514882z |
category | eos |
json_metadata | {"tags":["eos"],"users":["mannyfig1956"],"app":"steemit/0.1"} |
created | 2017-09-03 06:15:18 |
last_update | 2017-09-03 06:15:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 06:15:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 132 |
author_reputation | 1,633,946,152,508 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,714,590 |
net_rshares | 2,979,817,044 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,329,804,128 | 100% | ||
mannyfig1956 | 0 | 650,012,916 | 100% |
EOS will be unstoppable
author | marco-delsalto |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t032701598z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 03:27:03 |
last_update | 2017-09-06 03:27:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 03:27:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.023 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 7,350,812,533,370 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,009,536 |
net_rshares | 903,539,355,504 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
marco-delsalto | 0 | 897,725,329,844 | 100% | ||
asralf | 0 | 1,682,162,768 | 100% | ||
kingmacros | 0 | 619,520,000 | 100% | ||
hazooka | 0 | 525,411,333 | 100% | ||
thenomadictales | 0 | 682,899,174 | 100% | ||
fiber.god | 0 | 1,160,769,447 | 100% | ||
reckon | 0 | 1,143,262,938 | 100% | ||
wxzurd | 0 | 0 | 100% | ||
joxus | 0 | 0 | 100% | ||
mortenhaugumhake | 0 | 0 | 100% | ||
roborton | 0 | 0 | 100% | ||
cryptojoe1025 | 0 | 0 | 100% |
Thanks for posting!
author | mariuslotriet |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t095905090z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 09:59:03 |
last_update | 2017-09-05 09:59:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 09:59:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 122,124,097,434 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,931,670 |
net_rshares | 0 |
The graphene ecosystem is on a 24/7 IV drip of the meanest steroids known to the universe! *Excitement ensues.*
author | matt-a |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t100804925z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 10:08:09 |
last_update | 2017-09-03 10:08:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 10:08:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 34,621,295,577,150 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,728,254 |
net_rshares | 0 |
Keep up the great work! Looking forward to seeing more developments!
author | max-infeld |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t231002274z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 23:10:06 |
last_update | 2017-09-03 23:10:06 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 23:10:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 2,039,194,374,573 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,789,622 |
net_rshares | 6,682,024,631 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lisachandler | 0 | 6,682,024,631 | 100% |
Holding Long on Eos. I have no doubt that the people behind this technology are brilliant!
author | mericanhomestead |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t121532986z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 12:15:33 |
last_update | 2017-09-05 12:15:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 12:15:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 34,524,540,906,491 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,940,997 |
net_rshares | 0 |
Interesting information, thanks for sharing, regards
author | meurahpasee |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t054340878z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:43:33 |
last_update | 2017-09-03 05:43:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:43:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 7,314,233,007 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,712,883 |
net_rshares | 0 |
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!
author | mouach |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t112627828z |
category | eos |
json_metadata | {"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"} |
created | 2017-09-03 11:26:27 |
last_update | 2017-09-03 11:26:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 11:26:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 414 |
author_reputation | -142,771,181,115 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,733,381 |
net_rshares | 0 |
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.
author | movietrailar |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t113123949z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 11:31:27 |
last_update | 2017-09-03 11:31:27 |
depth | 1 |
children | 1 |
last_payout | 2017-09-10 11:31:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 245 |
author_reputation | 104,200,158,033 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,733,694 |
net_rshares | 3,252,706,852 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,375,189,922 | 100% | ||
movietrailar | 0 | 877,516,930 | 100% |
Who are you referring to?
author | full-steem-ahead |
---|---|
permlink | re-movietrailar-re-eosio-the-dawn-of-eos-io-20170903t172925301z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:29:24 |
last_update | 2017-09-03 17:29:24 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 17:29:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 30,177,498,572,933 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,763,738 |
net_rshares | 0 |
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
author | mrlemmer11 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t054424270z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://img.youtube.com/vi/MUZWZj1pu94/0.jpg"],"links":["https://youtu.be/MUZWZj1pu94"],"app":"steemit/0.1"} |
created | 2017-09-03 05:44:24 |
last_update | 2017-09-03 05:44:24 |
depth | 1 |
children | 13 |
last_payout | 2017-09-10 05:44:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 251 |
author_reputation | 1,435,844,972,284 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,712,928 |
net_rshares | -1,145,647,221,080 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nextgen11 | 0 | -433,186,178 | -23% | ||
nextgen10 | 0 | -433,186,182 | -23% | ||
nextgen1 | 0 | -649,780,912 | -23% | ||
nextgen12 | 0 | -433,186,174 | -23% | ||
nextgen6 | 0 | -443,410,456 | -23% | ||
nextgen2 | 0 | -649,780,867 | -23% | ||
nextgen13 | 0 | -433,186,168 | -23% | ||
nextgen7 | 0 | -443,410,452 | -23% | ||
nextgen3 | 0 | -649,780,905 | -23% | ||
nextgen16 | 0 | -443,410,449 | -23% | ||
yomamasofat | 0 | -443,410,443 | -23% | ||
charlesmanson | 0 | -1,774,006,116 | -23% | ||
jacktheripper | 0 | -887,003,073 | -23% | ||
jeffreydahmer | 0 | -887,003,031 | -23% | ||
berniesanders | 0 | -43,419,216,569 | -23% | ||
donalddrumpf | 0 | -443,499,831 | -23% | ||
chatterbox | 0 | -443,478,250 | -23% | ||
nextgencrypto100 | 0 | -443,410,483 | -23% | ||
nextgencrypto | 0 | -360,045,402,686 | -23% | ||
nextgencrypto120 | 0 | -443,410,468 | -23% | ||
nextgencrypto110 | 0 | -443,410,476 | -23% | ||
nextgencrypto111 | 0 | -443,410,472 | -23% | ||
nextgencrypto101 | 0 | -443,410,479 | -23% | ||
nextgencrypto121 | 0 | -443,410,462 | -23% | ||
theterrorist | 0 | -443,499,755 | -23% | ||
steemittroll | 0 | -443,478,244 | -23% | ||
theghost | 0 | -443,499,823 | -23% | ||
thepresident | 0 | -443,499,818 | -23% | ||
sockpuppet | 0 | -443,478,239 | -23% | ||
danknugs | 0 | -198,099,843,287 | -23% | ||
elchapo | 0 | -887,003,041 | -23% | ||
steemservices | 0 | -234,629,700,482 | -23% | ||
steemservices1 | 0 | -866,374,993 | -23% | ||
muhammad | 0 | -443,410,446 | -23% | ||
steemservices3 | 0 | -866,374,985 | -23% | ||
steemservices5 | 0 | -866,374,970 | -23% | ||
sativa | 0 | -618,440,708 | -23% | ||
indica | 0 | -887,000,447 | -23% | ||
kimjongun | 0 | -221,750,457 | -23% | ||
thebotkiller | 0 | -144,890,444,114 | -23% | ||
thecyclist | 0 | -1,915,498,466 | -23% | ||
ibringawareness | 0 | 9,913,678,585 | 20% | ||
illbeyourfriend | 0 | -9,378,132,295 | -23% | ||
engagement | 0 | -7,758,686,252 | -23% | ||
iflagtrash | 0 | -2,660,182,130 | -23% | ||
theyeti | 0 | -292,863,831 | -23% | ||
thedumpster | 0 | -26,480,772,332 | -23% | ||
yougotflagged | 0 | -1,973,180,747 | -23% | ||
randomthoughts | 0 | -3,330,191,341 | -23% | ||
gavincapital | 0 | 599,593,100 | 100% | ||
thedelegator | 0 | -3,029,318,163 | -23% | ||
thesloth | 0 | -68,445,941,456 | -23% | ||
nogalert | 0 | -7,883,955,853 | -23% | ||
ghettodweller | 0 | -21,501,794,508 | -23% |
15 min in so far. Very good, thanks for posting.
author | ibringawareness |
---|---|
permlink | re-mrlemmer11-re-eosio-the-dawn-of-eos-io-20170903t063214121z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:32:21 |
last_update | 2017-09-03 06:32:21 |
depth | 2 |
children | 12 |
last_payout | 2017-09-10 06:32:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 18,353,960,014,817 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,715,584 |
net_rshares | 5,242,896,676 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mrlemmer11 | 0 | 5,242,896,676 | 100% |
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!
author | mrlemmer11 |
---|---|
permlink | re-ibringawareness-re-mrlemmer11-re-eosio-the-dawn-of-eos-io-20170903t071222893z |
category | eos |
json_metadata | {"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"} |
created | 2017-09-03 07:12:24 |
last_update | 2017-09-03 07:12:48 |
depth | 3 |
children | 11 |
last_payout | 2017-09-10 07:12:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.142 HBD |
curator_payout_value | 0.020 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 619 |
author_reputation | 1,435,844,972,284 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,717,921 |
net_rshares | 42,157,298,804 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ibringawareness | 0 | 9,151,087,925 | 20% | ||
enforcer2k | 0 | 1,067,839,133 | 100% | ||
palme | 0 | 31,774,934,350 | 72% | ||
wuhotan | 0 | 163,437,396 | 100% |
Will EOS pay token holders a dividend down the line?
author | mysteir |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t080256741z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 08:02:57 |
last_update | 2017-09-06 08:02:57 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 08:02:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 4,487,920,692 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,026,633 |
net_rshares | 0 |
thanks for the information, this is very useful for me
author | nadaceh |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t085308966z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 08:53:18 |
last_update | 2017-09-04 08:53:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 08:53:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 40,111,444,632 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,825,563 |
net_rshares | 0 |
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.
author | nicholas1983 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t083643480z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 08:36:42 |
last_update | 2017-09-03 08:36:42 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 08:36:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 428 |
author_reputation | 678,448,408,817 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,722,870 |
net_rshares | 2,148,260,949 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,148,260,949 | 100% |
This is incredible and it has such huge implications for streaming industries like Netflix and video game companies. Good work guys!
author | nideo |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t175737315z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 17:57:36 |
last_update | 2017-09-04 17:57:36 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 17:57:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | 1,241,451,350,227 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,869,458 |
net_rshares | 11,778,549,180 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nideo | 0 | 11,778,549,180 | 100% |
EOS.IO Storage! Nice move.
author | nueza |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t172101369z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 17:21:03 |
last_update | 2017-09-05 17:21:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 17:21:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 7,391,982,906 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,968,228 |
net_rshares | 0 |
author | padmakshi |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t060417888z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:04:21 |
last_update | 2017-09-03 06:04:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 06:04:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 1,095,407,523,576 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,714,060 |
net_rshares | 2,379,121,735 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,239,032,538 | 100% | ||
wuhotan | 0 | 140,089,197 | 100% |
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?..
author | piranha |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t174856400z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 17:49:00 |
last_update | 2017-09-04 17:49:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 17:49:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 11,479,562,224 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,868,670 |
net_rshares | 0 |
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**
author | prakashghai |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t134457234z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 13:45:00 |
last_update | 2017-09-03 13:46:12 |
depth | 1 |
children | 4 |
last_payout | 2017-09-10 13:45:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 295 |
author_reputation | 20,465,565,974,840 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,743,775 |
net_rshares | 0 |
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.
author | full-steem-ahead |
---|---|
permlink | re-prakashghai-re-eosio-the-dawn-of-eos-io-20170903t174053245z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:40:54 |
last_update | 2017-09-03 17:40:54 |
depth | 2 |
children | 2 |
last_payout | 2017-09-10 17:40:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.044 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 153 |
author_reputation | 30,177,498,572,933 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,764,724 |
net_rshares | 16,199,829,149 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
layl | 0 | 839,937,719 | 100% | ||
tbnfl4sun | 0 | 9,809,544,764 | 25% | ||
stefanmoe | 0 | 5,550,346,666 | 100% |
not too sure about that
author | prakashghai |
---|---|
permlink | re-full-steem-ahead-re-prakashghai-re-eosio-the-dawn-of-eos-io-20170903t183819212z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 18:38:21 |
last_update | 2017-09-03 18:38:21 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 18:38:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 20,465,565,974,840 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,769,563 |
net_rshares | 0 |
I give the Exodus wallet a big thumbs up!
author | tbnfl4sun |
---|---|
permlink | re-full-steem-ahead-re-prakashghai-re-eosio-the-dawn-of-eos-io-20170904t134722489z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 13:47:21 |
last_update | 2017-09-04 13:47:21 |
depth | 3 |
children | 0 |
last_payout | 2017-09-11 13:47:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 109,775,864,993,253 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,847,070 |
net_rshares | 0 |
I agree @blocktrades, what about it?
author | surfyogi |
---|---|
permlink | re-prakashghai-re-eosio-the-dawn-of-eos-io-20170910t005500351z |
category | eos |
json_metadata | {"tags":["eos"],"users":["blocktrades"],"app":"steemit/0.1"} |
created | 2017-09-10 00:55:00 |
last_update | 2017-09-10 00:55:00 |
depth | 2 |
children | 0 |
last_payout | 2017-09-17 00:55:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.082 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 31,155,045,810,316 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,407,504 |
net_rshares | 29,775,645,339 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 29,775,645,339 | 1% |
author | prameshtyagi |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t051509633z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:15:09 |
last_update | 2017-09-03 05:15:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:15:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 133,698,299,152,872 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,711,224 |
net_rshares | 1,976,486,633 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 1,830,560,386 | 100% | ||
wuhotan | 0 | 145,926,247 | 100% |
EOS - here we come.. I am ready!
author | randomatrix |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t165022598z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 16:50:21 |
last_update | 2017-09-04 16:50:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 16:50:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.368 HBD |
curator_payout_value | 0.064 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 78,549,177,039 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,863,648 |
net_rshares | 125,766,842,818 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
therealwolf | 0 | 124,694,740,106 | 100% | ||
randomatrix | 0 | 1,072,102,712 | 100% |
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.
author | rebeccaryan |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t115955586z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 11:59:54 |
last_update | 2017-09-03 11:59:54 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 11:59:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 150 |
author_reputation | 77,990,144,956,239 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,735,567 |
net_rshares | 0 |
Thanks for the post looks good but what is the price that can reach in a year? 30$ maximum?
author | richard10 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t051730341z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 05:17:30 |
last_update | 2017-09-04 05:17:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 05:17:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 0 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,811,656 |
net_rshares | 0 |
Thanks for the update! Very exciting :)
author | robochunks |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t145624491z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 14:56:36 |
last_update | 2017-09-06 14:56:36 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 14:56:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 811,499,002 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,057,660 |
net_rshares | 0 |
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 :)
author | rogermarx |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t103129913z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 10:31:39 |
last_update | 2017-09-04 10:31:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 10:31:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 143 |
author_reputation | 37,785,425,082 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,831,838 |
net_rshares | 0 |
Hi @eosio , thank you for informing us about EOS. I'm resteeming!
author | ronmamita |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t063209974z |
category | eos |
json_metadata | {"tags":["eos"],"users":["eosio"],"app":"steemit/0.1"} |
created | 2017-09-04 06:32:09 |
last_update | 2017-09-04 06:32:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 06:32:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 770,066,160,449 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,816,296 |
net_rshares | 0 |
congrats to dan, this is a post very intesting and coming time again and again intesting the post.
author | roshanlal2017 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t064233837z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:42:36 |
last_update | 2017-09-03 06:42:36 |
depth | 1 |
children | 1 |
last_payout | 2017-09-10 06:42:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 37,213,845,809 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,716,238 |
net_rshares | 1,906,203,377 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 1,906,203,377 | 100% |
one of the biggest scams I have ever seen!
author | jamesahancock |
---|---|
permlink | re-roshanlal2017-re-eosio-the-dawn-of-eos-io-20170903t071345061z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 07:13:45 |
last_update | 2017-09-03 07:13:45 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 07:13:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | -20,327,431,421 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,717,999 |
net_rshares | -1,328,557,709,827 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,325,158,454,538 | -1% | ||
blacklist-a | 0 | -57,305,528 | -10% | ||
slavix | 0 | -3,341,949,761 | -100% |
<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?
author | rubenalexander |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t003410331z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 00:34:09 |
last_update | 2017-09-04 00:34:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 00:34:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 352 |
author_reputation | 104,366,547,780,590 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,794,500 |
net_rshares | 0 |
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.
author | ryanreynolds |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t073539536z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-09-04 07:35:42 |
last_update | 2017-09-04 07:35:42 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 07:35:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,004 |
author_reputation | 290,615,663,292 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,820,478 |
net_rshares | 0 |
Hi @dan, just resteemed this post instead. Apologies again.
author | ryanreynolds |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t084306639z |
category | eos |
json_metadata | {"tags":["eos"],"users":["dan"],"app":"steemit/0.1"} |
created | 2017-09-04 08:43:09 |
last_update | 2017-09-04 08:43:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 08:43:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 290,615,663,292 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,824,895 |
net_rshares | 0 |
your post is very nice, full pack of knowledge and very attractive :-)
author | saeedshaikh |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t050534042z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:05:36 |
last_update | 2017-09-03 05:05:36 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:05:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 95,404,093,559 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,710,705 |
net_rshares | 0 |
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 :-)
author | saeedshaikh |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t220522800z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 22:05:24 |
last_update | 2017-09-05 22:05:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 22:05:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 95,404,093,559 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,989,689 |
net_rshares | 0 |
this is top post,,, i like blog steemit,, good job friend
author | saifulrahmad | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201793t115426436z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-03 04:54:36 | ||||||
last_update | 2017-09-03 04:54:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-10 04:54:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 57 | ||||||
author_reputation | 1,795,905,708,572 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,710,160 | ||||||
net_rshares | -1,325,210,550,472 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -1,325,158,454,538 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
Well, congrats for it! I am just sorry you have been so badly flagged. I guess people work hard and others get jealous!
author | sandrina.life |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t041420141z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 04:14:18 |
last_update | 2017-09-05 04:14:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 04:14:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 5,534,287,837,956 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,910,352 |
net_rshares | 0 |
Through ‘ github ’, I am watching your hard work record everyday. You guys worked really hard. works on weekends.
author | selly |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t054739996z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:47:21 |
last_update | 2017-09-03 05:47:21 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 05:47:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 380,842,516,318 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,713,090 |
net_rshares | 2,430,344,580 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,284,418,333 | 100% | ||
wuhotan | 0 | 145,926,247 | 100% |
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
author | seveaux |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170906t144559281z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-06 14:45:51 |
last_update | 2017-09-06 14:45:51 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 14:45:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 395 |
author_reputation | 8,844,643,038,229 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,056,714 |
net_rshares | 0 |
Time to buy?
author | shaungerow |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t142458406z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 14:24:57 |
last_update | 2017-09-03 14:24:57 |
depth | 1 |
children | 2 |
last_payout | 2017-09-10 14:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 38,418,257,529,459 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,747,230 |
net_rshares | 0 |
Definitely yes 👍🏻
author | veliton77 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-shaungerow-201793t2149715z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-03 19:04:12 | ||||||
last_update | 2017-09-03 19:04:12 | ||||||
depth | 2 | ||||||
children | 1 | ||||||
last_payout | 2017-09-10 19:04:12 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 17 | ||||||
author_reputation | 262,732,651,259 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,771,794 | ||||||
net_rshares | 128,208,095 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shaungerow | 0 | 128,208,095 | 100% |
I'm in!
author | shaungerow |
---|---|
permlink | re-veliton77-re-shaungerow-201793t2149715z-20170903t221056348z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 22:10:57 |
last_update | 2017-09-03 22:10:57 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 22:10:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 38,418,257,529,459 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,785,748 |
net_rshares | 1,422,468,738 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
veliton77 | 0 | 1,422,468,738 | 100% |
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!
author | simoncase |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t024203084z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 02:42:00 |
last_update | 2017-09-04 02:42:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 02:42:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 769 |
author_reputation | 93,682,296,200 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,802,026 |
net_rshares | 0 |
Dan Larimer
author | skyeg3 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t064340507z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:43:39 |
last_update | 2017-09-03 06:43:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 06:43:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 948,208,874 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,716,302 |
net_rshares | 0 |
Life! Liberty! Property!
author | songminer |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170912t131828928z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-12 13:15:45 |
last_update | 2017-09-12 13:15:45 |
depth | 1 |
children | 0 |
last_payout | 2017-09-19 13:15:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 60,948,446,901 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,657,363 |
net_rshares | 0 |
Exciting times!! Will Steemit be able to use EOS to host something like dtube or even like a SteemTube?
author | stealthtrader |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t072403948z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 07:24:03 |
last_update | 2017-09-03 07:24:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 07:24:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 74,266,337,461,760 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,718,645 |
net_rshares | 0 |
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...
author | surfyogi |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170910t003301141z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-10 00:33:00 |
last_update | 2017-09-10 00:33:00 |
depth | 1 |
children | 3 |
last_payout | 2017-09-17 00:33:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.484 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 223 |
author_reputation | 31,155,045,810,316 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,406,280 |
net_rshares | 2,683,196,621,252 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
llyrran | 0 | 0 | 100% | ||
surfyogi | 0 | 2,679,808,080,527 | 100% | ||
rosatravels | 0 | 2,069,555,664 | 100% | ||
flanny790 | 0 | 1,102,599,794 | 100% | ||
myjourney | 0 | 216,385,267 | 100% | ||
wxzurd | 0 | 0 | 100% |
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)
author | newsandviews |
---|---|
permlink | re-surfyogi-re-eosio-the-dawn-of-eos-io-20170915t210939035z |
category | eos |
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"} |
created | 2017-09-15 21:09:30 |
last_update | 2017-09-15 21:09:30 |
depth | 2 |
children | 2 |
last_payout | 2017-09-22 21:09:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.516 HBD |
curator_payout_value | 0.170 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 797 |
author_reputation | 3,103,741,266,799 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,002,609 |
net_rshares | 256,455,649,360 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 255,326,252,759 | 100% | ||
shla-rafia | 0 | 1,129,396,601 | 5% | ||
serg10 | 0 | 0 | 100% | ||
mattimus777 | 0 | 0 | 100% | ||
taibywish | 0 | 0 | 100% | ||
wxzurd | 0 | 0 | 100% | ||
joxus | 0 | 0 | 100% |
Lucifer invites you to take a byte of the apple hanging on the Merkle tree end enter the space of knowledge...
author | rufussed |
---|---|
permlink | re-newsandviews-re-surfyogi-re-eosio-the-dawn-of-eos-io-20170927t134313920z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-27 13:43:15 |
last_update | 2017-09-27 13:43:15 |
depth | 3 |
children | 1 |
last_payout | 2017-10-04 13:43:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 6,482,061,007 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,084,074 |
net_rshares | 4,601,976,789 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-fillosopher | 0 | 4,601,976,789 | 100% | ||
fasterv12 | 0 | 0 | 100% | ||
wxzurd | 0 | 0 | 100% |
Be interesting in it!!! Expect!!
author | syt |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t102029888z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 10:20:30 |
last_update | 2017-09-03 10:20:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 10:20:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 321,997,465,326 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,729,035 |
net_rshares | 0 |
i have one question for you guys.what is more important for you money or time. think about it
author | tanayjain1 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t085540770z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 08:55:42 |
last_update | 2017-09-03 08:55:42 |
depth | 1 |
children | 1 |
last_payout | 2017-09-10 08:55:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 14,506,100,767 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,723,919 |
net_rshares | 4,620,230,031 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,586,990,298 | 100% | ||
tanayjain1 | 0 | 1,040,890,431 | 100% | ||
chatawala | 0 | 992,349,302 | 100% |
I suspect the answer is time, as Block1 has plenty of capital.
author | full-steem-ahead |
---|---|
permlink | re-tanayjain1-re-eosio-the-dawn-of-eos-io-20170903t172737073z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:27:36 |
last_update | 2017-09-03 17:27:36 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 17:27:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 30,177,498,572,933 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,763,561 |
net_rshares | 619,093,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alextracy | 0 | 619,093,249 | 100% |
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!
author | thegoliath |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t112352137z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 11:23:51 |
last_update | 2017-09-03 11:23:51 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 11:23:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 253,019,388,123,904 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,733,208 |
net_rshares | 0 |
Winter is xoming
author | thenomadictales | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201799t203344599z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-09 15:03:48 | ||||||
last_update | 2017-09-09 17:00:51 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-16 15:03:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 16 | ||||||
author_reputation | 3,117,654,789,376 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 14,364,491 | ||||||
net_rshares | 0 |
I have been looking forward to this since I heard about it. I will cover this article on my YouTube channel next livestream. Peace.
author | titusfrost |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t134010796z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 13:40:12 |
last_update | 2017-09-03 13:40:12 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 13:40:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.712 HBD |
curator_payout_value | 0.236 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 648,917,868,874,417 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,743,399 |
net_rshares | 255,623,224,218 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
titusfrost | 0 | 255,623,224,218 | 100% |
grand post
author | tochukwumadubuko |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t202535137z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 20:25:30 |
last_update | 2017-09-03 20:25:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 20:25:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | -504,587,213,282 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,778,128 |
net_rshares | 590,427,903 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bukkots.com | 0 | 329,288,118 | 100% | ||
tochukwumadubuko | 0 | 261,139,785 | 100% |
I am still missing out in this. I have tried reading it over ten times. Maybe I might missing something
author | ttopswag | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201794t21558654z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-04 01:16:03 | ||||||
last_update | 2017-09-04 01:16:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-11 01:16:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 103 | ||||||
author_reputation | 13,711,498,513,931 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,796,809 | ||||||
net_rshares | 0 |
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.
author | tunnelrat |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t175114709z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 17:52:39 |
last_update | 2017-09-04 17:52:39 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 17:52:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 192 |
author_reputation | 613,567,205,601 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,869,022 |
net_rshares | 0 |
So to summarize: you can store (for free?!), you can share, you can scale - I will be getting that SDK.
author | turmericrob |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t110426272z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 11:04:27 |
last_update | 2017-09-03 11:04:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 11:04:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 57,787,430,915 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,731,961 |
net_rshares | 0 |
Amazing article am glad I saw this
author | uchefrancis | ||||||
---|---|---|---|---|---|---|---|
permlink | re-eosio-201794t132816357z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-04 12:28:21 | ||||||
last_update | 2017-09-04 12:28:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-11 12:28:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 34 | ||||||
author_reputation | 2,396,813,947,241 | ||||||
root_title | "The Dawn of EOS.IO" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 13,840,383 | ||||||
net_rshares | 0 |
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...
author | ujjaval |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t071942266z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 07:19:45 |
last_update | 2017-09-03 07:19:45 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 07:19:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 181 |
author_reputation | -780,184,975 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,718,375 |
net_rshares | 2,167,321,360 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 2,027,232,163 | 100% | ||
wuhotan | 0 | 140,089,197 | 100% |
Great progress! Anybody have any idea why the price is diving down after news like this.. I would have thought the opposite
author | underbob |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t113243215z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 11:32:45 |
last_update | 2017-09-04 11:32:45 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 11:32:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 3,371,792 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,836,276 |
net_rshares | 0 |
Unfortunately it will be undervalued untill ico are taking place , fortunately more for us to accumulate
author | vegeto |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t093528173z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 09:35:33 |
last_update | 2017-09-03 09:35:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 09:35:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 1,037,932,268,254 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,726,268 |
net_rshares | 0 |
still, I don't get the confidence on EOS..... it's being traded but actual users I don't feel it's growing
author | vinukarthek |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t033455933z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 03:34:57 |
last_update | 2017-09-04 03:34:57 |
depth | 1 |
children | 2 |
last_payout | 2017-09-11 03:34:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.139 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 141,835,595,924 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,805,385 |
net_rshares | 38,982,598,312 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vinukarthek | 0 | 38,982,598,312 | 100% |
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
author | jaxtaylor |
---|---|
permlink | re-vinukarthek-re-eosio-the-dawn-of-eos-io-20171027t085754569z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://etherscan.io/address/0xd0a6e6c54dbc68db5db3a091b171a77407ff7ccf#tokentxns"],"app":"steemit/0.1"} |
created | 2017-10-27 08:58:00 |
last_update | 2017-10-27 08:58:00 |
depth | 2 |
children | 0 |
last_payout | 2017-11-03 08:58:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,541 |
author_reputation | 29,941,316,598 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,677,994 |
net_rshares | 0 |
A seed does not become a tree overnight
author | zedchamaa |
---|---|
permlink | re-vinukarthek-re-eosio-the-dawn-of-eos-io-20170904t181544911z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 18:15:42 |
last_update | 2017-09-04 18:15:42 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 18:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 13,573,064,409 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,871,107 |
net_rshares | 0 |
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
author | virtualgrowth |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t052820070z |
category | eos |
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"]} |
created | 2017-09-03 05:28:21 |
last_update | 2017-09-03 05:31:30 |
depth | 1 |
children | 14 |
last_payout | 2017-09-10 05:28:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,019 |
author_reputation | 194,279,551,234,595 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,712,036 |
net_rshares | -887,915,109,462 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nextgen11 | 0 | -443,500,135 | -23% | ||
nextgen10 | 0 | -443,500,139 | -23% | ||
nextgen1 | 0 | -665,251,886 | -23% | ||
nextgen12 | 0 | -443,500,130 | -23% | ||
nextgen6 | 0 | -453,722,327 | -23% | ||
nextgen2 | 0 | -665,251,840 | -23% | ||
nextgen13 | 0 | -443,500,124 | -23% | ||
nextgen7 | 0 | -453,722,323 | -23% | ||
nextgen3 | 0 | -665,251,879 | -23% | ||
nextgen16 | 0 | -453,722,320 | -23% | ||
yomamasofat | 0 | -453,722,314 | -23% | ||
charlesmanson | 0 | -1,774,006,116 | -23% | ||
jacktheripper | 0 | -887,003,073 | -23% | ||
jeffreydahmer | 0 | -887,003,031 | -23% | ||
berniesanders | 0 | -43,419,216,569 | -23% | ||
donalddrumpf | 0 | -443,499,831 | -23% | ||
chatterbox | 0 | -443,478,250 | -23% | ||
nextgencrypto100 | 0 | -453,722,355 | -23% | ||
nextgencrypto | 0 | -369,046,537,754 | -23% | ||
nextgencrypto120 | 0 | -453,722,339 | -23% | ||
nextgencrypto110 | 0 | -453,722,347 | -23% | ||
nextgencrypto111 | 0 | -453,722,343 | -23% | ||
nextgencrypto101 | 0 | -453,722,351 | -23% | ||
nextgencrypto121 | 0 | -453,722,333 | -23% | ||
theterrorist | 0 | -443,499,755 | -23% | ||
steemittroll | 0 | -443,478,244 | -23% | ||
theghost | 0 | -443,499,823 | -23% | ||
thepresident | 0 | -443,499,818 | -23% | ||
sockpuppet | 0 | -443,478,239 | -23% | ||
danknugs | 0 | -203,052,339,369 | -23% | ||
elchapo | 0 | -887,003,041 | -23% | ||
steemservices | 0 | -234,629,700,482 | -23% | ||
steemservices1 | 0 | -887,002,969 | -23% | ||
muhammad | 0 | -453,722,317 | -23% | ||
steemservices3 | 0 | -887,002,961 | -23% | ||
steemservices5 | 0 | -887,002,945 | -23% | ||
sativa | 0 | -618,440,708 | -23% | ||
indica | 0 | -887,000,447 | -23% | ||
kimjongun | 0 | -221,750,457 | -23% | ||
hedge-x | 0 | 68,748,946,173 | 18% | ||
thebotkiller | 0 | -148,340,216,593 | -23% | ||
thecyclist | 0 | -1,961,105,572 | -23% | ||
rebeccabe | 0 | 10,872,521,893 | 50% | ||
illbeyourfriend | 0 | -9,601,421,159 | -23% | ||
engagement | 0 | -7,758,686,252 | -23% | ||
v4vapid | 0 | 161,777,081,659 | 1% | ||
iflagtrash | 0 | -2,660,182,130 | -23% | ||
theyeti | 0 | -292,863,831 | -23% | ||
thedumpster | 0 | -26,480,772,332 | -23% | ||
yougotflagged | 0 | -1,973,180,747 | -23% | ||
randomthoughts | 0 | -3,409,481,611 | -23% | ||
pugriffs | 0 | 574,081,387 | 100% | ||
thedelegator | 0 | -3,101,444,786 | -23% | ||
shareme | 0 | 604,032,000 | 100% | ||
enforcer2k | 0 | 1,085,249,553 | 100% | ||
thesloth | 0 | -70,075,606,729 | -23% | ||
selly | 0 | 1,194,548,367 | 100% | ||
axxon | 0 | 1,186,264,746 | 100% | ||
d00b | 0 | 40,817,461,767 | 100% | ||
nogalert | 0 | -8,071,669,088 | -23% | ||
ghettodweller | 0 | -21,501,794,508 | -23% | ||
wuhotan | 0 | 169,274,446 | 100% | ||
wilfpod | 0 | 1,119,999,569 | 100% |
absolutely. email 2.0 and actual working decentralized net is a huge thing in my opinion
author | ash |
---|---|
permlink | re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t105358756z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 10:53:57 |
last_update | 2017-09-03 10:53:57 |
depth | 2 |
children | 3 |
last_payout | 2017-09-10 10:53:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 286,803,743,324,398 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,731,233 |
net_rshares | 16,671,231,506 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
virtualgrowth | 0 | 16,671,231,506 | 10% |
Interesting, never thought of email as a blockchain app. Can I get stealth with that? LOL
author | full-steem-ahead |
---|---|
permlink | re-ash-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t174854552z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:48:54 |
last_update | 2017-09-03 17:48:54 |
depth | 3 |
children | 1 |
last_payout | 2017-09-10 17:48:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 30,177,498,572,933 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,765,450 |
net_rshares | 0 |
Absolutely agree!
author | virtualgrowth |
---|---|
permlink | re-ash-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t144234543z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 14:42:33 |
last_update | 2017-09-03 14:42:33 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 14:42:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 194,279,551,234,595 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,748,761 |
net_rshares | 0 |
Exciting news!
author | pugriffs |
---|---|
permlink | re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t060826381z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:08:27 |
last_update | 2017-09-03 06:08:27 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 06:08:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 34,869,992,091 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,714,261 |
net_rshares | 169,274,446 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wuhotan | 0 | 169,274,446 | 100% |
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.
author | rebeccabe |
---|---|
permlink | re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t063421908z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 06:34:21 |
last_update | 2017-09-03 06:34:21 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 06:34:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 146 |
author_reputation | 18,143,162,511,159 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,715,702 |
net_rshares | 0 |
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 !!
author | sacred-agent |
---|---|
permlink | re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t055233578z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 05:52:33 |
last_update | 2017-09-03 05:54:18 |
depth | 2 |
children | 1 |
last_payout | 2017-09-10 05:52:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.736 HBD |
curator_payout_value | 0.204 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 178 |
author_reputation | 4,833,164,215,661 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,713,391 |
net_rshares | 241,934,530,847 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
full-steem-ahead | 0 | 221,272,402,456 | 100% | ||
virtualgrowth | 0 | 16,671,231,506 | 10% | ||
amvanaken | 0 | 3,990,896,885 | 10% |
Couldn't have said it better myself @sacred-agent! And I like your clever name!
author | full-steem-ahead |
---|---|
permlink | re-sacred-agent-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t174730413z |
category | eos |
json_metadata | {"tags":["eos"],"users":["sacred-agent"],"app":"steemit/0.1"} |
created | 2017-09-03 17:47:30 |
last_update | 2017-09-03 17:47:30 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 17:47:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 30,177,498,572,933 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,765,330 |
net_rshares | 10,961,431,546 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sacred-agent | 0 | 10,961,431,546 | 10% |
i have one question for you guys.what is more important for you money or time. think about it
author | tanayjain1 |
---|---|
permlink | re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t085440762z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 08:54:42 |
last_update | 2017-09-03 08:54:42 |
depth | 2 |
children | 2 |
last_payout | 2017-09-10 08:54:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 14,506,100,767 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,723,867 |
net_rshares | 1,985,678,570 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tanayjain1 | 0 | 1,016,542,117 | 100% | ||
chatawala | 0 | 969,136,453 | 100% |
That makes 2 questions, since you asked it twice :) I like VG's reply better!
author | full-steem-ahead |
---|---|
permlink | re-tanayjain1-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t175053981z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 17:50:54 |
last_update | 2017-09-03 17:50:54 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 17:50:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 30,177,498,572,933 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,765,617 |
net_rshares | 0 |
Energy and life!
author | virtualgrowth |
---|---|
permlink | re-tanayjain1-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t144420349z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 14:44:21 |
last_update | 2017-09-03 14:44:21 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 14:44:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 194,279,551,234,595 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,748,927 |
net_rshares | 0 |
That's exactly the thing I would have been quoting. Very exciting indeed.
author | teamsteem |
---|---|
permlink | re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t080315480z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 08:03:15 |
last_update | 2017-09-03 08:03:15 |
depth | 2 |
children | 1 |
last_payout | 2017-09-10 08:03:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.095 HBD |
curator_payout_value | 0.030 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | 284,804,541,406,803 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,721,062 |
net_rshares | 32,563,722,787 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
virtualgrowth | 0 | 16,671,231,506 | 10% | ||
sacred-agent | 0 | 15,892,491,281 | 15% | ||
arin.fereg | 0 | 0 | 0% |
Very exciting indeed!
author | virtualgrowth |
---|---|
permlink | re-teamsteem-re-virtualgrowth-re-eosio-the-dawn-of-eos-io-20170903t144335759z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 14:43:36 |
last_update | 2017-09-03 14:43:36 |
depth | 3 |
children | 0 |
last_payout | 2017-09-10 14:43:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 194,279,551,234,595 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,748,855 |
net_rshares | 0 |
###  **[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.*
author | twitterbot |
---|---|
permlink | re-re-eosio-the-dawn-of-eos-io-20170903t052820070z-20170903t052910 |
category | eos |
json_metadata | "" |
created | 2017-09-03 05:29:12 |
last_update | 2017-09-03 05:29:12 |
depth | 2 |
children | 0 |
last_payout | 2017-09-10 05:29:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 361 |
author_reputation | 2,792,128,643,772 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,712,089 |
net_rshares | -1,106,572,477,735 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nextgen11 | 0 | -443,500,135 | -23% | ||
nextgen10 | 0 | -443,500,139 | -23% | ||
nextgen1 | 0 | -665,251,886 | -23% | ||
nextgen12 | 0 | -443,500,130 | -23% | ||
nextgen6 | 0 | -453,722,327 | -23% | ||
nextgen2 | 0 | -665,251,840 | -23% | ||
nextgen13 | 0 | -443,500,124 | -23% | ||
nextgen7 | 0 | -453,722,323 | -23% | ||
nextgen3 | 0 | -665,251,879 | -23% | ||
nextgen16 | 0 | -453,722,320 | -23% | ||
yomamasofat | 0 | -453,722,314 | -23% | ||
charlesmanson | 0 | -1,774,006,116 | -23% | ||
jacktheripper | 0 | -887,003,073 | -23% | ||
jeffreydahmer | 0 | -887,003,031 | -23% | ||
berniesanders | 0 | -43,419,216,569 | -23% | ||
donalddrumpf | 0 | -443,499,831 | -23% | ||
chatterbox | 0 | -443,478,250 | -23% | ||
nextgencrypto100 | 0 | -453,722,355 | -23% | ||
nextgencrypto | 0 | -360,045,402,686 | -23% | ||
nextgencrypto120 | 0 | -453,722,339 | -23% | ||
nextgencrypto110 | 0 | -453,722,347 | -23% | ||
nextgencrypto111 | 0 | -453,722,343 | -23% | ||
nextgencrypto101 | 0 | -453,722,351 | -23% | ||
nextgencrypto121 | 0 | -453,722,333 | -23% | ||
theterrorist | 0 | -443,499,755 | -23% | ||
steemittroll | 0 | -443,478,244 | -23% | ||
theghost | 0 | -443,499,823 | -23% | ||
thepresident | 0 | -443,499,818 | -23% | ||
sockpuppet | 0 | -443,478,239 | -23% | ||
danknugs | 0 | -198,099,843,287 | -23% | ||
elchapo | 0 | -887,003,041 | -23% | ||
steemservices | 0 | -234,629,700,482 | -23% | ||
steemservices1 | 0 | -866,374,993 | -23% | ||
muhammad | 0 | -453,722,317 | -23% | ||
steemservices3 | 0 | -866,374,985 | -23% | ||
steemservices5 | 0 | -866,374,970 | -23% | ||
sativa | 0 | -618,440,708 | -23% | ||
indica | 0 | -887,000,447 | -23% | ||
kimjongun | 0 | -221,750,457 | -23% | ||
thebotkiller | 0 | -144,890,444,114 | -23% | ||
thecyclist | 0 | -1,915,498,466 | -23% | ||
illbeyourfriend | 0 | -9,378,132,295 | -23% | ||
engagement | 0 | -7,758,686,252 | -23% | ||
iflagtrash | 0 | -2,660,182,130 | -23% | ||
theyeti | 0 | -292,863,831 | -23% | ||
thedumpster | 0 | -26,480,772,332 | -23% | ||
yougotflagged | 0 | -1,973,180,747 | -23% | ||
randomthoughts | 0 | -3,330,191,341 | -23% | ||
sacred-agent | 0 | 9,864,230,709 | 9% | ||
thedelegator | 0 | -3,101,444,786 | -23% | ||
thesloth | 0 | -68,445,941,456 | -23% | ||
d00b | 0 | 39,997,010,274 | 100% | ||
nogalert | 0 | -7,883,955,853 | -23% | ||
ghettodweller | 0 | -21,501,794,508 | -23% |
Good idea! One more step forward towards a decentralized society.
author | vovannoviy |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t093714026z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 09:37:18 |
last_update | 2017-09-03 09:37:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 09:37:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 2,166,348,216 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,726,372 |
net_rshares | 0 |
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!
author | wilku |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t092203680z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 09:22:03 |
last_update | 2017-09-04 09:22:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 09:22:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 19,492,812,682,728 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,827,383 |
net_rshares | 0 |
good news
author | wuhotan |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t072931317z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 07:29:30 |
last_update | 2017-09-03 07:29:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 07:29:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 555,308,368,366 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,718,977 |
net_rshares | 1,754,917,395 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
egetror | 0 | 1,754,917,395 | 100% |
Thank you for sharing.
author | yentl7 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170904t063609598z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-04 06:36:09 |
last_update | 2017-09-04 06:36:09 |
depth | 1 |
children | 0 |
last_payout | 2017-09-11 06:36:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 4,960,280,242 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,816,575 |
net_rshares | 0 |
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.
author | zahidmasood |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t145634631z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 14:56:33 |
last_update | 2017-09-05 14:56:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 14:56:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 155 |
author_reputation | 2,216,436,641 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,955,156 |
net_rshares | 0 |
This is awesome.
author | zardoz144 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t151932143z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 15:19:33 |
last_update | 2017-09-03 15:19:33 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 15:19:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 34,495,646,010 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,752,192 |
net_rshares | 0 |
Congrats on being ahead of schedule.
author | zetetrahedron369 |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170903t091347323z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-03 09:13:48 |
last_update | 2017-09-03 09:13:48 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 09:13:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 804,797,990,499 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,725,014 |
net_rshares | 0 |
yes,baby
author | zzboy |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t083753236z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-05 08:37:54 |
last_update | 2017-09-05 08:37:54 |
depth | 1 |
children | 0 |
last_payout | 2017-09-12 08:37:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 17,499,909 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,926,393 |
net_rshares | 1,119,994,231 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zzboy | 0 | 1,119,994,231 | 100% |
https://steemitimages.com/0x0/https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png
author | zzboy |
---|---|
permlink | re-eosio-the-dawn-of-eos-io-20170905t084227744z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png"],"app":"steemit/0.1"} |
created | 2017-09-05 08:42:30 |
last_update | 2017-09-05 08:42:30 |
depth | 1 |
children | 1 |
last_payout | 2017-09-12 08:42:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 17,499,909 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,926,717 |
net_rshares | 0 |
你好啊,https://steemitimages.com/0x0/https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png
author | zzboy |
---|---|
permlink | re-zzboy-re-eosio-the-dawn-of-eos-io-20170905t084316566z |
category | eos |
json_metadata | {"tags":["eos"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmPgU9hugYig9dCJWYfpfDkZLA5Tmshk5qhTXg7rcfzuSq/image.png"],"app":"steemit/0.1"} |
created | 2017-09-05 08:43:21 |
last_update | 2017-09-05 08:43:21 |
depth | 2 |
children | 0 |
last_payout | 2017-09-12 08:43:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 17,499,909 |
root_title | "The Dawn of EOS.IO" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,926,797 |
net_rshares | 0 |