找到约 15 条结果

文章 聊聊以太坊的文化

...展。重要的 PoS 组件首先由 #Zcash 部署。一开始,大家对 EIP-1559 的作用不太肯定。但看到它 #Filecoin 上以产品级的实现运行之后,信心便有所增强。还有许多类似的例子。 但如果“不要把自己太当回事”是唯一的标准,#Dogecoin ...

问题 Java调用合约方法时出现invalid sender错误,但是无法定位到具体原因是什么,麻烦各位大佬帮忙瞅瞅

...ount; import org.web3j.protocol.core.methods.response.EthGetTransactionReceipt; import org.web3j.protocol.core.methods.response.EthSendTransaction; import org.web3j.protocol.http.HttpService; import org.web3j.utils.Numeric; import java.math.BigInteger; import java.util.List; public class ...

文章 零时科技 || Fount-running, MEV和Hacker

.../ https://noxx.substack.com/p/order-flows-kingmaker-of-the-block https://eips.ethereum.org/EIPS/eip-4895 https://medium.com/taipei-ethereum-meetup/after-the-merge-mev-309e836698cf

文章 Storage 进阶——通过引用 Storage 提高 gas 利用率

...**。 首先,它按照 [ERC-7201:命名空间存储布局](https://eips.ethereum.org/EIPS/eip-7201)计算了变量 `Ownable`实际应该存储的 slot 位置: ```solidity // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 ...

文章 跨域论文第二部分:存储证明、计算与膨胀

...性的证明,或在某个时间槽中被提取(例如,通过收缩 EIP4844 blob 数据,一个散列会在执行层中指向某种链下状态)。之前通过预言机或运行自己的归档节点(或请求该数据)来证明这一点;然而,证明也可以在链上的数据上进...

文章 在 Jupyter 和 Colab 中将 Vyper 连接到你的钱包

...by](https://rabby.io/)、[Metamask](https://metamask.io/) 和任何实现 [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193) 的插件。 ## 为什么这对你有用? 用户已经使用 boa 部署合约有一段时间了。然而,当使用笔记本时,唯一签署交易的方法是在不安...

文章 以太坊扩容:通往4500万Gas上限及更远之路

...客户端团队成功优化 - 主要的剩余瓶颈是 MODEXP,将通过 EIP-7883 和进一步的客户端改进来解决 显示最坏情况 gas 性能的仪表板(在 MODEXP 重新定价后): ![modexp-repricing-performance](https://img.learnblockchain.cn/2025/07/01/Hki1kklSxe.png) **...

文章 【深度】OpenSea 新协议 Seaport源码解析

...der == offerer` )或者通过签名(标准的65字节 ECDSA,64字节 EIP-2098 或 EIP-1271`isValidSignature` 检查)或列举链上订单(即调用 `validate`)来批准订单。 - `zone` 订单的区域是附加到订单的可选辅助帐户,具有两个额外的权限: - 该...

文章 基于意图的架构及相关实验性项目

... 为了解决对 SCW 的需求而无需单独的 EOA,[ERC-4337](https://eips.ethereum.org/EIPS/eip-4337) 引入了一种称为用户操作(UserOp)的新型交易,并引入了一个名为“Bundler”的新角色。此外,[ERC-1271](https://eips.ethereum.org/EIPS/eip-1271)(合约的标...

文章 零时科技 || Fount-running, MEV和Hacker

...osal/https://noxx.substack.com/p/order-flows-kingmaker-of-the-blockhttps://eips.ethereum.org/EIPS/eip-4895https://medium.com/taipei-ethereum-meetup/after-the-merge-mev-309e836698cf

文章 预言机 Oracle 的原理和实现

...turn false; } ​ //生成签名哈希 ​ // EIP 191 style signatures // // Arguments when calculating hash to validate // 1: byte(0x19) - the initial 0x19 byte // 2: byte(0) - the version byte (data with intended validator) ...

文章 什么是 Layer 1 区块链?

...nksharding/),现在部分上线,得益于最近的 [Proto-danksharding eip-4844 版本](https://learnblockchain.cn/article/13807)。 分片允许交易的并行处理,大大加快了验证过程,因为每个节点只处理其各自片段的交易。 ### **改变共识机制** 更改...

文章 ERC20相关业务的合约开发与合约安全

... ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned b...

文章 第十二章. 挖矿和共识算法 #2

...a8135f685ca69ccf4168e61a90e50f47552f61 - 09cb91f8250df04a3db8bd98f47c7cecb712c99835f4123e8ea51460ccbec314 - ``` 短语“Hello, World! 32”产生了以下哈希,符合我们的标准:09cb91f8250df04a3db8bd98f47c7cecb712c99835f4123e8ea51460ccbec314。找到它花费了32次尝试。从概...

文章 Solidity ERC20 代币完全指南(2024)

...们都具有相似的属性。** **‍** 自 [2015 年提案](https://eips.ethereum.org/EIPS/eip-20) 以来,ERC-20 代币标准的发展允许其他协议、平台和开发人员创建可以使用任何符合标准的代币的智能合约,而无需为每种新代币创建特殊逻辑。智能...