找到约 13 条结果

文章 每周以太坊进展 2024/11/30

...//github.com/ethereum/EIPs/pull/9049/files):交易 gas 限制上限 * ERC(应用层): * [ERC7826](https://github.com/ethereum/ERCs/pull/731/files):量子优越性赏金 * [ERC7827](https://github.com/ethereum/ERCs/pull/734/files):具有价值版本控制的 JSON 合约 ...

文章 每周以太坊进展 2023/4/29

...thub.com/ethereum/EIPs/pull/6953/files):网络升级激活触发器 * ERC: * [ERC6927](https://github.com/ethereum/EIPs/pull/6927/files) : NFT融合协议 * [ERC6932](https://github.com/ethereum/EIPs/pull/6933/files):基于订阅的代币 * [ERC6944](https://github.com/...

文章 React Native DApp 开发全栈实战·从 0 到 1 系列(永续合约交易-合约部分)

...译、可部署、可清算的迷你永续合约: > 1. 先发行一枚 ERC-20 保证金代币(USDC); > 1. 再部署一个可手动更新的 Chainlink Mock 喂价器; > 1. 最后上线一个 20 倍杠杆、5 % 维持保证金的永续交易核心,支持多空、盈亏结算、强制...

文章 2023 年十大区块链黑客技术:社区提名

...ols-technical-postmortem-53db4b642492) - [A thought experiment about empty ERC-4626 vaults that ended up making this white hat $33,500](https://twitter.com/kankodu/status/1685320718870032384) - [A unique $100,000 bug in SiloFinance](https://twitter.com/kankodu/status/1669833829203476480) 和 [Silo F...

文章 快速实现一个荷兰拍卖(Dutch Auction)合约

...port {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "hardhat/console.sol"; contract DutchAuction is Ownable, ERC721 { uint256 public constant COLLECTION_SIZE = 10000; // NFT总数 uint256 public...

文章 每周以太坊 2024/02/03

...thereum/EIPs/pull/8161/files):在存储非空的情况下回退创建 - ERCs(应用层): - [ERC7604](https://github.com/ethereum/ERCs/pull/223/files):ERC1155 permit 式批准(通过离线签名) - [ERC7606](https://github.com/ethereum/ERCs/pull/229/files):交易风险监控 - ...

文章 智能合约开发的最佳实践 - ImmuneBytes

...n:** OpenZeppelin 提供了一套经过实战考验的库和合约,如 ERC-20 和 ERC-721 的实现。利用这些框架可以减少开发时间并提高安全性。 - **ERC 标准:** 遵循以太坊征求意见稿 (ERC) 标准可确保兼容性和互操作性。常见标准包括用于同质...

文章 高级 Solidity 教程

...1 高级代币主题,Bonding Curves,Staking算法 主题:[ERC 1363](https://learnblockchain.cn/article/8549),ERC 777,[Synthetix stochastic staking算法](https://learnblockchain.cn/article/11265),[ERC721 NFTs](https://learnblockchain.cn/article/11249),舍入错误,抢跑漏...

文章 每周以太坊进展2022/3/19

...reum/EIPs/blob/f400ed4823ff547e789111adbdd90c83f4aedce5/EIPS/eip-4906.md): ERC721/ERC1155 元数据更新扩展 * [EIP4907](https://github.com/ethereum/EIPs/blob/692afba71b6b2cee2e48c6c729597c2f025da732/EIPS/eip-4907.md): ERC721 用户和有效期扩展 * [EIP4910](https://github.com/ethereum/EIPs...

文章 每周以太坊进展 2023/08/05

...ethereum/EIPs/pull/7441/files): 将区块提议者选举升级为 Whisk - ERCs (应用层): - [ERC7425](https://github.com/ethereum/EIPs/pull/7427/files): 代币化储备 - [ERC7432](https://github.com/ethereum/EIPs/pull/7432/files): NFT 角色 - [ERC7439](https://github.com/ethereum/EIPs/...

文章 使用 Infura 和 Avalanche C-Chain 部署 ERC721 智能合约和铸造会计 NFT

...(dapps)。 本教程展示了开发者如何使用Avalanche[部署一个ERC721智能合约,然后铸造一系列NFT](https://learnblockchain.cn/article/2304),并与代表复式会计交易的元数据链接。 在一个用例中,一家公司希望为其某一年的财务业绩创建一...

文章 动态NFT的构建、部署和出售

...your-own-dynamic-nft/) [NFT](https://blog.chain.link/random-numbers-nft-erc721/)是只有在区块链领域里才存在的工具,有着广泛的应用和机遇。ERC721代币标准可以构建收藏品、独立代币、票据、游戏等多种应用,对于那些想要参与构建的开发者...

文章 Token 自动售卖机 | Web3.0 dApp 开发(七)

...并不需要我们实现在 YourToken 合约里面,因为它继承于 `ERC20.sol`。(以下的代码并不需要复制到 YourToken 合约) * `_approve` 这个内部函数是真正的逻辑主体部分。当用户调用这个方法时,`spender` 是 Vendor 合约的地址。 * 核心部...