We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Code sample:
@Abi public class MyArgs { private List<Argument> arguments; public MyArgs(List<Argument> arguments) { this.arguments = arguments; } @CollectionCompress public List<Argument> getArgument() { return arguments; } } @Abi public class Argument { private String data; @NameCompress public String getData() { return data; } } String hex = abiBinaryGenTransferWriter .squishMyArgs(args) .toHex();
If I pass that hex data to abi_bin_to_json I get json with empty list of arguments.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Code sample:
If I pass that hex data to abi_bin_to_json I get json with empty list of arguments.
The text was updated successfully, but these errors were encountered: