create account

EOS - Example Exchange Contract and Benefits of C++ by dan

View this thread on: hive.blogpeakd.comecency.com
· @dan ·
EOS - Example Exchange Contract and Benefits of C++
<div class="pull-right">

![](https://steemitimages.com/DQmX8oaBwa1EozUviFVXcoExKTLWvToS9gFiZLJNrganuzw/image.png)
</div>

This week I have been focused on the API that smart contract developers will use to write contracts. To help facilitate the design of this API I have given myself an example contract to write.  This time the example is a little bit more complex than just a currency contract, but a full up exchange between the native EOS currency and an example CURRENCY contract.

## Benefits of C++ API

Developers building on EOS will write their smart contracts in C++ that gets compiled to Web Assembly and then published to the blockchain. This means that we can take advantage of C++'s type and template system to ensure our contracts are safe.

One of the most basic kinds of safety is known as dimensional analysis, aka keeping your units straight. When developing an exchange you are dealing with several numbers with different units:  EOS, CURRENCY, and EOS / CURRENCY.  

A simple implementation would do something like this:

```
struct account {
  uint64_t  eos_balance;
  uint64_t  currency_balance;
};

```

The problem with this simple approach is that the following code could be accidentally written:

```
void buy( Bid order ) {
   ...
   buyer_account.currency _balance  -=  order.quantity;
   ...
}
```

At first glance the error isn't obvious, but upon closer inspection bids consume the eos_balance rather than the currency_balance.  In this case the market is setup to price CURRENCY in EOS.  Another kind of error that could occur is the following:

```
   auto receive_tokens = order.quantity * order.price;
```

This particular line of code may be valid if order is a Bid, but the price would need to be inverted if it were an Ask.  As you can see without proper dimensional analysis there is no way to be certain you are adding apples to apples and not apples to oranges.  

Fortunately, C++ allows us to use templates and operator overloading to define a runtime cost-free validation of our units.

```
template<typename NumberType, uint64_t CurrencyType = N(eos) >
   struct token {
       token(){}
       explicit token( NumberType v ):quantity(v){};
       NumberType quantity = 0;

       token& operator-=( const token& a ) {
          assert( quantity >= a.quantity, 
                        "integer underflow subtracting token balance" );
          quantity -= a.quantity;
          return *this;
       }

       token& operator+=( const token& a ) {
          assert( quantity + a.quantity >= a.quantity, 
                       "integer overflow adding token balance" );
          quantity += a.quantity;
          return *this;
       }

       inline friend token operator+( const token& a, const token& b ) {
          token result = a;
          result += b;
          return result;
       }

       inline friend token operator-( const token& a, const token& b ) {
          token result = a;
          result -= b;
          return result;
       }

       explicit operator bool()const { return quantity != 0; }
   };
```


With this definition there is now a clear type distinction in the account:

```
struct Account {
   eos::Tokens               eos_balance;
   currency::Tokens    currency_balance;
};

struct Bid {
    eos::Tokens quantity;
};

```

With this in place the following will generate a compile error because there is no `-= operator` defined for `eos::Tokens` and `currency::Tokens`.


```
void buy( Bid order ) {
   ...
   buyer_account.currency _balance  -=  order.quantity;
   ...
}
```

Using this technique I was able to use the compiler to identify and fix many unit mismatches in my implementation of an example exchange contract.  The really nice thing about all of this is that the final web assembly generated by the C++ compiler is identical to what would have been generated if I had simply used `uint64_t` for all of my balances.

Another thing you may notice is that the `token` class also automatically checks for over and underflow exceptions.

## Simplified Currency Contract

In the process of writing the exchange contract I first had update the currency contract. In doing so I refactored the currency contract into a header `currency.hpp` and a source `currency.cpp` so that the exchange contract could access types defined by the currency contract.


#### currency.hpp
```
#include <eoslib/eos.hpp>
#include <eoslib/token.hpp>
#include <eoslib/db.hpp>

/**
 * Make it easy to change the account name the currency is deployed to.
 */
#ifndef TOKEN_NAME
#define TOKEN_NAME currency
#endif

namespace TOKEN_NAME {

   typedef eos::token<uint64_t,N(currency)> Tokens;

   /**
    *  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;
      Tokens            quantity;
   };

   struct Account {
      Tokens           balance;

      bool  isEmpty()const  { return balance.quantity == 0; }
   };

   /**
    *  Accounts information for owner is stored:
    *
    *  owner/TOKEN_NAME/account/account -> Account
    *
    *  This API is made available for 3rd parties wanting read access to
    *  the users balance. If the account doesn't exist a default constructed
    *  account will be returned.
    */
   inline Account getAccount( AccountName owner ) {
      Account account;
      ///      scope, code, table,      key,       value
      Db::get( owner, N(currency), N(account), N(account), account );
      return account;
   }

} /// namespace TOKEN_NAME
```

#### currency.cpp
```
#include <currency/currency.hpp> /// defines transfer struct (abi)

namespace TOKEN_NAME {

   ///  When storing accounts, check for empty balance and remove account
   void storeAccount( AccountName account, const Account& a ) {
      if( a.isEmpty() ) {
         printi(account);
         ///        scope    table       key
         Db::remove( account, N(account), N(account) );
      } else {
         ///        scope    table       key         value
         Db::store( account, N(account), N(account), a );
      }
   }

   void apply_currency_transfer( const TOKEN_NAME::Transfer& transfer ) {
      requireNotice( transfer.to, transfer.from );
      requireAuth( transfer.from );

      auto from = getAccount( transfer.from );
      auto to   = getAccount( transfer.to );

      from.balance -= transfer.quantity; /// token subtraction has underflow assertion
      to.balance   += transfer.quantity; /// token addition has overflow assertion

      storeAccount( transfer.from, from );
      storeAccount( transfer.to, to );
   }

}  // namespace TOKEN_NAME

```


## Introducing the Exchange Contract

The exchange contract processes the currency::Transfer and the eos::Transfer messages when ever the exchange is the sender or receiver. It also implements three of its own messages: buy, sell, and cancel.  The exchange contract defines its public interface in `exchange.hpp` which is where the message types and database tables are defined.

#### exchange.hpp
```
#include <currency/currency.hpp>

namespace exchange {

   struct OrderID {
      AccountName name    = 0;
      uint64_t    number  = 0;
   };

   typedef eos::price<eos::Tokens,currency::Tokens>     Price;

   struct Bid {
      OrderID            buyer;
      Price              price;
      eos::Tokens        quantity;
      Time               expiration;
   };

   struct Ask {
      OrderID            seller;
      Price              price;
      currency::Tokens   quantity;
      Time               expiration;
   };

   struct Account {
      Account( AccountName o = AccountName() ):owner(o){}

      AccountName        owner;
      eos::Tokens        eos_balance;
      currency::Tokens   currency_balance;
      uint32_t           open_orders = 0;

      bool isEmpty()const { return ! ( bool(eos_balance) | bool(currency_balance) | open_orders); }
   };

   Account getAccount( AccountName owner ) {
      Account account(owner);
      Db::get( N(exchange), N(exchange), N(account), owner, account );
      return account;
   }

   TABLE2(Bids,exchange,exchange,bids,Bid,BidsById,OrderID,BidsByPrice,Price);
   TABLE2(Asks,exchange,exchange,bids,Ask,AsksById,OrderID,AsksByPrice,Price);


   struct BuyOrder : public Bid  { uint8_t fill_or_kill = false; };
   struct SellOrder : public Ask { uint8_t fill_or_kill = false; };
}
```

The exchange contract source code gets a bit long for this post, but you can [view it on github](https://github.com/EOSIO/eos/blob/master/contracts/exchange/exchange.cpp).  For now I will show the core message handler for a `SellOrder` to get an idea how it would be implemented:

```
void apply_exchange_sell( SellOrder order ) {
   Ask& ask = order;
   requireAuth( ask.seller.name );

   assert( ask.quantity > currency::Tokens(0), "invalid quantity" );
   assert( ask.expiration > now(), "order expired" );

   static Ask existing_ask;
   assert( AsksById::get( ask.seller, existing_ask ), "order with this id already exists" );

   auto seller_account = getAccount( ask.seller.name );
   seller_account.currency_balance -= ask.quantity;

   static Bid highest_bid;
   if( !BidsByPrice::back( highest_bid ) ) {
      assert( !order.fill_or_kill, "order not completely filled" );
      Asks::store( ask );
      save( seller_account );
      return;
   }

   auto buyer_account = getAccount( highest_bid.buyer.name );

   while( highest_bid.price >= ask.price ) {
      match( highest_bid, buyer_account, ask, seller_account );

      if( highest_bid.quantity == eos::Tokens(0) ) {
         save( seller_account );
         save( buyer_account );
         Bids::remove( highest_bid );
         if( !BidsByPrice::back( highest_bid ) ) {
            break;
         }
         buyer_account = getAccount( highest_bid.buyer.name );
      } else {
         break; // buyer's bid should be filled
      }
   }

   save( seller_account );
   if( ask.quantity ) {
      assert( !order.fill_or_kill, "order not completely filled" );
      Asks::store( ask );
   }
}
```

As you can see the code here is relatively concise, readable, safe, and most importantly performant. 

## Isn't C++ an Unsafe Language?

Those who are into language wars may be familiar with the challenges that C and C++ programers have managing memory. Fortunately, most of those issues go away when building smart contracts because your program "restarts" with a clean slate at the start of every message. Furthermore, there is rarely a need to implement dynamic memory allocation. This entire exchange contract doesn't call `new` or `delete` nor `malloc` or `free`.  The WebAssembly framework will automatically reject any transaction that would address memory wrong.

This means that most of the problems with C++ go away when using it for short-lived message handlers and we are left with its many benefits.


## Conclusion

EOS.IO software is progressing nicely and I couldn't be happier with how much fun it is to write smart contracts using this API.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 529 others
👎  ,
properties (23)
authordan
permlinkeos-example-exchange-contract-and-benefits-of-c
categoryeos
json_metadata{"tags":["eos","developerslog"],"image":["https://steemitimages.com/DQmX8oaBwa1EozUviFVXcoExKTLWvToS9gFiZLJNrganuzw/image.png"],"links":["https://github.com/EOSIO/eos/blob/master/contracts/exchange/exchange.cpp"],"app":"steemit/0.1","format":"markdown"}
created2017-07-12 22:29:00
last_update2017-07-12 22:29:00
depth0
children134
last_payout2017-07-19 22:29:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,106
author_reputation155,470,101,136,708
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id8,276,284
net_rshares194,203,017,032,038
author_curate_reward""
vote details (595)
@aakashsinha ·
i wonder why you decline your payouts from your post......... you can always give them to small minnows like me.... hahaha
properties (22)
authoraakashsinha
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t180405888z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 18:04:12
last_update2017-07-15 18:04:12
depth1
children0
last_payout2017-07-22 18:04:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation30,747,530,868
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,593,896
net_rshares0
@abupasi.alachy ·
Nice
Incredible friend best regards from me@abupasi.alachy
👍  
properties (23)
authorabupasi.alachy
permlinkre-dan-2017715t12495998z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-15 05:49:06
last_update2017-07-15 05:49:06
depth1
children0
last_payout2017-07-22 05:49:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation5,557,880,714,706
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,536,124
net_rshares724,574,333
author_curate_reward""
vote details (1)
@agbaregha ·
hi @dan you flag my recent post https://steemit.com/steemit/@agbaregha/why-strength-matters-most-to-women-50  i am really sorry for any Plagiarism  now i have learned my lesson please forgive me. you can help me out by removing downvote please......
👍  ,
properties (23)
authoragbaregha
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t231401251z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"links":["https://steemit.com/steemit/@agbaregha/why-strength-matters-most-to-women-50"],"app":"steemit/0.1"}
created2017-07-12 23:14:00
last_update2017-07-12 23:14:00
depth1
children0
last_payout2017-07-19 23:14:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation-2,303,639,052,731
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,279,676
net_rshares3,640,858,660
author_curate_reward""
vote details (2)
@aifuture · (edited)
Way more interested in what happens to steem, you could build a lot of apllications around a working social network like that
👍  
properties (23)
authoraifuture
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t223411254z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 22:34:12
last_update2017-07-12 22:34:30
depth1
children0
last_payout2017-07-19 22:34:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation21,592,400,088
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,276,636
net_rshares499,090,494
author_curate_reward""
vote details (1)
@allgirls ·
nice learn
properties (22)
authorallgirls
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170726t012648179z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-26 01:26:51
last_update2017-07-26 01:26:51
depth1
children0
last_payout2017-08-02 01:26:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation18,789,192,872
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,735,743
net_rshares0
@almost-digital ·
$18.77
Nice post! Steemit really needs syntax highlighting though :) Any thoughts on using something like [AssemblyScript](https://github.com/dcodeIO/AssemblyScript) for writing contracts?
👍  , , , , , , , , , , , , ,
properties (23)
authoralmost-digital
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t085231855z
categoryeos
json_metadata{"tags":["eos"],"links":["https://github.com/dcodeIO/AssemblyScript"],"app":"steemit/0.1"}
created2017-07-13 08:52:33
last_update2017-07-13 08:52:33
depth1
children4
last_payout2017-07-20 08:52:33
cashout_time1969-12-31 23:59:59
total_payout_value14.550 HBD
curator_payout_value4.217 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation12,829,718,661,429
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,319,021
net_rshares4,573,284,165,651
author_curate_reward""
vote details (14)
@adsactly ·
Great Suggestion
properties (22)
authoradsactly
permlinkre-almost-digital-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t105916652z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 10:59:15
last_update2017-07-15 10:59:15
depth2
children0
last_payout2017-07-22 10:59:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation1,632,197,573,446,796
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,557,151
net_rshares0
@asif4745 ·
![money-animated-gif-13.gif](https://steemitimages.com/DQmdqX7NRkcm7MtuoeuFtbZR1KBq6TvKJxdut6WiB7arR8t/money-animated-gif-13.gif)
properties (22)
authorasif4745
permlinkre-almost-digital-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170825t111902341z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/DQmdqX7NRkcm7MtuoeuFtbZR1KBq6TvKJxdut6WiB7arR8t/money-animated-gif-13.gif"],"app":"steemit/0.1"}
created2017-08-25 11:19:03
last_update2017-08-25 11:19:03
depth2
children0
last_payout2017-09-01 11:19:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation1,009,576,991,023
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,829,878
net_rshares0
@jamesc1 ·
Can you compare with TurboScript?  Looks like AssemblyScript is much more mature than TurboScript.  I wonder though why we have two similar projects.   

Does it decompile from wasm too?
properties (22)
authorjamesc1
permlinkre-almost-digital-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t140055466z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 14:00:54
last_update2017-07-15 14:00:54
depth2
children1
last_payout2017-07-22 14:00:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation939,862,516,890
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,571,153
net_rshares0
@almost-digital ·
$0.45
AFAIK AssemblyScript was born out of dissatisfaction with some of the design choices in TurboScript. Not sure what the exact differences are anymore, looks like TurboScript is moving to binaryen now as well. I would personally go with AssemblyScript in a heartbeat just because I know that the dcode guy makes some great modules.

It doesn't decompile from wasm, and I don't think it ever will. You could maybe use SourceMaps to go back when support for that is added.
👍  
properties (23)
authoralmost-digital
permlinkre-jamesc1-re-almost-digital-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t150433505z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 15:04:33
last_update2017-07-15 15:04:33
depth3
children0
last_payout2017-07-22 15:04:33
cashout_time1969-12-31 23:59:59
total_payout_value0.336 HBD
curator_payout_value0.112 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length468
author_reputation12,829,718,661,429
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,576,855
net_rshares97,503,191,714
author_curate_reward""
vote details (1)
@angila ·
i dont know what can i do here , but i am trying  for my work.
properties (22)
authorangila
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t200310978z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 20:03:21
last_update2017-07-13 20:03:21
depth1
children0
last_payout2017-07-20 20:03:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation121,106,191,895
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,377,853
net_rshares0
@arcange ·
Congratulations @dan!
Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170712) in the following category:

* Pending payout - Ranked 1 with $ 928,14
properties (22)
authorarcange
permlinkre-eos-example-exchange-contract-and-benefits-of-c-20170712t163417000z
categoryeos
json_metadata""
created2017-07-13 14:33:18
last_update2017-07-13 14:33:18
depth1
children0
last_payout2017-07-20 14:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation1,146,633,668,945,473
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,346,831
net_rshares0
@banglasteve · (edited)
Awesome article Dan. Thanks for keeping us in the loop on the current updates and works of EOS. In light of recent price action this is most reassuring as us pro-EOS supporters are often told that it is an 'unproven' tech. Please keep us posted as you make further progress.
properties (22)
authorbanglasteve
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t223416058z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 22:34:21
last_update2017-07-12 22:36:06
depth1
children0
last_payout2017-07-19 22:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length274
author_reputation199,151,483,882
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,276,650
net_rshares0
@behamot ·
I think the change to web assembly was a great decision which will have a big impact on EOS adoption in the enterprise world. We will be virtually able to use soon any programming language.
👍  
properties (23)
authorbehamot
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t111428919z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 11:14:30
last_update2017-07-13 11:14:30
depth1
children0
last_payout2017-07-20 11:14:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length189
author_reputation86,301,808,625
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,328,771
net_rshares0
author_curate_reward""
vote details (1)
@beulahlandeu ·
Can you teach me how you do this please

https://steemitimages.com/0x0/https://steemitimages.com/DQmNuF3L71zzxAyJB7Lk37yBqjBRo2uafTAudFDLzsoRV5L/1.gif
👍  
properties (23)
authorbeulahlandeu
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170719t140958810z
categoryeos
json_metadata{"tags":["eos"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmNuF3L71zzxAyJB7Lk37yBqjBRo2uafTAudFDLzsoRV5L/1.gif"],"app":"steemit/0.1"}
created2017-07-19 14:10:03
last_update2017-07-19 14:10:03
depth1
children0
last_payout2017-07-26 14:10:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation1,564,104,392,804
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,978,145
net_rshares174,101,009
author_curate_reward""
vote details (1)
@bhanukumar ·
Gr8t
properties (22)
authorbhanukumar
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t091020989z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 09:10:36
last_update2017-07-14 09:10:36
depth1
children0
last_payout2017-07-21 09:10:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,435,663
net_rshares0
@bilalhaider ·
i like your post :) @bilalhaider please visit my post also :)
properties (22)
authorbilalhaider
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t120234469z
categoryeos
json_metadata{"tags":["eos"],"users":["bilalhaider"],"app":"steemit/0.1"}
created2017-07-13 12:02:36
last_update2017-07-13 12:02:36
depth1
children0
last_payout2017-07-20 12:02:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation-1,110,314,579,307
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,332,557
net_rshares0
@bindu ·
WOW! such a informative post. I loved it
properties (22)
authorbindu
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t211611607z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 08:31:45
last_update2017-07-14 08:31:45
depth1
children0
last_payout2017-07-21 08:31:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation5,052,906,972,743
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,432,766
net_rshares0
@bitcalm · (edited)
Before I start, I've not looked in-depth at how EOS smart contracts will be implemented. Consider this a thinking out loud comment.

>Furthermore, there is rarely a need to implement dynamic memory allocation.

What about developers that are intentionally trying to cause harm? You mention that it restarts with a clean slate each time, but what does that mean?

@dan
Given that (as you mention) c++ is inherently unsafe, what protection is there against obfuscated contracts that cause harm to unsuspecting users?
👍  ,
properties (23)
authorbitcalm
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t095119081z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1","users":["dan"]}
created2017-07-13 09:51:18
last_update2017-07-13 09:53:45
depth1
children2
last_payout2017-07-20 09:51:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length514
author_reputation24,919,530,803,138
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,322,965
net_rshares2,374,060,667
author_curate_reward""
vote details (2)
@dan ·
$0.13
The constitution.  Contact has limited working memory and with abort it it runs out.
👍  , , ,
properties (23)
authordan
permlinkre-bitcalm-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t132806426z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 13:28:06
last_update2017-07-13 13:28:06
depth2
children1
last_payout2017-07-20 13:28:06
cashout_time1969-12-31 23:59:59
total_payout_value0.103 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation155,470,101,136,708
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,340,371
net_rshares33,234,164,197
author_curate_reward""
vote details (4)
@fatema ·
hey @dan!! 
i've posted my first blog .............plzzz check
properties (22)
authorfatema
permlinkre-dan-re-bitcalm-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t043030874z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-15 04:30:33
last_update2017-07-15 04:30:33
depth3
children0
last_payout2017-07-22 04:30:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation112,664,639,703
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,531,107
net_rshares0
@bitman007 ·
its really useful software wtih much fun thanks to introduce @dan
properties (22)
authorbitman007
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t055926462z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-13 05:59:27
last_update2017-07-13 05:59:27
depth1
children0
last_payout2017-07-20 05:59:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation-7,807,591,714
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,307,643
net_rshares0
@brojii ·
If only I knew how to code, reading this article would be much easier!
👍  ,
properties (23)
authorbrojii
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t191518580z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 19:15:18
last_update2017-07-13 19:15:18
depth1
children0
last_payout2017-07-20 19:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation614,153,782
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,373,291
net_rshares1,955,735,565
author_curate_reward""
vote details (2)
@callmechandan ·
Wow, thanks for sharing with us, keep up the good work, bro!
Upvoted and reestem'D
properties (22)
authorcallmechandan
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t083210800z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 08:32:21
last_update2017-07-14 08:32:21
depth1
children0
last_payout2017-07-21 08:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation12,134,486,945
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,432,800
net_rshares0
@chidiband ·
nice display
 friends am new here up vote and follow me on my blog @chidiband
i promise to do the same to yours
👍  
👎  , ,
properties (23)
authorchidiband
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t085318552z
categoryeos
json_metadata{"tags":["eos"],"users":["chidiband"],"app":"steemit/0.1"}
created2017-07-13 08:53:15
last_update2017-07-13 08:53:15
depth1
children2
last_payout2017-07-20 08:53:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation-28,286,876,445
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,319,084
net_rshares-2,576,553,723,851
author_curate_reward""
vote details (4)
@kaizentive ·
Welcome! I am rather new also.
👍  ,
properties (23)
authorkaizentive
permlinkre-chidiband-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t091417670z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 09:14:21
last_update2017-07-13 09:14:21
depth2
children1
last_payout2017-07-20 09:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation23,332,626,160
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,320,520
net_rshares1,143,266,432
author_curate_reward""
vote details (2)
@freecat ·
Pues ahí tienes mi voto.
properties (22)
authorfreecat
permlinkre-kaizentive-re-chidiband-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t223946303z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 22:39:48
last_update2017-07-13 22:39:48
depth3
children0
last_payout2017-07-20 22:39:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation-11,397,234,708
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,390,323
net_rshares0
@chuxlouis ·
What is witness vote, how does one become a part of it and what is the benefit please ,any one that knows please kindly answer me please, thank you so very much in advance.
목격자 표결은 무엇이며, 어떻게 그것의 일부가되며 혜택은 무엇입니까, 제발 친절하게 대답 해주십시오. 제발, 제발 대단히 감사드립니다.
什么是见证投票,如何成为它的一部分,什么是好处,请知道任何一个请客气请回答我,非常感谢你提前。
👍  
properties (23)
authorchuxlouis
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170728t142405488z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-28 14:24:06
last_update2017-07-28 14:24:06
depth1
children0
last_payout2017-08-04 14:24:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length296
author_reputation831,752,393,309
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,024,628
net_rshares0
author_curate_reward""
vote details (1)
@cyberspace · (edited)
@dan [My introduction](https://steemit.com/introduceyourself/@cyberspace/introduce-yourself-first-post-by-cyberspace)

FYI: My article on EOS and the potential for disrupting Steem and every other 1st generation blockchain on the basis of 1) their code and design structure, 2) transaction capacity and 3)  migration of the masses into blockchain space. Would appreciate your feedback on this
https://steemit.com/steemit/@cyberspace/the-new-eos-platform-will-disrupt-steem-bitcoin-ethereum-and-all-1st-generation-blockchains-and-cryptocoins-guaranteed
properties (22)
authorcyberspace
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170724t021649169z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"links":["https://steemit.com/introduceyourself/@cyberspace/introduce-yourself-first-post-by-cyberspace","https://steemit.com/steemit/@cyberspace/the-new-eos-platform-will-disrupt-steem-bitcoin-ethereum-and-all-1st-generation-blockchains-and-cryptocoins-guaranteed"],"app":"steemit/0.1"}
created2017-07-24 02:17:00
last_update2017-07-24 02:22:12
depth1
children0
last_payout2017-07-31 02:17:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length551
author_reputation780,337,768,524
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,480,574
net_rshares0
@cyberspace ·
https://steemitimages.com/DQmRj5vsX2buwAg5p1SSanzfZQ71NoH4LPKTVvAr5QQKWeK/gold-bar-1.jpg

