Solidity abi.encode随记

如果我想用参数的形式告诉智能合约你应该调用哪个函数,应该怎么写?

用encodePacked紧打包 test() 4字节8位,方法:
abi.encodePacked(bytes4(keccak256(bytes(func)))) 输入string类型的func

用encodePacked紧打包 test(uint) 4+32字节,8+64位,方法:
abi.encodePacked(bytes4(keccak256(bytes(func))),uint(555));

用encode不紧打包test() 32字节64位 方法:
abi.encode(bytes4(keccak256(bytes(func)))) 输入string类型的func

用encode不紧打包test(uint) 32+32字节64+64位 方法:
abi.encode(bytes4(keccak256(bytes(func)),uint(555))) 输入string类型的func

你可能感兴趣的:(智能合约,区块链,以太坊)