找到约 12 条结果

文章 外部确认哈希率

...设 Bits 为字节数组 *{ E,Q1,Q2,Q3 }*。设 M 为整数值 *(Q1 =169) and (tail.length= 64) return (true,false) if (rskTagPosition !=lastTag) return (true,false) if (tail.length - rskTagPosition > 169) return (true,false) coinbaseLength = tail.length + byteCount; if (coinbaseLength 128) ret...

文章 以太坊101:账户,交易和消息

...simply use Etherscan toview your address, the transactions you’resending and receiving at that address, as well as the externally owned accountsand contracts that received your test ether. Many decentralized apps referenceEtherscan to obtain a quick glimpse of your activity on the blockchain. Take...

文章 以太坊上的百万用户去中心化应用:应用特定侧链简介

...可以在 [Vitalik 的博客](http://vitalik.ca/general/2017/03/14/forks_and_markets.html) 上找到。 ![](https://img.learnblockchain.cn/2025/03/02/1-lWlTVi8VXEgNOabyENYnw.png) 分叉变体维恩图,取自 [vitalik.ca/general/2017/03/14/forks_and_markets.html](http://vitalik.ca/general/2017/03...

问题 在zksync测试网验证报错:Deployed bytecode is not equal to generated one from given source

... require(_addresses.length == _amounts.length, "Lengths of Addresses and Amounts NOT EQUAL"); IERC20 token = IERC20(_token); uint _amountSum = getSum(_amounts); require(token.allowance(msg.sender, address(this)) > _amountSum, "Need Approve ERC20 token"); ...

文章 EIP-7702 指南:构建和测试智能账户

...指南中,我们将使用 `signDelegation`、`attachDelegation` 和 `signAndAttachDelegation` cheatcodes 来测试 EIP‑7702 功能。有关更多信息,请查看 [Foundry Cheatcodes 文档](https://book.getfoundry.sh/cheatcodes/sign-delegation)。 ### 项目概述 在本项目中,我...

文章 🚀 使用 Hardhat Ignition 自动化合约部署 🚀

...发布于 [BuildBear Tutorials](https://www.buildbear.io/resources/guides-and-tutorials/Hardhat_Ignition)。 Hardhat Ignition:智能合约部署的游戏规则改变者。 **它是什么?** 这是一个声明式系统,简化了部署过程,提供端到端的部署体验,让开发人...

文章 每周以太坊进展 2020/10/04

...bo Geth API,快速查询任意一个区块处的 [ETH 供应量](http://mandrigin.ru/eth-supply.html) * 最新的[核心开发者会议](https://youtu.be/v5Q5WPdN1jk?t=71)。Tim Beiko 的[备忘录](https://twitter.com/TimBeiko/status/1312021038130106370) * [交易处理的相关 EIP 简介](htt...

文章 Xatu 开源数据集

... ## 可用数据 | 数据集名称 | 模式 | 描述 | 前缀 | EthPandaOps Clickhouse|公共 Parquet 文件 | |--------------|--------|-------------|--------|---|---| | **信标 API 事件流** | [模式](./schema/beacon_api_.md) | 从信标 API 事件流派生的事件 | beacon_api_ | ✅...

文章 garaga+noir+starknet starter项目实战

...o-knowledge-proof/) * [Making Blockchain Comply with GDPR: The Challenges and Fixes](https://www.altoros.com/blog/making-blockchain-comply-with-gdpr-challenges-and-fixes/)\ [使区块链符合 GDPR:挑战和修复](https://www.altoros.com/blog/making-blockchain-comply-with-gdpr-challenges-and-...

文章 了解去中心化自治组织(DAO):其运作方式与实践——Pintu学院

... Get to Know the Decentralized Autonomous Organization (DAO), How It Works and Its Implementation](https://img.learnblockchain.cn/2025/08/18/apa-itu-dao_1.png)](https://img.learnblockchain.cn/2025/08/18/apa-itu-dao_1.png) 自 [加密货币](https://learnblockchain.cn/tags/cryptocurrency) 发明以...

文章 Liquid 生产环境中的限制条款

> _作者:Randy Naar_ > > _来源: [https://bitcoinmagazine.com/technical/before-they-were-cool-covenants-in-production-on-liquid](https://bitcoinmagazine.com/technical/before-they-were-cool-covenants-in-production-on-liquid)_ 自从比特币社区燃起关于限制条款的优化的讨论以...

文章 Solidity - 使用位运算节省 gas

... if ("either player has formed 3 consecutive dots") ("set the winner and end the game") ``` ## 棋盘/游戏状态的表示 现在我们对要存储的信息有了一个概念,让我们用代码来表示。请记住,设计应该考虑计算的高效: 代码将读取数据并计算...