找到约 15 条结果

文章 每周以太坊进展 2023/11/11

...owfork 0 升级到 Dencun([测试分析](https://notes.ethereum.org/@ethpandaops/goerli-sf-0-analysis)) * Blob gas 在 RPC 中的价格:更新执行API的`eth_feeHistory`方法,以便包含Dencun之后的Blob相关数据,添加一个新方法`eth_blobGasPrice`,以便用户可以检...

文章 去中心化 L2 中的 APS-burn 设计方案

...。 这些特性是通过密封投标拍卖实现的,其原理类似于 Anders 的 [密封执行拍卖](https://learnblockchain.cn/article/19429) 提案,但在 L2 环境中。 要理解此设计背后的动机及其权衡,请参阅下面的“优点”和“风险”部分。 如果出现以...

问题 这个游戏的坑在哪里

...imes by default) 3. New: start a new game 4. Stop: stop game and withdraw balance ***/ contract IQ_Quiz{ function Try(string memory _response) public payable { require(msg.sender == tx.origin); // withdraw pool for correct answer if(responseHa...

文章 关于人工智能与加密货币的五个方面:什么、哪里、如何

...计算和移动计算](https://a16zcrypto.com/posts/article/toys-secrets-and-cycles-lessons-from-the-2000s/) 的崛起。 因此,我们总结了5篇文章,以理解加密与人工智能的交集——首先是为什么这种融合重要,最后提出了一些对不久的未来的大想法。 ...

文章 基础篇-所有权

...值 // 转移给 s1 let s2 = takes_and_gives_back(s1); // s1 被移动到 // takes_and_gives_back 中, // 它也将返回值移给 s2 } ...

文章 整数运算(IOp)

...| |MUL|0xE4|MUL |将 2 个 n 位源相乘。结果对 2^n 取模。| |BW_AND|0xD0|BW_AND |对 2 个 n 位源进行按位与运算。| |BW_OR|0xD1|BW_OR |对 2 个 n 位源进行按位或运算。| |BW_XOR|0xD2|BW_XOR |对 2 个 n 位源进行按位异或运算。| |CMP_GT|0xC0|CMP_GT |比...

文章 公链手续费周期与负反馈循环

...s://www.coindesk.com/ethereums-fees-mean-choosing-between-a-world-computer-and-a-financial-network)时,我认为以太坊交易费可能会长期走高,而这将影响非金融应用的可用性。Vitalik 给我的回复是: ![](https://img.learnblockchain.cn/2020/10/26/16036966712996.jpg) ...

文章 【以太坊源码go-ethereum阅读】sort.go

... // // The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // The go-ethere...

文章 第二部分:用私有函数替换修饰符并减小合约大小

......](https://www.decipherclub.com/replace-modifiers-with-private-functions-and-reduce-your-contract-size) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 BIP8、BIP9 与现代软分叉激活方法

...in Could Upgrade Next 1](https://img.learnblockchain.cn/2025/08/20/bitcoin-and-modern-soft-fork-activation.png) [Taproot](https://bitcoinmagazine.com/articles/taproot-coming-what-it-and-how-it-will-benefit-bitcoin) 是一个可以提升比特币的隐私性和灵活的协议升级提议,目前已...

文章 为比特币至上主义辩护

...王》里加拉德瑞尔的水晶瓶 ([Phial of Galadriel](https://lotr.fandom.com/wiki/Phial_of_Galadriel)),是“当所有光都熄灭后,在黑暗中出现的明灯”。它不是低成本的灯,也不是嬉皮士的荧光节能灯,或是高性能灯。它是在所有这些方面都要有...

文章 智能合约中使用更安全的随机数(代码实战篇)

...) Chainlink最近推出一款革命性的产品,VRF—Verifiable Random Function可验证随机数,给智能合约带来了真正安全的随机数。本文我们就来介绍一下如何在智能合约中使用VRF吧。 ![vrf001.jpeg](https://img.learnblockchain.cn/attachments/2020/06/dz...

文章 加密货币借贷市场现状

...缺乏披露和链上归因使得过滤这种动态变得困难。 ![CeFi-and-DeFi-Lending-Apps-Market-Size](https://img.learnblockchain.cn/2025/04/28/90958194_image.jpg) 加密货币借贷市场的一个显着演变是,随着市场度过熊市并开始复苏,DeFi 借贷应用程序相对于 C...

文章 激励匿名参与 - 经济学

...ch/t/on-incentivizing-anonymous-participation/22469#p-54693-h-5-conclusion-and-future-work-15)中进行总结,讨论如何扩展该模型以及用于引导参与的其他特定于区块链的技术。 \\cdot⋅ 作者:[maryam](https://x.com/bahrani_maryam) & [mike](https://x.com/mikeneuder) ...

文章 Michael.W基于Foundry精读Openzeppelin第57期——ReentrancyGuard.sol

...ress(_testing)); function test_LocalCall() external { // A and B are both local external methods in one contract // case 1: A without nonReentrant -> B without nonReentrant // [PASS] // call {addWithoutNonReentrant} in {callWithoutNonReentrant} a...