#pragma once #include #include "foreign.h" namespace eth { typedef uint8_t byte; typedef foreign Bytes; typedef foreign ConstBytes; template std::string toString(_T const& _t) { std::ostringstream o; o << _t; return o.str(); } }