Solidity的ABI编码函数详解:encode、encodePacked、encodeWithSignature、encodeWithSelector
编码函数: abi.encode abi.encodePacked abi.encodeWithSignature abi.encodeWithSelector 解码函数: abi.decode,用于解码被abi.encode的数据 一、测试合约 为了测试这几个函数的功能,我们写了这样的测试合约: // SPDX-License-Identifier: UNLICENSED pragma soli…