# @dan Analysis of Steem's Economy - A Social Scientist's First Impressions - Part 3/4 in the series. #
https://steemit.com/steemit/@cyberspace/analysis-of-steem-s-economy-a-social-scientist-s-first-impressions-part-3-4
properties (22)
authorcyberspace
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170727t173955974z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"image":["https://steemitimages.com/DQmRj5vsX2buwAg5p1SSanzfZQ71NoH4LPKTVvAr5QQKWeK/gold-bar-1.jpg"],"links":["https://steemit.com/steemit/@cyberspace/analysis-of-steem-s-economy-a-social-scientist-s-first-impressions-part-3-4"],"app":"steemit/0.1"}
created2017-07-27 17:40:12
last_update2017-07-27 17:40:12
depth1
children0
last_payout2017-08-03 17:40:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length309
author_reputation780,337,768,524
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,935,948
net_rshares0
@dana-edwards · (edited)
@dan how would someone offer a token smart contract which offers both ability to reward dividends to holders and the ability of holders to reinvest the dividends back into the token simulating DRIP functionality?

I know C++ so these examples interest me.
properties (22)
authordana-edwards
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170716t060200577z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-16 06:02:03
last_update2017-07-16 06:02:45
depth1
children0
last_payout2017-07-23 06:02:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length255
author_reputation353,623,611,191,427
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,641,802
net_rshares0
@darsico ·
$0.03
cool :) i can see this as an asp or php thanks!
👍  
properties (23)
authordarsico
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170802t150833484z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-08-02 15:08:33
last_update2017-08-02 15:08:33
depth1
children0
last_payout2017-08-09 15:08:33
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation106,907,148,547,936
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,547,079
net_rshares8,692,313,635
author_curate_reward""
vote details (1)
@dizhmur ·
@dan you Great MAN! WhY you upped me? nocomments, no resons
properties (22)
authordizhmur
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t101942712z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-13 10:19:48
last_update2017-07-13 10:19:48
depth1
children0
last_payout2017-07-20 10:19:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation-2,547,661,927,146
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,324,751
net_rshares0
@dkinx ·
follow for follow @dkinx
properties (22)
authordkinx
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170724t104139972z
categoryeos
json_metadata{"tags":["eos"],"users":["dkinx"],"app":"steemit/0.1"}
created2017-07-24 10:41:42
last_update2017-07-24 10:41:42
depth1
children0
last_payout2017-07-31 10:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation17,499,415,125
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,518,435
net_rshares0
@dobro88888888 ·
Thanks for the very hard work. Retweet.
properties (22)
authordobro88888888
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t112227712z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 11:22:33
last_update2017-07-13 11:22:33
depth1
children0
last_payout2017-07-20 11:22:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation418,242,269,128
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,329,410
net_rshares0
@doncute ·
Hmmm you are making my day
properties (22)
authordoncute
permlinkre-dan-2017713t132454975z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-13 12:25:27
last_update2017-07-13 12:25:27
depth1
children0
last_payout2017-07-20 12:25:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation46,173,848,282
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,334,638
net_rshares0
@dragosroua ·
I like the elegance of C++ but I am reluctant to the potential security troubles without proper memory management. If I remember well, ETC/ETH split happened because of a trivial bug, a recursive call or something. If C++ will be language of choice for EOS, I think it will need some strong memory management rules, built at the blockchain level. If there's bare metal C++ written, then the attack surface is big. I don't know how exactly Web Assembly will deal with this, I admit, but without taking that into account, it seems like a playground for nasty stuff waiting to explode.
properties (22)
authordragosroua
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t081224473z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 08:12:24
last_update2017-07-14 08:12:24
depth1
children1
last_payout2017-07-21 08:12:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length582
author_reputation372,798,229,806,288
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,431,304
net_rshares0
@dan ·
We assembly keeps everything safe and attack surfaces minimal.
properties (22)
authordan
permlinkre-dragosroua-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t184222095z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 18:42:21
last_update2017-07-15 18:42:21
depth2
children0
last_payout2017-07-22 18:42:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation155,470,101,136,708
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,597,148
net_rshares0
@durgeshg ·
https://media.giphy.com/media/v8Lg663nPFGve/giphy.gif
properties (22)
authordurgeshg
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t094017639z
categoryeos
json_metadata{"tags":["eos"],"image":["https://media.giphy.com/media/v8Lg663nPFGve/giphy.gif"],"app":"steemit/0.1"}
created2017-07-15 09:40:18
last_update2017-07-15 09:40:18
depth1
children0
last_payout2017-07-22 09:40:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation71,702,271,115
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,551,973
net_rshares0
@edumurphy ·
Amazing work. I mean,  I'm just your bog-standard cryptocurrency enthusiast and know basically nothing about coding but it seems like you are handily solving some of the security issues Ethereum has exhibited in the past year (and month)

