找到约 15 条结果

文章 一个质押提款项目合约分析

...cts/access/Ownable.sol"; import "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; import "openzeppelin-contracts/contracts/access/Ownable.sol"; import "openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; import...

问题 ERC20代币合约里怎么实现将每笔转账金额的10%作为手续费,每笔转账都将手续费换成eth发送给营销账户

ERC20代币合约里怎么实现将每笔转账金额的10%作为手续费,每笔转账都将手续费换成eth发送给营销账户 我是在ropsten上测的,代码如下 ``` // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./SafeMath.sol"; import "./Ownable.sol"; impo...

问题 为什么发送 Ether 的 TX FEE 比任何其他 erc20 硬币都便宜?这是正常现象吗?还是说可以通过某种方式避免?

问题:基于ether主网发行ERC20 token,转账过程中发现gas高于ether本身? 疑问一:这种情况正常吗?如果不正常怎么解决? 疑问二:为什么ERC token gas会高于ether?高出部分主要用在什么方面了?

文章 DeFi 开发者:如何调用NEST预言机价格数据

...iceInfo.ethAmount = priceInfo.ethAmount.add(ethAmount); priceInfo.erc20Amount = priceInfo.erc20Amount.add(tokenAmount); if (endBlock != tokenInfo.latestOffer) { // If different block offer priceInfo.frontBlock = tokenInfo.latestOffer; tokenInf...

文章 处理 ERC20 转账容易忽略的问题(一)

> 看起来很简单的 ERC20 转账,处理不好就有可能导致不可估量的损失 因为每天能用来写东西的时间比较有限,我准备分三个小文去讲,分别讲 转入、转出、记账 今天讲 ERC20 token 的转入处理 ## 0x01 常见的转入写法 看下面的...

文章 NEST预言机-获取链上价格

...iceInfo.ethAmount = priceInfo.ethAmount.add(ethAmount); priceInfo.erc20Amount = priceInfo.erc20Amount.add(tokenAmount); if (endBlock != tokenInfo.latestOffer) { // If different block offer priceInfo.frontBlock = tokenInfo.latestOffer; tokenInf...

问题 hardhat solidity不同版本,不能正常编译

...t use a different and incompatible version of Solidity: * @soliditylabs/erc20-permit/contracts/ERC20Permit.sol (^0.7.0) imports @openzeppelin/contracts/token/ERC20/ERC20.sol (^0.8.0) and @openzeppelin/contracts/utils/Counters.sol (^0.8.0) These files depend on other files that use a different ...

文章 ERC20 Snapshot解决双重投票问题

...返还闪贷。 领取空投也存在类似的问题。人们可以使用 ERC20 代币领取空投,然后将代币转移到另一个地址,然后再次领取空投。 从根本上来说,ERC20 快照提供了一种机制来防御用户在同一交易中转移代币和重复使用代币效用...

文章 使用Ink!开发Substrate ERC20智能合约

# 使用Ink!开发Substrate ERC20智能合约 *jasonruan 2020.07.14* ## 1 环境搭建 ### 1.1 安装Substrate节点 ```bash $ git clone git@github.com:paritytech/substrate.git $ cd substrate (master)$ git checkout -b v2.0.0-rc4 v2.0.0-rc4 切换到一个新分支 'v2.0.0-rc4' (v2.0...

文章 离线授权 NFT EIP-4494:ERC721 -Permit

> * 原文链接:https://soliditydeveloper.com/erc721-permit > * 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > * 译者:[翻译小组](https://learnblockchain.cn/people/412) > 校对:[Tiny 熊](https://learnblockchain.cn/people/15) > * 本文永久链接:[l...

问题 erc20的transfer方法中能判断这笔交易是买入卖出?还是uniswap中的添加或移除流动性?

uniswap中买入卖出代币和添加移除流动性都是transfer一定数量的代币,那在erc20合约中是否能判断出来是那种类型呢?谢谢

文章 Solidity中的继承

...化 `school`。 ## 一个常用的业务场景 我们肯定都写过 ERC20 Token,使用 openzeppelin 库去实现 ``` // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract Token is ERC20 { constructor(strin...

文章 Nightfall的系统结构、铸币实现及以太坊上通证的转移实现

...fall 是一种零知识证明的实现, 它使用 zk-SNARKS 让同质化[ERC20](https://learnblockchain.cn/2018/01/12/create_token/)和[非同质化的通证ERC721](https://learnblockchain.cn/2018/03/23/token-erc721/)系列的通证进行隐私化转移,使得交易能够完成但是又能足够...

问题 从代币合约里面转出额度提示不足,实际是有这么多的

...elin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; pragma solidity >=0.6.0; contract uu is Ownable, ERC20 { using SafeMath for uint256; using SafeERC20 for IERC20; construc...

文章 解密零知识证明(二) - Nightfall的系统结构、铸币实现及以太坊上通证的转移实现

...ightfall是一种零知识证明的实现, 它使用zk-SNARKS让同质化ERC20和非同质化的通证ERC721系列的通证进行隐私化转移,使得交易能够完成但是又能足够的匿名。本文主要是通过对架构设计、承兑型资产铸造、转移和销毁这几个层面进...