parseBytes
Signature
function parseBytes(string calldata stringifiedValue) external pure returns (bytes memory parsedValue);
Description
Parses the value of string
into bytes
Examples
string memory bytesAsString = "0x00000000000000000000000000000000";
bytes memory stringToBytes = vm.parseBytes(bytesAsString); // 0x00000000000000000000000000000000