Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
contract ContractTest {
bytes public byteParam;
function setBytes(bytes memory param) public {
byteParam = param;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment