We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50a63a commit 33d4895Copy full SHA for 33d4895
src/StdJson.sol
@@ -144,6 +144,17 @@ library stdJson {
144
return vm.serializeBytes32(jsonKey, key, value);
145
}
146
147
+ function serialize(string memory jsonKey, string memory key, bytes memory value) internal returns (string memory) {
148
+ return vm.serializeBytes(jsonKey, key, value);
149
+ }
150
+
151
+ function serialize(string memory jsonKey, string memory key, bytes[] memory value)
152
+ internal
153
+ returns (string memory)
154
+ {
155
156
157
158
function serialize(string memory jsonKey, string memory key, string memory value)
159
internal
160
returns (string memory)
0 commit comments