- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一个功能的帮助,一旦他的内容(Ipfs-Hash,见下面的程序)达到 n 个喜欢(假设每 100 个喜欢),就用 erc777-token 奖励用户,即每当 ' netLike' 计数器达到 100,它会自动向相应用户的地址类型转换一个 token 。
并且因为还有一个不喜欢的功能,用户不应该在每次 likeCounter 达到 100 时都获得 token 奖励,(例如 - 如果用户第一次达到第 100 个喜欢,它会获得一个 erc token 奖励,并且一旦达到那个里程碑,为了获得第二个 token ,它必须达到 200 个赞的里程碑,同样,每 100 的倍数只能“一次性”生成一个 token )
我为此添加了随机数,但无法真正弄清楚确切的逻辑!! (brainfog😊)逻辑和 _mint() fn 在 like 函数内。
谢谢!!
Content[] public contents;
// A mapping of Content Hashes to their respective Owners
mapping(bytes32 => address) public contentHashToAuthor;
//Contains all the indices of content uploaded by the author
mapping(address => uint256[]) public authorToContentIndices;
//A mapping of contentHash to contentIndex
mapping(bytes32 => uint256) contentIndex;
//the struct that contains the content-Info
struct Content{
bytes32 hash;
string[] tags;
address author;
uint256 likes;
uint256 dislikes;
int256 netLikes;
uint256 nonce;
uint64 timeStamp;
}
function addContent(bytes32[] memory _hash, string[][] memory _tags) public {
for(uint256 i = 0; i < _hash.length; i++ ){
if(contentHashToAuthor[_hash[i]] == 0) {
Content memory _content = new Content({
hash: _hash[i],
tags: _tags[i][],
author: msg.sender
like: 0,
dislikes: 0,
netLikes: 0,
nonce: 0,
mapping(address => bool) usersLiked;
mapping(address => bool) usersDisliked;
timeStamp: uint64(now)
});
uint256 contentIndex = contents.push(_content) - 1;
authorToContentIndices[msg.sender].push(contentIndex);
contentHashToAuthor[_hash[i]] = msg.sender;
contentIndices[_hash[i]] = contentIndex;
} else {
revert("Content already Exist!")
}
}
}
function like(bytes32 _hash) public {
uint256 cId = contentIndex[_hash];
Content storage c = contents[cId];
if(c.usersLiked[msg.sender] != true){
c.usersLiked[msg.sender] = true;
if(c.usersDisliked[msg.sender] == true){
c.usersDisliked[msg.sender] == false;
c.dislikes--;
}
c.likes++;
c.netLikes++;
//logic for rewarding ERC777 for every 100th netLike.
//todo
if(c.netLikes == 100){
//mint function to hit with every 100th netLike
_mint(c.author, 1, "", "");
}
} else {
revert("Already liked!")
}
}
function dislike(bytes32 _hash) public {
uint256 cId = contentIndex[_hash];
Content storage c = contents[cId];
if(c.usersDisliked[msg.sender] != true){
c.usersDisliked[msg.sender] = true;
if(c.usersLiked == true){
c.usersLiked == false;
c.likes--;
c.netLikes--;
}
c.dislikes++;
c.netLikes--;
} else {
revert("Already disliked!")
}
}
最佳答案
您可以将奖励
的计数器添加到struct Content
。
struct Content{
// ... rest of your code
uint8 rewards; // Max value of uint8 is 255, which represents 25.5k netLikes. If that's not sufficient, use uint16.
}
if(c.netLikes % 100 == 0 && c.netLikes / 100 == c.rewards + 1){
//mint function to hit with every 100th netLike
_mint(c.author, 1, "", "")
c.rewards++;
}
您的原始代码 if(c.netLikes == 100)
仅适用于第一个奖励(第 100 个 netLike)。
更新后的代码:
c.netLikes % 100 == 0
检查 netLikes
是否可以被 100 整除c.netLikes/100 == c.rewards + 1
验证尚未为这 100 个给予奖励。值示例:
netLikes
99,likes
99,dislikes
0,rewards
0,一个新的喜欢:
likes
变为 100,netLikes
变为 100c.netLikes % 100 == 0
=> 100 % 100 == 0
=> truec.netLikes/100 == c.rewards + 1
=> 100/100 == 0 + 1
=> true_mint()
被调用,rewards
变为 1netLikes
100,likes
100,dislikes
0,rewards
1,一个新的不喜欢:
dislikes
变为 1,netLikes
变为 99netLikes
99,likes
100,dislikes
1,rewards
1,一个新的赞:
likes
变成 101,netLikes
变成 100c.netLikes % 100 == 0
=> 100 % 100 == 0
=> truec.netLikes/100 == c.rewards + 1
=> 100/100 == 1 + 1
=> false关于solidity - 用每第 n 个类似的数字类型转换 ERC token 的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67031948/
我是 solidity 和 erc20 的新手,所以我阅读了关于 openzeppelin 的 ERC20 描述。并找到这个我不清楚的功能。 approve(spender, amount) 允许sp
我正在使用下面的 elisp 代码来修改来自 ERC 的传入消息 (defun my-modify (msg) (replace-regexp-in-string "abc" "xyz" msg)
抽象账户是什么 抽象账户(也有叫合约钱包)是 EIP-4337 提案提出的一个标准。简单来说就是通过智能合约来实现一个“账户(account)”,在合约中自行实现签名验证的逻辑。这样,就使得该
有没有办法让 ERC 突出显示与某个正则表达式匹配的所有行?就上下文而言,我正在使用 ERC 连接到 bitlbee 服务器,并希望当我发出“blist”命令时,在线的 friend 以绿色突出显示,
有人能告诉我从以太坊区 block 链获取 ERC-20 代币信息(小数位数、名称和符号)的正确方法吗? 我认为可以通过 ABI 构造(如果用户 web3js 库)调用适当的函数 decimals()
我对 Web3 开发确实很陌生,想知道是否有一种方法可以从智能合约中找到的代币地址获取有关代币的更多信息(即我有一个代币地址,但不知道是什么类型的代币)直到我在 etherscan 上查找交易哈希)。
我对 Web3 开发确实很陌生,想知道是否有一种方法可以从智能合约中找到的代币地址获取有关代币的更多信息(即我有一个代币地址,但不知道是什么类型的代币)直到我在 etherscan 上查找交易哈希)。
Emacs erc 保持重新居中。因此很难跟上小缓冲区中的对话。 我尝试了以下方法,但似乎都不起作用... (erc-scrolltobottom-mode) (require 'erc-goodie
我正在开发一个智能合约 (SC) 和一个前端 Dapp,用于销售一些 NFT ERC-721 代币。当用户/地址购买其中一个 NFT 代币时,该代币将由 SC 为他的利益类型转换,而我的 Dapp 将
我有一份 ERC721 合约,我有一个问题,我正在尝试以另一种货币设置价格,例如 UNI 或 SUSHI但问题是我不知道如何更改它,我对契约(Contract)了解不多,这是代码。 我想知道是否有可能
我有一份来自 Hash Lip 的 github 的智能合约,据我所知应该一次类型转换 1 个,但每次都类型转换 2 个。代码如下: 设置代码: // SPDX-License-Identifier:
如果有人为 eth 出售或购买我们的代币(例如,我的意思是 uniswap),有没有办法检查 erc-20 代币的 transfer() 方向? 最佳答案 Uniswap 交易是掉期,而不是买卖。它可
我需要一个功能的帮助,一旦他的内容(Ipfs-Hash,见下面的程序)达到 n 个喜欢(假设每 100 个喜欢),就用 erc777-token 奖励用户,即每当 ' netLike' 计数器达到 1
The ERC Manual显示加载身份验证信息的代码: (加载“~/.emacs.d/.erc-auth”) 但没有显示身份验证信息的样子。我希望有一个示例文件。 最佳答案 它没有任何特定的格式。它
我最近一直在尝试学习有关智能合约的知识,但是当我试图了解代币转移的工作原理时,我遇到了这个问题。 ||执行恢复:ERC20:从零地址转账|| (ropsten 网络) 代码: import (
我正在寻找一种方法来获取 token 的买卖税,并检查它是否可以在购买后出售。 为此,这是我想到的方法: 1-在 DEX 路由器合约上模拟购买交易 2-在 DEX 路由器合约上模拟卖出交易 3-如果上
我正在尝试对我现有的 Rails 应用程序进行 docker 化。我使用 credentials.yml 已经有一段时间了。我的 credentials.yml 文件看起来像这样: productio
我是一名优秀的程序员,十分优秀!