Replies: 2 comments 5 replies
-
This is my last blocker for migrating from |
Beta Was this translation helpful? Give feedback.
0 replies
-
They should support arrays. Can you give an example of the code you are using? Keep in mind the Solidity packing algorithms do not support packing any type that requires the v2 coder in Solidity, unless the have changed that restriction. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The Solidity hashing algorithms (
solidityPack
,solidityKeccak256
, andsoliditySha256
) do not support array types in v5. Yet Solidity'sabi.encodePacked()
does support array types. It was my understanding that these methods were meant to imitateabi.encodePacked()
, so they should support array types as well.Beta Was this translation helpful? Give feedback.
All reactions