chapter18-code-4

PHOTO EMBED

Thu Mar 30 2023 11:28:31 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

contract ExampleContract{
	function getEncoding(uint x) public pure returns (bytes memory) {
		return abi.encodeWithSignature("takeOneArg()", x);
	}
	
	function takeOneArg(uint256 x) public pure returns (bytes memory) {
		return msg.data;
	}
}
content_copyCOPY