This week we made great strides toward refining the architecture of EOS and defining the developer API. In particular we have identified a programming model that should enable parallelism while maximizing ease of use and clarity of the code.
Updated Example Contracts
Those who have been following github may have noticed that we have started to integrate a number of example contracts to test our architecture and ensure we can cover the desired use cases.
This is what a simple currency contract looks like today:
/**
* Transfer requires that the sender and receiver be the first two
* accounts notified and that the sender has provided authorization.
*/
struct Transfer {
AccountName from;
AccountName to;
uint64_t amount = 0;
char memo[]; /// extra bytes are treated as a memo and ignored by logic
};
struct CurrencyAccount {
CurrencyAccount( uint64_t b = 0 ):balance(b){}
uint64_t balance = 0;
/** used as a hint to Db::store to tell it which table name within the current
* scope to use. Data is stored in tables under a structure like
*
* scope/code/table/key->value
*
* In this case the "singleton" table is designed for constant named keys that
* refer to a unique object type. User account balances are stored here:
*
* username/currency/singleton/account -> CurrencyAccount
*/
static Name tableId() { return NAME("singleton"); }
};
void apply_currency_transfer() {
const auto& transfer = currentMessage<Transfer>();
/** will call apply_currency_transfer() method in code defined by transfer.to and transfer.from */
requireNotice( transfer.to, transfer.from );
requireAuth( transfer.from );
static CurrencyAccount from_account;
static CurrencyAccount to_account;
Db::get( transfer.from, NAME("account"), from_account );
Db::get( transfer.to, NAME("account"), to_account );
assert( from_account.balance >= transfer.amount, "insufficient funds" );
from_account.balance -= transfer.amount;
to_account.balance += transfer.amount;
if( from_account.balance == 0 )
Db::remove<CurrencyAccount>( transfer.from, NAME("account") );
else
Db::store( transfer.from, NAME("account"), from_account );
Db::store( transfer.to, NAME("account"), to_account );
}
There are several notable aspects about this currency contract:
- it looks like normal sequential code
- but it can transfer among two pairs of users in parallel
What does this mean? It means that while Alice is transferring to Bob, Sam can be transferring to Jill. The performance of this currency contract is no longer limited by the single threaded performance constraints of prior currency contracts.
Start of Exchange Contract
We have also implemented a simple exchange contract that accepts deposits and withdraws from two different currency contracts:
struct Account {
uint64_t a = 0;
uint64_t b = 0;
int open_orders = 0;
bool isEmpty()const { return !(a|b|open_orders); }
/**
* Balance records for all exchange users are stored here
* exchange/exchange/balance/username -> Balance
*/
static Name tableId() { return Name("balance"); }
};
/**
* This method is called after the "transfer" action of code
* "currencya" is called and "exchange" is listed in the notifiers.
*/
void apply_currencya_transfer() {
const auto& transfer = currentMessage<Transfer>();
if( transfer.to == "exchange" ) {
static Balance to_balance;
Db::get( transfer.from, to_balance );
to_balance.a += transfer.amount;
Db::store( transfer.from, to_balance );
} else if( transfer.from == "exchange" ) {
requireAuth( transfer.to ); /// require the reciever of funds (account owner) to authorize this transfer
static Balance to_balance;
auto balance = Db::get( transfer.to, to_balance );
assert( balance.a >= transfer.amount, "insufficient funds to withdraw" );
balance.a -= transfer.amount;
if( balance.isEmpty() )
Db::remove<Balance>( transfer.to );
else
Db::store( transfer.to, to_balance );
} else {
assert( false, "notified on transfer that is not relevant to this exchange" );
}
}
/**
* This method is called after the "transfer" action of code
* "currencya" is called and "exchange" is listed in the notifiers.
*/
void apply_currencyb_transfer() {
const auto& transfer = currentMessage<Transfer>();
if( transfer.to == "exchange" ) {
static Balance to_balance;
Db::get( transfer.from, to_balance );
to_balance.b += transfer.amount;
Db::store( transfer.from, to_balance );
} else if( transfer.from == "exchange" ) {
requireAuth( transfer.to ); /// require the reciever of funds (account owner) to authorize this transfer
static Balance to_balance;
auto balance = Db::get( transfer.to, to_balance );
assert( balance.b >= transfer.amount, "insufficient funds to withdraw" );
balance.b -= transfer.amount;
if( balance.isEmpty() )
Db::remove<Balance>( transfer.to );
else
Db::store( transfer.to, to_balance );
} else {
assert( false, "notified on transfer that is not relevant to this exchange" );
}
}
What is interesting about this implementation is that deposits and withdraws occur without any asynchronous callbacks or other complex pending states. Rather than the user asking the exchange to tell the currency contract to withdraw funds, the exchange gives everyone permission to transfer from the exchange with the caveat that the exchange's handler for transfers is called on both deposits and withdraws. If a user attempts to withdraw more than their balance with the exchange contract the handler will reject the transfer attempt.
We have not quite yet implemented working tests of the exchange contract deposit and withdraw, but that is on the agenda for next week. We will also be implementing a basic social media application to prove that we have all the existing use cases covered.
Synchronous Calls
One of the biggest developments this week as an architecture that allows synchronous calls among tightly coupled applications while still retaining most of the benefits of parallelism. A future blog post will go into greater detail on our memory and parallel execution structure.
Cost of Storage
Some people have expressed concerns that if tokens are worth $30 billion dollars and there is only 1 TB of storage capacity that the cost of storage will be too high. I have prepared an article that explains how we address this and keep the cost of storage mostly independent from token price.
EOS.IO development is making great strides!
You @Dan are one of the vital few who are pushing human progress forward. Thank you. Most of the rest of us here are just hairless monkeys. (Myself included). Keep on building that market for liberty.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Most people do not understand why Dan is doing what he is doing - Dan isn't making money or neat tech, he is making a better future for all of us. Sounds a bit grandiose but it is simply the truth. One day EOS and other blockchain tech may enable governance without the coercion, violence, corruption, disparity and waste we all seem to accept as normal today. The big picture for these blockchains is very, very big...
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
That's the idea, let's see how things will turn out in future.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I could not have said it better myself. Thank you
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I second this notion, Kudos to @dan!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
EOS is still fighting for a good place in the market, anyway the idea and technology behind it is great. But Marketing and usage is the main key to gain value in the market and EOS still Lacks that.
so my message: Do not focus only on the development of the coin itself in terms of technology, but focus as well on gaining a lot of Merchants in order to rise the value. Furthermore try to include EOS in other famous exchanges.
Cheers
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I feel like once the tech is proven worthy of use it will be adopted with ease which makes marketing easier as well
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
True Flip {ICO} - Already running a transparent blockchain lottery! Bomb! Bonus 20%! Hurry! :)
The platform is already working and making a profit :)
https://steemit.com/ico/@happycoin/true-flip-ico-already-running-a-transparent-blockchain-lottery-bomb-bonus-20-hurry
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I wonder why an EOS-based exchange contract need deposit or withdrawals at all. It should like BitShares, all tokens are already in an exchange, users can place orders directly.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Because exchange contract runs in parallel. A user could construct a transaction to transfer and then create order atomicly, but unless the order is filled immediately they will have to execute a withdrawal later.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I think , if they're fully in parallel, then the two things (deposit then create order) are hard if not impossible to be processed atomically if there're two operations in one transaction. The deposit itself has to be a message from a user to the token contract, after it's done, communication should be made between the token contract and the exchange contract. Either the exchange contract explicitly ask the token contract to make sure the deposit is done, which requires a lock and perhaps a delay, or the token contract need to send a message to the exchange contract, which will need a delay as well, and contains the user's info when the user requested the deposit, but in this case, the user can directly request an "order creation" in the same way, so doesn't need a single "deposit" feature. When an order is filled, the exchange contract can immediately talk to another token contract directly to deposit the funds back to the user, so don't need the user to request a withdrawal. I do agree that simple deposit and withdrawal features are acceptable, which will help keep state in one contract only and simplify the logic, but perhaps it's not necessary. Ideally, the user should be able to attach a script with a deposit (which is a message to the token contract), for example, do nothing, or to place an order immediately; also in the script, the user can indicate when the order is filled/expired/cancelled, return the funds to the user or place another order, etc, etc.
//UPDATE: above comment was written before carefully read the blog post and the code, so it may be wrong. I will update with more info later.
//UPDATE2: so messages will be validated by all registered notifiers (contracts). If failed to pass a validation in one notifier then all changes done in other contracts will need to be rolled back. Interesting. How to do them in parallel?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I totally agree, bitshares is the way to go and the future
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Keep up the great work, I know all of that money can be distracting and so can the pressure of trying to create something great.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi, guys, Follow me and Upvote my posts in my blog and i will do the same thing!!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Nice to read about the progress made in steemit. Keep up the work.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Let's get this show on the Road Have me some 100 EOS can't wait for the tech! Thanks, Dan!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Oh @dan! EOS is great!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi, guys, Follow me and Upvote my posts in my blog and i will do the same thing!!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This is great work, specially "One of the biggest developments this week as an architecture that allows synchronous calls among tightly coupled applications while still retaining most of the benefits of parallelism." I read your post about "Storage" you explained the things in great way, good work dan
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You know... this post is a great example of how you guys SHOULD have been using SteemIt when you launched. SteemIt is a PERFECT platform for Press Releases and documenting changes and news about something... anything. In my case, I use Steem as a Publishing System. The LEAST you guys could have done at SteemIt was to post REGULARLY about the Platform, the day to day operations, and important updates.
Glad to see you've FINALLY learned this for EOS. Maybe @ned will get a clue after this post and go back to some regular posting about the Company he's in charge of...
Also, please understand that I'm just being FRANK and not looking to insult YOU or anyone related to SteemIt Inc. I just think it's hysterically obvious and felt the need to point it out.
Good luck with EOS and SteemON my man...
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Im a EOS investor. Hold because it will go to 3digits....
Domi
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I would like to buy some
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Are you reffering to being in the USA?
Domi
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I hold eos as well
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Were in a tough situation because USA Can Not participate. Also, they are offloading shares every so offten so get used to the price rising/dropping throughout this process.
What do you think will happen to this coin?
Domi
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great job coding. im not too familiar on how it hows, but i did I put together a quick video feat. @crypt0. Hope you guys enjoy it!
https://steemit.com/crypto-news/@vizualsamuri/why-this-crypto-ep-2-omar-bham-aka-crypt0-ethereum-201777t13421939z
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
"EOS.IO development is making great strides!"This is good.
WE have to introduce eos to steemitzimbabwe members this will change everything.We still in the early stages of adopting cryptocurrency,and Zimbabwe is the best thriving environment for crypto because of shortage of fiat. Thank you
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I like EOS.. but I don't own it one..
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congrats Dan, keep up the great work mate.
I cant wait to read your article that explains how you address the cost of storage capacity.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Price of EOS continues to go down. Hopefully people see the efforts your team has put into it. I am a stronger believer of it myself and will hold onto it. Thanks for the great work.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
All marketcap down.. don't worry.. it great network and project.. i trust dan larimer.. as what steem goes.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Me too. I just wish I didn't buy as much as I have. One cent swings make me cringe.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You've bought way too much then. Crypto can burn you badly.. Just hold and forget it if you believe in the project.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This is great, all the best with EOS.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Excellent well explained article.
Highly informative and definitely worth the read.
Put a lot of things into perspective for me.
Much appreciated
@incomepal
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
@Dan lets show the naysayers the power of EOS (Ethereum On Steroids)...
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Glad to see progress here!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
keep up the work @dan. it is great
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi, guys, Follow me and Upvote my posts in my blog and i will do the same thing!!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
not cool....
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
thank you @dan for these steps you take everyday to redefine and sweeten human progression. You add and keep adding and sometimes i wonder if you are ever gonna stop getting better. please don't stop and Steemit, Bitshares, EOS and your contributions shouldn't stop too.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
great post but EOS long way to go :-)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
EOS IS good blockchain technology but it needs to fulfill the promise and hype it created. That's the reason why many corporate backs EOS
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Loving the strides you are making towards the future of smart contracts and so much more with eos!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
https://steemit.com/beginning/@rokerzfirst101/to-infinity-and-beyond-1-the-start
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
excelente post!
soy nuevo en la plataforma pero estare publicando contenido acerca de las cryptodivisas!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
In my leisure i just think why this world is going smoothly coz i found that people are getting selfish .their world is only the house,family ,office for them. But trust me dan guyz like u make this world running. Proud of u bro.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great work and effort. Peace, love and decentralization is all we meed. Good post.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
It's beautiful to look at him, what's with this picture taken @dan
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Keep it Up Great
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great to see we have made progress every day. Thank you!
Looking forward your updates again.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
The code samples in your post are all C++ right? When and where will Wren fit in?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Sounds very innovative. trransfer among two pairs of users in parallel etc
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey, good luck on your journey in our fine community! I'll follow your account to see how you doing :). Please follow me @nakedchef89.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Dan is the Man!
You Rock!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I am saving some money for next month to buy a *&^% load of EOS!
I think this will be massive!!
Looking forward to hearing more form you.
definitely got a new follower!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Nice n great work @dan
Warm regards from Aceh
@teukurobbybinor
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Do you think that on other stock exchanges, except for Kraken, your tokens will soon appear?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
http://coinmarketcap.com/assets/eos/#markets
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
EOS is an ETH killer and is using ETH to do it! It's so poetic.... This is How Nerds Do Gangster Shit!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Good morning @dan you are a character in steemit I like too much your post I learn enough thanks for contributing that grain of sand. a greeting
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Excellent post continues to publish quality content :D
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @dan!
Your post was mentioned in my hit parade in the following category:
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great work
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thats awesome!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi Dan ,I 'm shocked ,why is Your post is decline from earnings???
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
FOLLOWED. Keep up the great work @dan. That's a great initiative we must all learn from
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi, guys, Follow me and Upvote my posts in my blog and i will do the same thing!!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
when bot taking the place LOL
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
EOS is gonna be huge. Glad I own some EOS.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Interesting post, its nice to see Steemit progress, thanks for sharing! #keepsteemin
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi, we desperatly need more humans like you! :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Ian Grigg explains EOS scaling:
https://steemit.com/eos/@belerophon/ian-grigg-explains-the-message-based-architecture-of-eos
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
helo guys, i am new in steemit and i understand that this platform works by blogging and getting paid if your followers like the content.pls follow me in my blog, i have written some little things and i will write more in the future like once every week, pls follow me at @dkinx
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
pls follow me and upvote me, i will follow you back, follow for follow @dkinx
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
It's amazing what you've done with Steemit so far! I can't imagine where we'll go from here. EOS is such a great supplement to Steemit and I'm thankful that you're here from the ground floor making the community a better place every day :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Nice feature of allowing that Synchronous Calls. Thanks for posting. Time to buy EOS.... followed n upvoted
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey brother, can you help me. Because every post I always have a little supporters and make me less enthusiasm.
https://steemit.com/introduceyourself/@munzil/introduce-meet-me-munzil-from-aceh-perkenalan-2017728t124144191z#@gaman/introduce-meet-me-munzil-from-aceh-perkenalan-2017728t124144191z-gaman-07292017
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hello goodmorning. Amanew steemians. I thank you for this information that you shared to us. I find it very helpful since am new. Hoping you will vote me also. Your feedback on my posts is very much appreciated. Thank you
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
i BELIEVE in EOS
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This is amazing revolution of eos, amazing creation in steemit. Thanks for motivation
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I'm invested in EOS. It has a lot of capability to push development onto the block chain and help us developers make better more simple apps that we can get into prod faster. Thanks for the hard work!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey, good luck on your journey in our fine community! I'll follow your account to see how you doing :). Please follow me @nakedchef89.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Going to be big.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I get more excited with every post, the world is way over-due for EOS ..
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
@gosu
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks for the code man i have been searching for this. Big upvote for you :-)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This looks much better than Solidity. I can't wait to test EOS as a developer.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
EOS is awesome
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Brand new to the Crypto space and Steemit. This is way above my head, but I'm excited to start learning this space.
Thank you
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I wonder why an EOS-based exchange contract need deposit. Indeed a great post so far. I followed you and do follow me @bindu. I wanna be a good friend of yours
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Love the innovation that is happening as we speak. And people are still able to join the ICO and be part of what EOS is trying to bring to the world. Can't wait to see it live in action.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
So what's the concluding price? Is it $30 billion for 1TB? :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Nice ,thank you sir for giving us such a wonderful platform
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Much pine sol to @dan developer unit for increasing knowledge and development of blockchain. Much progress made and to be made. Continue efforts for great pine sol gains. Unit must return to steemit floor cleaning duty.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
thx your information...
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hello @dan, Is it the case that EOS contract developer would need to understand how to write a code which can be executed in parallel. Or the rules will be somehow naturally enforced by the language. I believe that for average programmer is rather a difficult task to write bug free programs which can be executed safely in parallel.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Well everybody is blockchain block chaining It is going to change the world. Sure it is and the people that do this kind of work and enjoy it I love them. Humanity will only move forward when people wake up and develop as humans. Maybe the blockchain is part of human growth. As soon as our owners realize how to control the shit its over. So far they have been doing a real good job controlling peoples minds. I say they are experts. People believe they are free dont they!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Wow
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I'm new info blockchain technology and don't understand exactly what you've programmed or what ESO means. But I feel that many people can benefit from it and that it's again a step towards a central authority free world. And that is great. I'm going to follow you Dan and hope I can help you in reaching your goal. Thanks and keep up the good work.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great going with EOS development @dan! Was going through the Whitepaper and the vision seems to be: Develop an OS for DApps. Since we already have infrastructure to host DApps: Ethereum being one the most mature ones which envisions to have one Virtual Machine for all - The EVM:
Looking forward to a standard doc having a comparative analysis of frameworks, this would benefit potential users to decide EOS' use-cases. Again great work @dan, the async exchange contract is indeed a value add.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit