...butes: [Array],
description: "CoinStats GLXY is for the starry-eyed and galaxy-brained. It's for those whose spaceship has landed on CoinStats planet, who appreciate the mysterious glow the cosmic entities on our orbit give off. Enjoy the kitsch!",
image: 'ipfs://QmVaTJSCgGFyfcd4hsaTN2...
...链下监听到这次交易的数据
```
/**
* @dev Mints `tokenId` and transfers it to `to`.
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "...
...
for o := range objects {
// Using the given key, max number (F) and object bytes (o),
// convert the object to a number between 0 and F.
v := convertToNumber(b, F, key)
numbers = append(numbers, v)
}
// 给 numbers 列表排序
sort.Slice(numbers, func(i,...
...es[from], transferValue);
// Allow users to see their balances, and the contract to update it
TFHE.allow(_balances[to], to);
TFHE.allow(_balances[from], from);
TFHE.allowThis(_balances[to]);
TFHE.allowThis(_balances[from]);
return true;
...