-
Notifications
You must be signed in to change notification settings - Fork 16
Created two cmd line utilities for converting between hex and json #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
I think something more like EOSIO/abieos#60 where the abi is provided as an abi file would be better. |
Good example, I can switch to a file to ABI, and I move the executables to tools directory. Ok to use c++ to read the file? Specifically using |
|
I think same location of executes as |
|
fwiw a small, simple, but inefficient way I've used to read in a small file to a string is something like std::string filename = "foo.file";
std::ifstream ifs(filename);
std::string string_of_file_contents((std::istreambuf_iterator<char>(ifs)), std::istreambuf_iterator<char>());(inefficiency doesn't really matter for simple stuff like this) |
Got it, I will C++'ify the code. Thanks for the simple approach to reading a small file. I'll take it. |
- fork way out of date updating to match source of truth
Created two command line programs
Used this for generating test data for eosjs