How can I hard code bytes
in solidity for a static call?
Ive tried:
bytes memory data = "0xfeaf968c";
bytes memory data = \xfeaf968c";
It works when I manually enter it as an input parameter, while it fails for some reason when I externally call it when its hard coded in this format.