找到约 12 条结果

文章 CertiK安全调研报告:Web3.0桌面钱包的初步安全评估

![](https://hx24-prod.mars-block.com/image/crawler/2024/11/15/1731653506394652.jpg) 桌面钱包在Web3.0生态系统中扮演着关键角色,它们为用户在去中心化网络中安全地管理数字资产提供了可靠的解决方案。Cointelegraph的报告\[1]指出,据Bitfinex交易...

文章 探讨 Huff :对比Solidity、Yul和原始EVM能力——第二部分

...20 合约实现**,并检查开发和测试工作流程。 ## Solidity vs. Yul vs. Huff ![](https://img.learnblockchain.cn/2025/06/10/1UNE1CWyRDbxCBoqt6ieXnQ.png) ## Gas 比较 (ERC20 `transfer`) - **Solidity**: ~22,000–25,000 gas - **Yul**: ~20,000–22,000 gas - **Huff**: ~21,000...

文章 在Substrate链上跑Solidity ERC20智能合约

...工具,如`remix`、`metamask`等。 > > ![image.png](https://img.learnblockchain.cn/attachments/2020/07/DNvWiGpH5f14fe0537641.png) > #### 2.1.1 安装 ```bash $ git clone git@github.com:paritytech/frontier.git $ cd frontier (master)$ git log commit fcea97281661f0a0a4c28e46edbfb...

文章 Evm升级最新Yolo功能概览和问题定位

...用`yoloV1InstructionSet`解析器,其实是没问题的,调节`YoloV1Block`高度即可 ``` "YOLOv1": { ChainID: big.NewInt(1), HomesteadBlock: big.NewInt(0), EIP150Block: big.NewInt(0), EIP155Block: big.NewInt(0), EIP158Block: big.NewI...

文章 Rust 优化技术非官方指南

![](https://img.learnblockchain.cn/2025/06/04/53243699_image.jpg) Rust优化 Rust独特的所有权模型和零成本抽象使其成为构建高性能系统的卓越语言。然而,实现最佳性能需要理解和应用特定的优化技术。本指南全面探讨了推动生产系统(如...

文章 SP1 Reth 简介:使用 SP1 构建的高性能 1 型 zkEVM

...何 rollup 如何使用 SP1 构建一个高性能([type-1](https://learnblockchain.cn/article/5024?ref=blog.succinct.xyz),字节码兼容)的 zkEVM,代码量少于 2000 行可维护的 Rust 代码。SP1 Reth 是一个早期的 POC,但通过利用 [SP1](https://learnblockchain.cn/article/19...

文章 CTFProtocol-2022 题解

... _owner = msg.sender; bytes32 slot = keccak256(abi.encodePacked(block.timestamp, blockhash(block.number - 69))); assembly { sstore(slot, "KittyCat!") } } function areYouHidingHere(bytes32 slot) external view returns (bool) { require(ms...

文章 质押挖矿合约逻辑解析(一)

... } return rewardPerTokenStored.add( block.timestamp.sub(lastUpdateTime).mul(rewardRate).mul(1e18).div(_totalSupply) ); } function earned(address account) public view returns (uint256) { return _balances[account].mul(rewardPerToken()....

文章 科赫尔的时间攻击:从理论到实践的旅程

... to 7 are known --- Attacking bit 8 --- Testing: H0=0b1000000010101011 vs H1=0b1000000110101011 Actual bit: 1 Filtering: keeping 960/1200 messages with |delta| >= 1.315 (80% kept) Decision: bit = 1 Prediction means: H0=17.397μs, H1=18.901μs Variances: H0=0.144770, H1=0.139724 D...

文章 构建你的Web3项目:你应该从原型开始还是从MVP开始?

...迭代的可操作的反馈。 ## **了解你的受众:利益相关者 vs. 早期采用者** 原型通常针对内部团队、潜在投资者和主要利益相关者。它是一种测试假设、改进设计和验证你的方法的工具。虽然它可能不是完全可用的,但原型非常...

文章 EigenPod 重新设计 - 检查点证明

...ethereum.org/EIPS/eip-4788) - Lighthouse 块和纪元处理: - [`per_block_processing`](https://github.com/sigp/lighthouse/blob/3058b96f2560f1da04ada4f9d8ba8e5651794ff6/consensus/state_processing/src/per_block_processing.rs#L100) - [`per_epoch_processing`](https://github.com/sigp/lighthouse...

文章 如何运行以太坊的Expedition区块浏览器

..._source=internal&utm_campaign=guides&utm_content=how-to-run-the-expedition-block-explorer-for-ethereum) 注册一个免费帐户。 创建以太坊端点后,复制左侧的 HTTP 提供程序链接并保存。我们将在下一部分中使用它。 ![Quicknode 以太坊端点截图](https://img.l...