我正在使用以下函数将字节转换为 uint:
function bytesToUint(bytes b) public pure returns (uint){
uint number;
for(uint i=0;i<b.length;i++){
number = number + uint(b[b.length-1-i])*(10**i);
}
return number;
}
由于不再支持显式 byte1 到 uint 的转换,我找到了以下替代方法:
function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) {
require(_bytes.length >= (_start + 32), "Read out of bounds");
uint256 tempUint;
assembly {
tempUint := mload(add(add(_bytes, 0x20), _start))
}
return tempUint;
}
字节是 ERC20 代币 ApproveAndCall 函数中的输入
function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) {
allowed[msg.sender][spender] = tokens;
emit Approval(msg.sender, spender, tokens);
ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data);
return true;
}
它被发送到我的智能合约的receiveApproval。
function receiveApproval(address _from, uint _token, address _tokenContract, bytes memory _data) public {
if(!ERC20Interface(_tokenContract).transferFrom(_from, address(this), _token)) {
revert();
}
_0xChangeLib.place_sell_order(exchange, _from, _tokenContract, _token, _0xChangeLib.toUint256(_data, 0));
}
有人能解释一下这个新的 BytesToUint256 是如何工作的吗?我无法理解汇编代码以及如何使用这个函数。我不明白 uint256 _start 参数。我也不确定是否可以使用与输入相同的格式。作为参数,我将 wei 数量转换为字节,例如 100 wei = 0x100,使用 javascript 中的一个简单函数,并使用 Web3.js 发送到令牌地址。
我想在智能合约的 ReceiveApproval 函数中调用 BytesToUint 函数来进一步处理数据。
非常感谢您的帮助!