Can't wait to see what else you guys can do with the Ethereum blockchain. It's an exciting time to be alive :D
properties (22)
authoredumurphy
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170724t143554317z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-24 14:36:06
last_update2017-07-24 14:36:06
depth1
children0
last_payout2017-07-31 14:36:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length349
author_reputation3,965,984,655,492
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,543,771
net_rshares0
@fabianledda ·
Hello brother,can you help me? i´m new in this plataform and it´s very dificulty
👎  
properties (23)
authorfabianledda
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t234554505z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 23:46:00
last_update2017-07-13 23:46:00
depth1
children0
last_payout2017-07-20 23:46:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation-11,087,346,489
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,395,014
net_rshares-806,617,313,274
author_curate_reward""
vote details (1)
@fatema ·
yep ,it is very beneficial for develpor/programmers  , its very helpful. thanks for this post.
UPVOTED.....
properties (22)
authorfatema
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t074155210z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 07:42:00
last_update2017-07-13 07:42:00
depth1
children0
last_payout2017-07-20 07:42:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation112,664,639,703
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,314,276
net_rshares0
@freecat ·
Excelente información. Muchas gracias por compartirlo, me resultó de gran ayuda. Te deseo muchos éxitos.
👍  
👎  
properties (23)
authorfreecat
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t223756860z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 22:38:00
last_update2017-07-13 22:38:00
depth1
children0
last_payout2017-07-20 22:38:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation-11,397,234,708
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,390,195
net_rshares-746,575,007,345
author_curate_reward""
vote details (2)
@freshstuff ·
Thanks for your update  ,respect 🙂
properties (22)
authorfreshstuff
permlinkre-dan-2017713t21147908z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-12 23:11:57
last_update2017-07-12 23:11:57
depth1
children0
last_payout2017-07-19 23:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation4,090,858,283,419
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,279,530
net_rshares0
@globalvanguard ·
$0.21
I don't know C++ but your explanation makes a lot of sense. Glad to hear about the progress on EOS.
👍  , ,
properties (23)
authorglobalvanguard
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t011752367z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 01:17:54
last_update2017-07-13 01:17:54
depth1
children0
last_payout2017-07-20 01:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.214 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation121,283,662,260
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,288,357
net_rshares54,647,899,763
author_curate_reward""
vote details (3)
@greatvideos ·
$0.03
I wish eos a great long life ahead 
Keep it up 
👍  
properties (23)
authorgreatvideos
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-2017715t225923888z
categoryeos
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-15 21:59:27
last_update2017-07-15 21:59:27
depth1
children0
last_payout2017-07-22 21:59:27
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation6,696,611,383,944
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,612,129
net_rshares7,836,538,003
author_curate_reward""
vote details (1)
@haerang2 ·
Thank you dan!!
properties (22)
authorhaerang2
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t020207533z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 02:02:06
last_update2017-07-13 02:02:06
depth1
children0
last_payout2017-07-20 02:02:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation3,411,645,805,863
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,291,383
net_rshares0
@hamzaoui ·
$0.27
Good post thanks for sharing
👍  
properties (23)
authorhamzaoui
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t000347223z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 00:03:54
last_update2017-07-13 00:03:54
depth1
children1
last_payout2017-07-20 00:03:54
cashout_time1969-12-31 23:59:59
total_payout_value0.201 HBD
curator_payout_value0.066 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation2,667,249,998,202
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,283,071
net_rshares70,220,321,525
author_curate_reward""
vote details (1)
@booster ·
<p>This comment has received a 0.15 % upvote from @booster thanks to: @hamzaoui.</p>
properties (22)
authorbooster
permlinkre-hamzaoui-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t000347223z-20170715t153422699z
categoryeos
json_metadata{"tags":["eos-example-exchange-contract-and-benefits-of-c"],"app":"drotto/0.0.1"}
created2017-07-15 15:34:39
last_update2017-07-15 15:34:39
depth2
children0
last_payout2017-07-22 15:34:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation68,767,115,776,562
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,579,902
net_rshares0
@heikinashitrader ·
Thanks for sharing
👍  ,
properties (23)
authorheikinashitrader
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t161446040z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 16:14:45
last_update2017-07-13 16:14:45
depth1
children0
last_payout2017-07-20 16:14:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation6,379,607,166
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,356,470
net_rshares1,671,371,605
author_curate_reward""
vote details (2)
@incomepal ·
$0.04
Smart contracts is definitely the way forward into the future. EOS has great potential and can possibly one of the greatest in it's space. I'll be keeping an eye out.
@incomepal
👍  , , , ,
properties (23)
authorincomepal
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-2017713t05322457z
categoryeos
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-12 23:53:24
last_update2017-07-12 23:53:24
depth1
children0
last_payout2017-07-19 23:53:24
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation144,322,585,330
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,282,314
net_rshares11,969,378,377
author_curate_reward""
vote details (5)
@jamesc1 · (edited)
It would great to have l-values returned in favor of output arguments.  So if I'm reading this right:

instead of
>Db::get( N(exchange), N(exchange), N(account), owner, account );

use:
>account = Db::get( N(exchange), N(exchange), N(account), owner );
properties (22)
authorjamesc1
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t020255180z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 02:02:54
last_update2017-07-14 02:03:18
depth1
children0
last_payout2017-07-21 02:02:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length252
author_reputation939,862,516,890
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,404,647
net_rshares0
@johnhostick ·
thanks great information
👍  
properties (23)
authorjohnhostick
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t230413325z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 23:04:12
last_update2017-07-12 23:04:12
depth1
children0
last_payout2017-07-19 23:04:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation-927,342,159
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,278,965
net_rshares742,832,293
author_curate_reward""
vote details (1)
@joseph.kalu ·
rest
properties (22)
authorjoseph.kalu
permlinkre--d-a-n--eos-example-exchange-contract-and-benefits-of-c
categoryeos
json_metadata"{"app": "steepshot/0.0.5"}"
created2017-07-14 15:57:27
last_update2017-07-14 15:57:27
depth1
children0
last_payout2017-07-21 15:57:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-862,776,453,959
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,471,405
net_rshares0
@jsant72 ·
Thanks for taking the time to explain everything well detailed and clear. @dan
👍  ,
properties (23)
authorjsant72
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t033311984z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-13 03:33:09
last_update2017-07-13 03:33:09
depth1
children1
last_payout2017-07-20 03:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation1,356,735,398,510
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,297,690
net_rshares5,037,637,392
author_curate_reward""
vote details (2)
@ionlysaymeep ·
meep
👍  ,
properties (23)
authorionlysaymeep
permlinkre-jsant72-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t033311984z-20170713t034740487z
categoryeos
json_metadata{"tags":["eos"],"app":"meep_bot/0.0.1"}
created2017-07-13 03:47:42
last_update2017-07-13 03:47:42
depth2
children0
last_payout2017-07-20 03:47:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation754,962,855,156
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,298,690
net_rshares1,973,152,768
author_curate_reward""
vote details (2)
@juvyjabian ·
Hello sir @dan, can I possibly disturb your privacy and have a word with you? Can I contact you on steemit.chat or you prefer it here?
properties (22)
authorjuvyjabian
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170926t111326479z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-09-26 12:23:24
last_update2017-09-26 12:23:24
depth1
children0
last_payout2017-10-03 12:23:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation185,700,092,637,158
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,977,560
net_rshares0
@jyezie ·
you expect people to code contracts in C++? I don't think there are enough C++ dev who know how to write ***secure*** programs.
properties (22)
authorjyezie
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t205005800z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 20:50:06
last_update2017-07-13 20:50:06
depth1
children0
last_payout2017-07-20 20:50:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation10,455,245,950,375
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,381,728
net_rshares0
@kebek ·
SUCH POST!
👍  ,
properties (23)
authorkebek
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t105141940z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 10:51:42
last_update2017-07-13 10:51:42
depth1
children0
last_payout2017-07-20 10:51:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation503,340,566
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,327,129
net_rshares173,235,050
author_curate_reward""
vote details (2)
@krytonika ·
Awesome @dan - This man knows his stuff and is a legend in his own right in crypto - Very grateful for the play be play illustrating the coding used to write the contracts
properties (22)
authorkrytonika
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t064106676z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-13 06:41:06
last_update2017-07-13 06:41:06
depth1
children0
last_payout2017-07-20 06:41:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation3,220,032,340,024
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,310,300
net_rshares0
@lasseehlers · (edited)
$10.58
Hallo @dantheman , 

