找到约 15 条结果

文章 价格预言机的使用总结(二):UniswapV2篇

...iveLast; uint public price1CumulativeLast; ... // update reserves and, on the first call per block, price accumulators function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private { ... uint32 blockTimestamp = uint32(block.timestamp % 2**32); ...

文章 以太坊密码学

...——是一个非常大的数字,十进制大约为$ 10^{77}$”——Andreas Antonopoulo,《Mastering Ethereum: Building Smart Contracts and DApps》的作者 注意,私钥生成是离线的;它与以太坊网络没有任何通信,也不需要。 *不要自己编写代码来生成随...

文章 技术进步对采矿效率的影响

...求上升与贵金属范式](https://www.linkedin.com/pulse/rising-tech-demands-precious-metal-paradigm-emco-network-7wpzc)]。对可再生能源的推动也增加了对[贵金属](https://blockapps.net/blog/future-tech-innovations-expected-to-disrupt-precious-metals/)的需求,白银是太阳能...

文章 理解代币经济学: 成功的有效ICO代币分配策略

...乎 80% 的 ICO 被认定为诈骗](https://droomdroom.com/7-ways-to-spot-and-avoid-crypto-ico-scams/),这突出了对结构良好的代币分配策略的迫切需求。 **代币分配的演变** 自 J.R. Willett 在 2013 年进行首次 ICO 以来,代币分配发生了显著的演变。现代...

文章 以太坊2.0质押详解:要求、回报与风险

...押要求……**]** 目录 [切换](https://blockapps.net/blog/understanding-ethereum-2-0-staking-requirements-rewards-and-risks/#) ## 以太坊 2.0 的质押要求 ### 最低 ETH 要求 以太坊质押的基础始于单人(solo)质押的 **32 ETH** 的最低要求。这项可观的投资...

文章 Miniscript 和描述符:比特币的隐藏力量

> _作者:Sandipan Dey & Rajarshi Maitra_ > > _来源: [https://bitcoindevkit.org/blog/hidden-power-of-bitcoin/](https://bitcoindevkit.org/blog/hidden-power-of-bitcoin/)_ 要给某人发送比特币,我们只需扫描一个二维码( _或者粘贴一个地址_)、输入地址,然后就 ...

文章 Web3系列教程之入门篇---8. Dapp白名单

... deployedWhitelistContract.address ); } // Call the main function and catch if there is any error main() .then(() => process.exit(0)) .catch((error) => { console.error(error); process.exit(1); }); ``` - 现在在`hardhat-tutorial`文件夹中创建一个`.env`文...

文章 比特币的私钥:转码与使用

...者:Arman The Parman_ > > _来源: [https://armantheparman.com/public-and-private-keys/](https://armantheparman.com/public-and-private-keys/)_ 凡是关心自己的比特币财产安全的人都应该试着理解下图: ![](https://img.learnblockchain.cn/2025/07/13/53c6f2c726ec43d6bf8aecdf96...

文章 Proxy contract 設計與變形

...用者需要自行的 migrate 到新的合約上,像是當年 $LEND rebrand 至 $AAVE 就是一個例子。 Twitter Embed [Visit this post on X](https://twitter.com/aave/status/1312139992815161344?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1312139992815161344%7Ctwgr%5Eb504fef38cd87a180...

文章 EthHub周报 #107

...本期策划:Anthony Sassano ([@sassal0x](https://twitter.com/sassal0x)) and Eric Conner ([@econoar](https://twitter.com/econoar)) ## 💰支持 EthHub Gitcoin Grants Matching Round 5 已经启动好几天了,很高兴看到社区有这么多人在支持他们所喜欢的项目。到目...

文章 noname 邂逅以太坊:与 SnarkJS 集成 - ZKSECURITY

.../gist.github.com/katat/7482d07ae783a5b20a4e5f04dec4cb16#file-snarkjs-prove-and-verify-sh-L36)。 我们在以太坊上部署了一个实例,位于 [0x7c686a33ac3f2c911b03b9aa80e5175d3ab4152a](https://sepolia.etherscan.io/address/0x7c686a33ac3f2c911b03b9aa80e5175d3ab4152a#code)。 要在链上测...

文章 資料可得性重新命名:用 Data Publication 取代 Data Availability

...本。**\\ \\ medium.com](https://medium.com/taipei-ethereum-meetup/rollup-and-data-availability-227340f1dbd6?source=post_page-----baac93be223f---------------------------------------) ## Data Availability — 資料可得性 隨著模組化區塊鏈的設計越來越流行,大家也越來越常...

文章 Messari 研报:深度解析 Nervos Network(CKB)

...(https://messari.io/research/jennifer-obem)**;**英文原文**:[Understanding Nervos Network (CKB): A Comprehensive Overview](https://messari.io/report/understanding-nervos-network)。 本文是 Messari 撰写的英文报告的中文翻译版。本译文仅供参考,不具有法律效力。...

文章 每周以太坊进展 2020/09/13

...准](https://ethereum-magicians.org/t/a-general-purpose-l2-friendly-ens-standard/4591) ## 开发者材料 * Solidity 最终成为了 [Github 中的一等公民](https://twitter.com/NomicLabs/status/1303010441954762754):自动化的 Solidity 探测 * OpenZeppelin 合约套件 [v3.2](https://...

文章 Libra 源码分析:Libra 的准入控制(AC)模块

...码简单分析 ```rust /// Validate transaction signature, then via VM, and add it to Mempool if it passes VM check. /// 流程非常简单 /// 1. 交由本地validator验证Tx执行能否通过,如果不通过报错,否则继续2 /// 2. 获取账户最新状态,组装`AddTransactionWi...