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
The templates to add a contract and update a contract assume the code parameter is hex-encoded.
code
Hex-encoding and hex-decoding is inefficient and unnecessary.
Replace the use of .decodeHex() with .utf8.
.decodeHex()
.utf8
This is a breaking change: Users of the templates need to be updated to pass the code as-is, without hex-encoding it.
No response
The text was updated successfully, but these errors were encountered:
turbolent
Successfully merging a pull request may close this issue.
Issue to be solved
The templates to add a contract and update a contract assume the
code
parameter is hex-encoded.Hex-encoding and hex-decoding is inefficient and unnecessary.
Suggest A Solution
Replace the use of
.decodeHex()
with.utf8
.This is a breaking change: Users of the templates need to be updated to pass the code as-is, without hex-encoding it.
What are you currently working on that this is blocking?
No response
The text was updated successfully, but these errors were encountered: