Open
Description
I think it would be cool if we had cpp wrappers for our C functions. Let's say we want to encode some ABI elements:
#include <ethc/ethcxx.h> // maybe just ethc.hh?
int main(void) {
eth::ABIEncoder abi;
abi.encodeUint16(0xffac); // or abi.decodeUint16 on decode? and it returns the decoded element?
std::cout << abi << std::endl; // ABIEncoder supports streams?
return 0;
}