I have some questions about EOS:

- Is it an operative system or only smart contracts?

- Which languages do I need to learn in dept to be able to program a serious ride sharing service to take over the world of ride-sharing (I have programmed since I was a child, but as an adult mostly c# with asp.net framework, but also many other languages, mostly as hacks, never understood all the code)

I want to prepare myself to posibily make a ride-sharing app that out-compete uber and conventional taxi services, other then working as an economist (with programming jobs included in the job), I have been working as a taxitemp and a uber driver and know how to make a decentral solution that will solve all (or the crusial) problems of centralized ride/taxi services.

Mostly it is about sharing the 20-50% that uber or taxi company takes between the rider and the driver and getting all ratings on the blockchain. Uber manipulate ratings to their own benefit, and extort drivers... plus their business model is based on massive loans from the corrupt fiat central banks... I could go on with this, but back to the programming part.

Is it c++ that I need to master completely and/or is it realisticly for a semi-pro freelance soft programmer to learn before EOS is ready?

If it is a smart contract platform, then is the website or phone app still hosted on centralized serviecs?? You know it is all about getting that decentralized too, so that no regulation will be able to stop the app/site ??.. I have heard that steemit would run on EOS, but is that also the site itself? Maybe some of these questions shows how little I still know about EOS and other things and hope my questions are not too stupid :)

Thanks for the great work, I really enjoy Steem and  also hold a little Bitshares and EOS.

Lasse
👍  , , , , , , , , , , , , , ,
properties (23)
authorlasseehlers
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t093651225z
categoryeos
json_metadata{"tags":["eos"],"users":["dantheman"],"app":"steemit/0.1"}
created2017-07-13 09:36:51
last_update2017-07-13 12:58:09
depth1
children2
last_payout2017-07-20 09:36:51
cashout_time1969-12-31 23:59:59
total_payout_value8.609 HBD
curator_payout_value1.967 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,825
author_reputation-19,493,504,758,628
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,322,085
net_rshares2,575,352,048,164
author_curate_reward""
vote details (15)
@ankar ·
@dantheman Please answer this questions.
properties (22)
authorankar
permlinkre-lasseehlers-re-dan-eos-example-exchange-contract-and-benefits-of-c-20171219t044038372z
categoryeos
json_metadata{"tags":["eos"],"users":["dantheman"],"app":"steemit/0.1"}
created2017-12-19 04:40:39
last_update2017-12-19 04:40:39
depth2
children0
last_payout2017-12-26 04:40:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation130,030,985,850
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,127,360
net_rshares0
@supermarioalves ·
This is something that concerns me too... Could someone please address this?
@dantheman?
properties (22)
authorsupermarioalves
permlinkre-lasseehlers-re-dan-eos-example-exchange-contract-and-benefits-of-c-20180830t153421737z
categoryeos
json_metadata{"tags":["eos"],"users":["dantheman"],"app":"steemit/0.1"}
created2018-08-30 15:34:21
last_update2018-08-30 15:34:21
depth2
children0
last_payout2018-09-06 15:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation2,892,229,986
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,808,960
net_rshares0
@luckysteem · (edited)
Hi, im here 3 weeks on steemit and i just want to say thank you for making this world interesting, better and developing into something new and revolutionary. Maybe you are not even aware of it and maybe it seems not a big deal to you but this a beginning of something amazing.
properties (22)
authorluckysteem
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t225515006z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 22:55:09
last_update2017-07-12 23:23:06
depth1
children0
last_payout2017-07-19 22:55:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length277
author_reputation889,983,479,001
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,278,259
net_rshares0
@lukestokes ·
$1.71
I spent some time learning Wren. Now I'll spend some time learning C++. I've done things in many different languages, but never C or C++. I'm excited for the journey, but also a bit overwhelmed thinking how far I have to go to get to where I'd someday like to be. Thank you for these examples.

Can you give us an idea when a testnet will be up so noobie muggles like myself can start playing around with this stuff?
👍  , , , , , , , , ,
properties (23)
authorlukestokes
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t020852874z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 02:08:51
last_update2017-07-13 02:08:51
depth1
children2
last_payout2017-07-20 02:08:51
cashout_time1969-12-31 23:59:59
total_payout_value1.289 HBD
curator_payout_value0.424 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length416
author_reputation556,640,380,599,219
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,291,859
net_rshares435,302,275,532
author_curate_reward""
vote details (10)
@dwinblood ·
C was my favorite for a long time, then I moved onto C++ but it still allowed me to do C so I didn't really benefit from C++ as much as I should have since it didn't FORCE me to learn the new things.    More recently I've mostly been using C# which is similar in many ways but alien in others.  :)
properties (22)
authordwinblood
permlinkre-lukestokes-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t180601232z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 18:06:00
last_update2017-07-14 18:06:00
depth2
children1
last_payout2017-07-21 18:06:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length297
author_reputation383,232,067,634,988
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,484,420
net_rshares0
@writewords · (edited)
$0.05
Hey you guys both inspired me. I'm reading your comments thinking, "Damn, I haven't tried programming anything in C or C++ since the early 2000s." I want to be able to make apps and develop ideas in modern ways. I've just been telling myself it's too hard or I'm never going to master it or ever even get close. That's limiting talk and I'm thinking now that I can make programs and learn to code if that's what I really want.
👍  
properties (23)
authorwritewords
permlinkre-dwinblood-re-lukestokes-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170726t114930912z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-26 11:49:30
last_update2017-07-26 11:49:48
depth3
children0
last_payout2017-08-02 11:49:30
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length426
author_reputation1,591,547,265,919
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,783,892
net_rshares15,079,895,045
author_curate_reward""
vote details (1)
@makrotheblack ·
4 weeks on steemit and i'm amazed about the things you've created and what your vision for the future is.What a man really special,wish you the best of luck for your future projects.
properties (22)
authormakrotheblack
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t234005980z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 23:40:03
last_update2017-07-12 23:40:03
depth1
children0
last_payout2017-07-19 23:40:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation319,818,388,314
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,281,376
net_rshares0
@mikeill ·
I don't even know C++. Just higher level languages so far  (python, php, javascript). But I'm really glad this is out there. Thank you.
properties (22)
authormikeill
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t035605823z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 03:56:06
last_update2017-07-13 03:56:06
depth1
children0
last_payout2017-07-20 03:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation411,190,612,143
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,299,250
net_rshares0
@morebeans ·
Very well written article. C for life. But got a question, how are transactions related to memory addresses? and how does the WebAssembly framework knows/can relate a transaction to a particular memory address?
properties (22)
authormorebeans
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t032410869z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 03:24:12
last_update2017-07-15 03:24:12
depth1
children0
last_payout2017-07-22 03:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation544,240,301
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,527,039
net_rshares0
@muhammadikbal ·
A very useful post .., thank you @dan have given me the science, hopefully your post can be useful for stemian all over the world
👍  
properties (23)
authormuhammadikbal
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t152019270z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-14 15:20:21
last_update2017-07-14 15:20:21
depth1
children0
last_payout2017-07-21 15:20:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation518,613,529,116
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,467,401
net_rshares139,089,923
author_curate_reward""
vote details (1)
@mummedia · (edited)
I Am Getting Into EOS today ... So it sounds like EOS would make Stratis obsolete because EOS does the same but more (???) Yet, nobody really knows why things actually take off, but we are taught to be know it alls... I think that now is a great time to diversify your crypto holdings ... Getting Steem, ANS, Sia, IOTA, BAT, etc ...  I just joined Steemit.com, I plan on posting a lot of Fun Art Content That I Make as well as Creative Crypto Content : Lets follow each other and enjoy this exciting ride (!!!) ~ mum
properties (22)
authormummedia
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t003123029z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 00:31:24
last_update2017-07-13 00:33:18
depth1
children1
last_payout2017-07-20 00:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length516
author_reputation67,601,556,791
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,285,058
net_rshares0
@leprechaun ·
Many of theese altcoins have not proven themselves.
👍  ,
properties (23)
authorleprechaun
permlinkre-mummedia-2017712t215125425z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-13 00:51:27
last_update2017-07-13 00:51:27
depth2
children0
last_payout2017-07-20 00:51:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation43,025,812,810,398
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,286,460
net_rshares0
author_curate_reward""
vote details (2)
@munazir ·
thank you for sharing
properties (22)
authormunazir
permlinkre-dan-2017715t12851725z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-14 18:29:06
last_update2017-07-14 18:29:06
depth1
children0
last_payout2017-07-21 18:29:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation1,530,585,952,548
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,486,798
net_rshares0
@murdock8 ·
How would you regulate the contract between each user? Is there any legal foundation?
👍  
properties (23)
authormurdock8
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t171511592z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 17:15:15
last_update2017-07-14 17:15:15
depth1
children0
last_payout2017-07-21 17:15:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation95,836,292
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,479,316
net_rshares1,114,246,404
author_curate_reward""
vote details (1)
@nang-009 ·
That's great. I'll test it.
properties (22)
authornang-009
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t143805809z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 14:37:33
last_update2017-07-14 14:37:33
depth1
children0
last_payout2017-07-21 14:37:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation313,889,786
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,462,838
net_rshares0
@oluwoleolaide ·
Is it gonna have an app?...an interface to communicate like Steemit?...The name seems enticing each time i see it even though am just getting familiar with cryptos....
properties (22)
authoroluwoleolaide
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t223341073z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 22:33:42
last_update2017-07-12 22:33:42
depth1
children3
last_payout2017-07-19 22:33:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation113,793,841,740,896
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,276,598
net_rshares0
@aifuture ·
EOS is a platform to run Apps on, like Facebook runs Servers that run Facebooks backend (receiving and sending data)
properties (22)
authoraifuture
permlinkre-oluwoleolaide-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t223708377z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 22:37:09
last_update2017-07-12 22:37:09
depth2
children2
last_payout2017-07-19 22:37:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation21,592,400,088
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,276,847
net_rshares0
@cryptodon1 ·
What database do you think Facebook uses?
properties (22)
authorcryptodon1
permlinkre-aifuture-re-oluwoleolaide-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t224722692z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 22:47:24
last_update2017-07-12 22:47:24
depth3
children1
last_payout2017-07-19 22:47:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation74,954,362,138
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,277,678
net_rshares0
@oniraphaeleu ·
Wonderful post. It is of great benefit. Thanks
properties (22)
authoroniraphaeleu
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170718t141339994z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-18 14:13:51
last_update2017-07-18 14:13:51
depth1
children0
last_payout2017-07-25 14:13:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation1,366,333,814,403
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,876,471
net_rshares0
@outhori5ed ·
nice post
properties (22)
authorouthori5ed
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t193608567z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 19:36:24
last_update2017-07-13 19:36:24
depth1
children0
last_payout2017-07-20 19:36:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation39,356,239,578,011
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,375,396
net_rshares0
@palme · (edited)
$0.30
As I probably wouldn't  write my own smart contracts but just use EOS (I wish it lots of success as the things I have read about it sound great) I don't mind if it is C++. Coming from a web development background and seeing the rapid adoption of JavaScript / NodeJS (Go too) for all kinds of things I think it's a bit of a pity that all those developers able to code would have a steep (ok maybe not steep but still) learning curve writing a contract using C++.

@dan Would there be the possibility to define smart contracts in ES6 and then (somehow) convert / compile them to C++?
👍  , , ,
properties (23)
authorpalme
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t232817625z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1","users":["dan"]}
created2017-07-12 23:28:18
last_update2017-07-12 23:29:30
depth1
children1
last_payout2017-07-19 23:28:18
cashout_time1969-12-31 23:59:59
total_payout_value0.230 HBD
curator_payout_value0.074 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length581
author_reputation173,581,952,095
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,280,617
net_rshares80,276,729,900
author_curate_reward""
vote details (4)
@leprechaun ·
$0.42
JavaScript doesn't have declarative syntax like in C++.  there is no all let's make this a variable an integer or this variable something else, whereas C++ does so.  C++ also has classes and operator overloading whereas Javascript does not.  

