You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
I want to add raw bytes of arbitrary length to bytecode of huff contract:
I.e. store these 0x0000000000000000000000000000000000000000000000000000000000000000aabbccdd
bytes of length 36. Currently there are 2 ways:
compile huff contract and manually append these bytes to the end. Though testing with that approach is a complete nightmare
Divide the bytes into 32byte words and store as constants, though huff will add push32 opcode infront of which word and bytes won't be continuous.
I want to add raw bytes of arbitrary length to bytecode of huff contract:
I.e. store these 0x0000000000000000000000000000000000000000000000000000000000000000aabbccdd
bytes of length 36. Currently there are 2 ways:
Would be great to have something like
which will append these bytes to the end of contract bytecode
The text was updated successfully, but these errors were encountered: