You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?intmain(void) {
eth::ABIEncoderabi;
abi.encodeUint16(0xffac); // or abi.decodeUint16 on decode? and it returns the decoded element?
std::cout << abi << std::endl; // ABIEncoder supports streams?return0;
}
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: