找到约 14 条结果

文章 Web3 新星:Monad 打造 NFT 全解

...e Layer-1 blockchain with 10,000 tps of throughput, 500ms block frequency, and 1s finality. ## 实操 ### 创建项目并切换到项目目录 ```bash mcd MonadArt # mkdir MonadArt && cd MonadArt ``` ### 通过模版初始化项目 ```bash forge init --template https://github.com/q...

文章 如何使用 Across 桥接到 Hyperliquid(分步指南)

...本例中,我们从 Base 桥接到 Hyperliquid。 ![Step 3: Select USDC and your origin chain.](https://img.learnblockchain.cn/2025/08/20/62498922_image.png) 步骤 3:选择 USDC 和你的原始链。 **4\. 选择 Hyperliquid 作为目标链** Across 中继器将自动通过 Arbitrum 进行...

文章 给新手介绍 MEV

...s](https://en.wikipedia.org/wiki/The_Quants)。 #### 三明治攻击(Sandwiching) 三明治攻击是搜索者(如 [jaredfromsubway.eth](https://www.theblock.co/post/230218/jaredfromsubway-mev-bot))常用的一种 MEV 策略。 > 三明治攻击涉及将受害者的交易“夹在”...

文章 Botanix区块链:Botanix网络Layer 2架构

...s://www.coindesk.com/tech/2024/03/06/liquid-restaking-tokens-what-are-they-and-why-do-they-matter/)、永续合约 DEXs、去中心化货币市场(yield farming、借贷等)等。 为了实现这些迭代的开发,Spiderchain 利用几个主要的架构组件来实现其作为网络的更大...

文章 ERC4337 审计检查清单

...允许这样](https://code4rena.com/reports/2023-05-ambire#l-02-fallback-handler-should-not-be-allowed-to-be-this) - [Code4rena/Ambire/L-16: 针对未来随机数签名的交易组合无法取消](https://code4rena.com/reports/2023-05-ambire#l-16-transactions-bundles-signed-for-a-future-nonce-can...

文章 比特币的过去、现在和未来(三):比特币的青春期

...tion to his contributions on Bitcoin, Amir in Syria served in the YPG army and worked in the Rojava civil society on various economic projects for a year and a half.](https://img.learnblockchain.cn/2025/07/15/p2.png) \- 除了为比特币贡献代码,Amira 还在叙利亚的 YPG 军队中服役...

文章 Solidity的方方面面

... (string memory) { /**Compares if _name equals “Vivek” Throws an error and exits if not true. Solidity doesn’t have native string comparison, so we compare their keccak256 hashes to see if the strings are equaq ** / * *require(keccak256(abi.encodePacked(* name)) == keccak256(abi.encodePacke...

文章 操作 SUI 的常用指令

...r interacting with the Sui network Usage: sui.exe client [OPTIONS] [COMMAND] Commands: active-address Default address used for commands when none specified active-env Default environment used for commands when none specified addresses Ob...

文章 为什么 Defi 已坏,论无预言机协议的重要性

...: [Why DeFi is Broken](https://www.nascent.xyz/idea/why-defi-is-broken-and-how-to-fix-it-pt-1-oracle-free-protocols) > * 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > * 译者:[Tiny 熊](https://learnblockchain.cn/people/15) > * 本文永久链接:[learnblockcha...

文章 以太坊中的 gas(汽油) 是什么意思?

...ccak256 加密哈希函数](https://learnblockchain.cn/docs/solidity/units-and-global-variables.html?#index-5),每次计算哈希时需要 30 个gas,再加上每 256 位被哈希的数据多花费 6 个gas。**在以太坊平台上通过交易或合约执行的每个操作都会消耗一定数...

文章 Optimism 中文周刊 #28

...分配。[活动及其潜在点值如下](https://gov.optimism.io/t/govnft-and-governance-participation-curriculum/8310) # 论坛新闻 ## Optimism Delegation Frame 我们在 Farcaster 上推出了 Optimism Delegation Frame。我们希望为任何人创建一种简单的方法来检查他...

文章 我们应该超越EOA,而不是进一步巩固它们(与EIP 3074相关)- EIP

...40) - [上海候选:EIP-3074](https://ethereum-magicians.org/t/shanghai-candidate-eip-3074/10781/5) - [EIP 3074 是不安全的、不必要的,使用户资金面临风险,同时破坏了 UX、流动性和钱包堆栈](https://ethereum-magicians.org/t/eip-3074-is-unsafe-unnecessary-puts-user-fu...

文章 编写更低成本的合约:开发者Gas优化指南

...能。 本文总结了 Udemy 的课程 **“Advanced Solidity: Understanding and Optimizing Gas Costs”**,涵盖了费用机制、calldata 与 memory 的区别、变量打包和编译器优化。 应用这些技术,每次交易可以节省数千个 gas 单位,并使你的合约更精简...

文章 空投大杂烩 - 合约实现空投发放的三种方案

...{ require(spenders.length == values.length, "Lengths of Addresses and Amounts NOT EQUAL"); /*循环批量给用户 mint */ for (uint i = 0; i < spenders.length; i++) { _mint(spenders[i], values[i]); } } ``` - **链下调用**: 构造...