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