It seems to me C++ should be the soirce and JS sometimes the target.  Although sometimes reading erors related to templates can be like reading Greek.
👍  , , , , , , , , , , ,
properties (23)
authorleprechaun
permlinkre-palme-2017712t22529835z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-13 01:05:33
last_update2017-07-13 01:05:33
depth2
children0
last_payout2017-07-20 01:05:33
cashout_time1969-12-31 23:59:59
total_payout_value0.423 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length394
author_reputation43,025,812,810,398
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,287,504
net_rshares113,322,589,089
author_curate_reward""
vote details (12)
@pandher ·
hii bro plz vote me  i vote u  plzzz
👎  ,
properties (23)
authorpandher
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t125943982z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 12:59:45
last_update2017-07-14 12:59:45
depth1
children0
last_payout2017-07-21 12:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation-21,974,768,359
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,453,285
net_rshares-1,722,393,398,231
author_curate_reward""
vote details (2)
@paradise-found ·
Hi @dan,
I know you're a busy man.  I have a question, are you a fan of the NFL?
And would you be interested in making NFL football picks, just one week?
I'm writing sports for @thedailysteemit and I thought the readers would enjoy a post with your picks.  I'm attempting to recruit Steemit Celebrities for this.  Thanks for your consideration.
properties (22)
authorparadise-found
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170724t020505682z
categoryeos
json_metadata{"tags":["eos"],"users":["dan","thedailysteemit"],"app":"steemit/0.1"}
created2017-07-24 02:05:06
last_update2017-07-24 02:05:06
depth1
children0
last_payout2017-07-31 02:05:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length344
author_reputation81,653,004,863,007
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,479,696
net_rshares0
@patrickpeace · (edited)
Great post there about EOS.IO software @dan. It's shows that its really getting better and more advanced and seems to hold a great future in the currencies world
properties (22)
authorpatrickpeace
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t232907690z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-12 23:29:06
last_update2017-07-12 23:29:21
depth1
children0
last_payout2017-07-19 23:29:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation239,424,111,166
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,280,673
net_rshares0
@personalgrowth ·
Great post. Smart contracts on the up!
👍  , , ,
properties (23)
authorpersonalgrowth
permlinkre-dan-2017713t25637752z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-13 01:56:39
last_update2017-07-13 01:56:39
depth1
children0
last_payout2017-07-20 01:56:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation51,171,139,653
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,291,015
net_rshares4,225,135,145
author_curate_reward""
vote details (4)
@phyowaiaung ·
please
properties (22)
authorphyowaiaung
permlinkre-dan-2017719t813924z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-19 01:43:21
last_update2017-07-19 01:43:21
depth1
children0
last_payout2017-07-26 01:43:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation3,161,539,444,485
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,929,468
net_rshares0
@pqlenator ·
I understand not but it all sounds and looks very interesting. 
Maybe EOS will be the new Bitcoin, now that Ethereum is planing major changes that will affect mining.
properties (22)
authorpqlenator
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t175744948z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 17:57:48
last_update2017-07-15 17:57:48
depth1
children0
last_payout2017-07-22 17:57:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation6,852,849,487,588
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,593,323
net_rshares0
@practicaleric ·
EOS, the next Ethereum ?  :)
👍  , ,
properties (23)
authorpracticaleric
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t224938235z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 22:49:42
last_update2017-07-12 22:49:42
depth1
children0
last_payout2017-07-19 22:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation203,325,442,073,718
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,277,853
net_rshares1,824,444,795
author_curate_reward""
vote details (3)
@ranggaryoza ·
nice post!, one of my favorite programming languange  :)
properties (22)
authorranggaryoza
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t155957923z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 16:00:06
last_update2017-07-14 16:00:06
depth1
children0
last_payout2017-07-21 16:00:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation31,083,835
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,471,678
net_rshares0
@rashidminhas ·
Do not forget my vote
👍  
properties (23)
authorrashidminhas
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t145255642z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 14:52:57
last_update2017-07-13 14:52:57
depth1
children1
last_payout2017-07-20 14:52:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation100,647,432,171
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,348,807
net_rshares1,120,052,900
author_curate_reward""
vote details (1)
@freecat ·
Recibe el mio. Saludos
👍  
properties (23)
authorfreecat
permlinkre-rashidminhas-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t224059203z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 22:41:03
last_update2017-07-13 22:41:03
depth2
children0
last_payout2017-07-20 22:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation-11,397,234,708
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,390,398
net_rshares777,651,176
author_curate_reward""
vote details (1)
@raviraj4you ·
Good one..
properties (22)
authorraviraj4you
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170720t184843125z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-20 18:48:42
last_update2017-07-20 18:48:42
depth1
children0
last_payout2017-07-27 18:48:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation-181,820,563,375
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,108,892
net_rshares0
@rawpride ·
Thanks for the info.  This helps people understand what EOS brings to the table
properties (22)
authorrawpride
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t003310007z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 00:33:09
last_update2017-07-13 00:33:09
depth1
children0
last_payout2017-07-20 00:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation18,693,214,393,238
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,285,190
net_rshares0
@revelationquotes ·
This stuff is pretty much above my head.  I am just following numerous different Cryptos because this is the wave of the future.  I like the STEEM platform and the its possibilities.  When I get more funds, I will think about investing into EOS.
Thanks for sharing
properties (22)
authorrevelationquotes
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t122346676z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 12:23:45
last_update2017-07-13 12:23:45
depth1
children0
last_payout2017-07-20 12:23:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation74,119,741,091,678
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,334,484
net_rshares0
@riezky ·
The app is very useful and always good information and share. I am very happy with your post I am from indonesia.best regard community steemit Indonesia
properties (22)
authorriezky
permlinkre-dan-2017713t101511159z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-13 03:15:15
last_update2017-07-13 03:15:15
depth1
children0
last_payout2017-07-20 03:15:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation11,545,759,866,626
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,296,292
net_rshares0
@rizal ·
This is a great post, I as a newcomer in steemit this post should I learn more from my teacher @dan. And I will continue to follow you @and.
I'm @rizal will always be a spirit in the steemit community
properties (22)
authorrizal
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170730t192412895z
categoryeos
json_metadata{"tags":["eos"],"users":["dan","and","rizal"],"app":"steemit/0.1"}
created2017-07-30 19:24:03
last_update2017-07-30 19:24:03
depth1
children0
last_payout2017-08-06 19:24:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation370,859,303,188
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,247,747
net_rshares0
@rizalmaulana ·
Nice post
properties (22)
authorrizalmaulana
permlinkre-dan-2017714t75019740z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-14 00:50:24
last_update2017-07-14 00:50:24
depth1
children0
last_payout2017-07-21 00:50:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation462,167,530,443
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,399,518
net_rshares0
@robertgenito ·
If it weren't for templates and operator overloading, C++ would be so sad lol.
properties (22)
authorrobertgenito
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t230053880z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 23:00:54
last_update2017-07-12 23:00:54
depth1
children0
last_payout2017-07-19 23:00:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation7,257,911,690,980
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,278,711
net_rshares0
@rojassartorio ·
To  The Moon EOS!!
👍  
properties (23)
authorrojassartorio
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170722t033008977z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-22 03:30:21
last_update2017-07-22 03:30:21
depth1
children0
last_payout2017-07-29 03:30:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation6,097,205,499,412
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,263,275
net_rshares2,162,082,763
author_curate_reward""
vote details (1)
@royschuh ·
EOS's huge ICO caused a big market hype jump for them and the Buzz is over, not sure if it will rise again in my opinion. Tezos ICO same thing, now all ICO will think about 200m plus and it won't happen everytime.
👍  , , ,
properties (23)
authorroyschuh
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t001201075z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 00:12:03
last_update2017-07-13 00:12:03
depth1
children0
last_payout2017-07-20 00:12:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length213
author_reputation1,126,660,274,850
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,283,606
net_rshares4,885,167,847
author_curate_reward""
vote details (4)
@saidul941 ·
It's Great.
👍  
properties (23)
authorsaidul941
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t070502431z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 17:49:45
last_update2017-07-13 17:49:45
depth1
children0
last_payout2017-07-20 17:49:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation345,468,965
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,365,186
net_rshares87,050,982
author_curate_reward""
vote details (1)
@sanees ·
Last paragraph caught my attention, since no new or delete is called, using c++ is safe but there is nothing preventing from anyone writing contract to do so?How do you enforce?or are you saying if they use web assembly framework will some how detect it? but still it is run time only? may be this is best practice to writing "EOS contracts"
👍  
properties (23)
authorsanees
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t153759737z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 15:38:00
last_update2017-07-13 15:38:00
depth1
children0
last_payout2017-07-20 15:38:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length341
author_reputation2,019,131,877,450
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,353,337
net_rshares3,646,379,852
author_curate_reward""
vote details (1)
@shla-rafia ·
Hey dan, I just have massive success but votes are so low, please have a look,thx
👍  ,
properties (23)
authorshla-rafia
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t002346219z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 00:23:48
last_update2017-07-13 00:23:48
depth1
children0
last_payout2017-07-20 00:23:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation67,630,971,735,138
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,284,511
net_rshares1,967,348,085
author_curate_reward""
vote details (2)
@silver-saver ·
$0.03
Thanks for the review!
👍  
properties (23)
authorsilver-saver
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t005832471z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 01:00:09
last_update2017-07-13 01:00:09
depth1
children0
last_payout2017-07-20 01:00:09
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation154,308,874,450
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,287,087
net_rshares7,992,407,014
author_curate_reward""
vote details (1)
@simonfinkelstein ·
Does the IMF uses this for there SDR
properties (22)
authorsimonfinkelstein
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170716t121445089z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-16 12:14:06
last_update2017-07-16 12:14:06
depth1
children0
last_payout2017-07-23 12:14:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation23,898,628,552
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,663,323
net_rshares0
@sowapac ·
$0.03
Cool!!
👍  
properties (23)
authorsowapac
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t154840436z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 15:48:45
last_update2017-07-15 15:48:45
depth1
children0
last_payout2017-07-22 15:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation168,633,085,065
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,581,338
net_rshares6,398,652,137
author_curate_reward""
vote details (1)
@suggestionbot ·
<html><p>If you like this article then <a href="https://www.google.com/#q=site:steemit.com+currency+contract+exchange+quantity+benefits">click here to read more about the subject</a>.</p></html>
👍  
👎  , ,
properties (23)
authorsuggestionbot
permlinkre-eos-example-exchange-contract-and-benefits-of-c-20170712t223208
categoryeos
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-07-12 22:32:09
last_update2017-07-12 22:32:09
depth1
children0
last_payout2017-07-19 22:32:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length194
author_reputation15,855,888,764
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,276,503
net_rshares-2,556,690,690,837
author_curate_reward""
vote details (4)
@syahhiran ·
Great info **@dan**, thank for shared !, allow me for resteem this post

> **@syahhiran**
properties (22)
authorsyahhiran
permlinkre-dan-2017713t13321080z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-13 06:31:48
last_update2017-07-13 06:31:48
depth1
children0
last_payout2017-07-20 06:31:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation559,165,550,719
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,309,703
net_rshares0
@theguruasia ·
@dan,
First, I would like to say great post you have written here.

Second, I feel you know this language ;) C and C++ is the core of most modern programming languages. Seems you have the idea and experience about this.

Third, thanks for reminding me I was learn this language while I was at the university!

Fourth, EOS seems to be a good shot! I will do a small research and go for it!

Finally,
Thank you very much for this amazing article! I become a fan of yours and awaiting to read the next post as well.

Cheers~
properties (22)
authortheguruasia
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170717t045324774z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-17 04:53:24
last_update2017-07-17 04:53:24
depth1
children0
last_payout2017-07-24 04:53:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length521
author_reputation72,573,039,033,926
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,732,991
net_rshares0
@theofilos13 ·
$0.78
Very good "documentation", thanks @dan
👍  , , , , ,
properties (23)
authortheofilos13
permlinkre-dan-2017713t14827568z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-07-12 22:48:30
last_update2017-07-12 22:48:30
depth1
children1
last_payout2017-07-19 22:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.580 HBD
curator_payout_value0.200 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation10,190,612,711
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,277,768
net_rshares213,405,395,220
author_curate_reward""
vote details (6)
@digitalplayer ·
@dan ... hard work there!! I know something about... Thank You!!
👍  ,
properties (23)
authordigitalplayer
permlinkre-theofilos13-re-dan-2017713t14827568z-20170713t010435482z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-13 01:04:36
last_update2017-07-13 01:04:36
depth2
children0
last_payout2017-07-20 01:04:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation5,289,318,347,578
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,287,443
net_rshares1,352,245,415
author_curate_reward""
vote details (2)
@timcrypto ·
Nice post dan👍🏼 Eos is looking good
👍  , ,
properties (23)
authortimcrypto
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170712t225053011z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-12 22:50:54
last_update2017-07-12 22:50:54
depth1
children0
last_payout2017-07-19 22:50:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation68,635,880,449
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,277,943
net_rshares1,514,739,376
author_curate_reward""
vote details (3)
@tincho ·
$0.13
Hi Dan. I am interested in the EOS project, and I wanted to ask you if you would like me to translate some of your post for the Spanish-speaking community, since I do not see a post on this topic and I think that in my community most people do not know EOS.

I am not a professional translator, but I would try to do my best.
I hope you have a good Friday!
👍  ,
properties (23)
authortincho
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t112005486z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 11:20:06
last_update2017-07-14 11:20:06
depth1
children0
last_payout2017-07-21 11:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length356
author_reputation21,331,431,180,904
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,445,637
net_rshares30,454,103,301
author_curate_reward""
vote details (2)
@tomino ·
$0.39
I don't code but somehow I find these post.... calming and exciting at the same time :-)
👍  ,
properties (23)
authortomino
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t145639061z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 14:56:39
last_update2017-07-13 14:56:39
depth1
children0
last_payout2017-07-20 14:56:39
cashout_time1969-12-31 23:59:59
total_payout_value0.394 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation1,913,291,987,918
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,349,175
net_rshares96,866,366,667
author_curate_reward""
vote details (2)
@transptrader ·
$0.04
I don’t know how to code and most of this is like reading a foreign language but I’m happy with your conclusion that EOS is progressing nicely :). Thanks for the post.
👍  ,
properties (23)
authortransptrader
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t064607251z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 06:46:09
last_update2017-07-13 06:46:09
depth1
children0
last_payout2017-07-20 06:46:09
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation104,043,033,186
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,310,648
net_rshares9,300,103,364
author_curate_reward""
vote details (2)
@ttosic ·
Great read, hopefully great future is ahead of EOS.
👍  ,
properties (23)
authorttosic
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t081107904z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 08:11:09
last_update2017-07-13 08:11:09
depth1
children0
last_payout2017-07-20 08:11:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation67,283,311
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,316,067
net_rshares1,984,762,768
author_curate_reward""
vote details (2)
@vaibby ·
I was just on the beginning of learning c and after it c++ is going to be amazing i think
properties (22)
authorvaibby
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t120315771z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 12:04:45
last_update2017-07-13 12:04:45
depth1
children0
last_payout2017-07-20 12:04:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation54,226,625
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,332,734
net_rshares0
@viqral ·
That is amazing ....
Your post is impotant for people to join API....
That is the good sharing...
Thanks for sharing @dan   ....
I am @viqral will support your post.
Please upvote mine @dan 
Beucause i need your upvote mine..
Thanks @dan
properties (22)
authorviqral
permlinkre-dan-2017718t134714537z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-18 06:47:27
last_update2017-07-18 06:47:27
depth1
children0
last_payout2017-07-25 06:47:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length237
author_reputation2,343,402,284,890
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,847,125
net_rshares0
@vonnaputra ·
$0.43
Oooo really very interesting post you I am very amazed to see him congratulations on the achievement that you can not all this apart from the results of your hard work in esteem I also want as you want kah you follow me and upvote me and share my post so that your friends can Even though not as good as your post if you want me very grateful to you Congratulations, hopefully sukse always make you up to the front
👍  , , , , , , , , , , , ,
properties (23)
authorvonnaputra
permlinkre-dan-2017713t22181537z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-13 15:18:06
last_update2017-07-13 15:18:06
depth1
children0
last_payout2017-07-20 15:18:06
cashout_time1969-12-31 23:59:59
total_payout_value0.430 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length414
author_reputation1,960,901,919,466
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,351,412
net_rshares110,702,006,278
author_curate_reward""
vote details (13)
@wakeupworldnews ·
Hi, just wondering all the eos i buy over the next year , will i be able to simply transfer it into an eos wallet when it all goes live?
properties (22)
authorwakeupworldnews
permlinkre-dan-2017718t18759822z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-18 10:08:03
last_update2017-07-18 10:08:03
depth1
children0
last_payout2017-07-25 10:08:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation5,824,374,986,847
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,858,981
net_rshares0
@willian95 ·
nice post..!!
properties (22)
authorwillian95
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t001841369z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-15 00:18:42
last_update2017-07-15 00:18:42
depth1
children0
last_payout2017-07-22 00:18:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation37,985,805,583
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,515,102
net_rshares0
@world-currency ·
This is a great post, however this I don't comprehend @dan or someone please explain to me why this post is in negative?
properties (22)
authorworld-currency
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t040357076z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-13 04:03:57
last_update2017-07-13 04:03:57
depth1
children3
last_payout2017-07-20 04:03:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation29,010,794,683
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,299,835
net_rshares0
@kendewitt ·
He declines payout on a lot of his posts. Probably because he created Steem and doesn't think it would be fair to the rest of us Steemians if he took a lot of the rewards.
properties (22)
authorkendewitt
permlinkre-world-currency-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t162256292z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 16:23:00
last_update2017-07-13 16:23:00
depth2
children2
last_payout2017-07-20 16:23:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation10,021,017,921,615
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,357,166
net_rshares0
@world-currency ·
You are right @kendewitt just confirmed lol. He got a lot a dough Steempower and all. Must be the boss 4 sure.
properties (22)
authorworld-currency
permlinkre-kendewitt-re-world-currency-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170715t043639602z
categoryeos
json_metadata{"tags":["eos"],"users":["kendewitt"],"app":"steemit/0.1"}
created2017-07-15 04:36:42
last_update2017-07-15 04:36:42
depth3
children1
last_payout2017-07-22 04:36:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation29,010,794,683
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,531,475
net_rshares0
@woz.software ·
I didntt even realize there was a C++ to WebAssembly compiler, that opens a huge scope for C++ :)

Is it beta for safe for production? And does it support C++ 11?
properties (22)
authorwoz.software
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170716t045205650z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-16 04:52:09
last_update2017-07-16 04:52:09
depth1
children0
last_payout2017-07-23 04:52:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation2,321,910,395,519
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,637,427
net_rshares0
@y222 ·
Nice, but just now i receive massages in two telegram communities about EOS starts sell ethers on stocks. Fake info or no?
properties (22)
authory222
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170714t193121386z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-14 19:31:21
last_update2017-07-14 19:31:21
depth1
children0
last_payout2017-07-21 19:31:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation23,666,959
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,492,250
net_rshares0
@youngjerv ·
Thanks for sharing
properties (22)
authoryoungjerv
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t004653003z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 00:46:54
last_update2017-07-13 00:46:54
depth1
children0
last_payout2017-07-20 00:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation1,820,365,993,129
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,286,136
net_rshares0
@yoza.ossan ·
Thats one of my favourite features of EOS, the integration of built in features and other coding languages. 
This will make it alot more accesible for folks to start coding for and integrating into their products.

Well done @dan , keep it up.
👍  
properties (23)
authoryoza.ossan
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t100532847z
categoryeos
json_metadata{"tags":["eos"],"users":["dan"],"app":"steemit/0.1"}
created2017-07-13 10:05:36
last_update2017-07-13 10:05:36
depth1
children1
last_payout2017-07-20 10:05:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length243
author_reputation21,921,834,452
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,323,880
net_rshares0
author_curate_reward""
vote details (1)
@gaio · (edited)
@yoza.ossan - yes, the roadmap says: "Adding support for additional langauges to be compiled to WASM: C++, Rust, etc." ... i wonder if Python and JavaScript will be included ?
properties (22)
authorgaio
permlinkre-yozaossan-re-dan-eos-example-exchange-contract-and-benefits-of-c-20170722t093807307z
categoryeos
json_metadata{"tags":["eos"],"users":["yoza.ossan"],"app":"steemit/0.1"}
created2017-07-22 09:38:12
last_update2017-07-22 09:38:24
depth2
children0
last_payout2017-07-29 09:38:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation4,676,324,632
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,287,343
net_rshares0
@zaidaesteves ·
excellent
properties (22)
authorzaidaesteves
permlinkre-dan-eos-example-exchange-contract-and-benefits-of-c-20170713t214544905z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-07-13 21:47:51
last_update2017-07-13 21:47:51
depth1
children0
last_payout2017-07-20 21:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation83,387,594,568
root_title"EOS - Example Exchange Contract and Benefits of C++"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,386,472
net_rshares0