找到约 14 条结果

文章 Uniswap V2 源码学习 (四). 签名和路由

...://eips.ethereum.org/EIPS/eip-2612 "A Long Way To Go: On Gasless Tokens and ERC20-Permit" https://soliditydeveloper.com/erc20-permit "Openzeppelin ERC-20-Permit (in draft status)" https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/draft-ERC20P...

文章 零知识入门:ZK领域的引导之旅,第二部分

... 与 [zkEVMs↗](https://www.cryptologie.net/article/564/what-are-zkvms-and-whats-the-difference-with-a-zkevm/) 不同,zkVMs 也不是绑定于任何区块链。zkVMs 可用于不在以太坊上运行的通用目的。由于 zkVMs 以预编译的二进制文件作为输入,因此可以使用多...

文章 如何用Solidity创建一个“Hello World”智能合约

...看这个 [全面的列表](https://learnblockchain.cn/docs/solidity/units-and-global-variables.html) 以获取有关内置关键字的更多信息。你还可以查看 [QuickNode 文档](https://www.quicknode.com/docs) 上提供的完整以太坊 RPC 方法。 你还应该了解 EVM(即以太坊...

文章 EigenLayer:通过 Staking 和 Restaking 增强以太坊奖励的初学者指南

...ttps://twitter.com/HappySasha18), [Farcast](https://warpcast.com/happy-alexander) 上找到我。 >- 原文链接: [alexanderabramovich.medi...](https://alexanderabramovich.medium.com/eigenlayer-a-beginners-guide-to-enhancing-ethereum-rewards-through-staking-and-restaking-a362fc27508d) >- 登链...

文章 通过Orby和Orb Stack引入意图驱动的互操作性

.../medium.com/@0xOrbLabs/introducing-intent-driven-interoperability-via-orby-and-the-orb-stack-a40462661991) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 Compound 治理源码详解

...t active" ); // Allow addresses above proposal threshold and whitelisted addresses to propose require( comp.getPriorVotes(proposer, block.number - 1) > proposalThreshold || isWhitelisted(proposer), "GovernorBravo:...

文章 Geth 中 5 个数据库的故事

...索、设置和删除键值: ``` // KeyValueReader wraps the Has and Get method of a backing data store. type KeyValueStore interface { // Has retrieves if a key is present in the key-value data store. Has(key []byte) (bool, error) // Get retrieves the given ke...

文章 可扩展性权衡:为什么“以太坊杀手”还未出现

... [比特币区块大小提高的内战](https://medium.com/@jcliff/understanding-the-block-size-debate-351bdbaaa38) 相关。 ### 被许可或私有区块链 我将完全跳过这一类别,因为按定义这就是一个中心化的设置。有关公共与私有区块链的高级比较,可以...

文章 Solana 上的流动性质押和 LSTs

... 在 Jito ([Jito](https://www.jito.network/blog/jto-airdrop-eligibility-and-allocation-specifications/) 和 [Jupiter 空投](https://x.com/ryanchern/status/1753646576562749701?s=20) 后,Solana DeFi 经验了显著的 [成交量](https://defillama.com/dexs/chains/solana)、活动和关注度的上...

文章 Uniswap v3:通用自动做市商

... ![image.png](https://img.learnblockchain.cn/attachments/2025/03/lXNl9aND67dbcb415e377.png) Curve 实际上使用的是非恒定的 $X$ ,它被定义(使用我们的术语)为 $\frac{Axy}{s^2}$ ,其中 A 是一个常数放大因子。这导致了一个更复杂的方程,更难用...

文章 账户抽象与SUAVE:我们距离以意图为中心的以太坊还有多远?

...um.com/metaweb-vc/ac...](https://medium.com/metaweb-vc/account-abstraction-and-suave-how-far-are-we-from-an-intent-centric-ethereum-907e30804880) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 Brevis研究报告:zkVM 和 ZK 数据协处理器的无限可验证计算层

... 年,[@VitalikButerin](https://x.com/@VitalikButerin) 提出了“ [Glue and Coprocessor Architectures](https://learnblockchain.cn/article/9446) ”的概念,设想了一种将通用执行层与专用 **协处理器** 加速层分开的结构。因此,复杂的计算可以分为灵活的业务...

文章 用于实现无状态性的 Verkle 树

...时间:2024 年 4 月 08 日 Kaustinen [https://kaustinen-testnet.ethpandaops.io/](https://kaustinen-testnet.ethpandaops.io/) 更新了 EIP-4762 实现 更新了 EIP-2935,其中包含大小为 8192 的环形缓冲区 请参阅以下 [教程](https://learnblockchain.cn/article/19501?view) ...

文章 花式发币法之发行各类 ERC20 代币

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