找到约 13 条结果

文章 针对 ERC4626 通货膨胀攻击的新型防御措施

...五入,攻击者可以稀释其他用户存款的价值。![](https://learnblockchain.cn/article/16220/hs-fs/hubfs/Captura%20de%20pantalla%202025-03-05%20a%20la(s)%209.45.46%20a.%20m..png?width=2100&height=2043&name=Captura%20de%20pantalla%202025-03-05%20a%20la(s)%209.45.46%20a.%20m..png) 新的...

文章 Mantle Op-geth & Op-stack 差异审计

## 目录 - [目录](#table-of-contents) - [概要](#summary) - [范围](#scope) - [系统概览](#system-overview) - [Op-stack 更新](#op-stack-updates) - [Op-geth 更新](#op-geth-updates) - [用于 sec256r1 签名的新预编译合约](#new-precompile-for-signatures-on-sec256r1) - [安全...

问题 在etherscan验证智能合约,总是提示abi错误

...um.org/编译好合约,然后部署到测试网的时候, 想去etherscan验证合约,abi直接从remix复制来,验证的时候,总是提示这个错误: Error! Invalid constructor arguments provided. Please verify that they are in ABI-encoded format > ![|690x315, 75%](https://img.l...

文章 零时科技 | 被盗6.1亿美金,Poly Network 被攻击复盘分析

![](https://oss-cdn1.bihu-static.com/image/20210809/fa77f72632e646a087d845ffe8d28a8e_HEYDAKRTG44A.jpeg) ## 事件背景 2021年8月10日晚间,零时科技安全团队收到情报称,跨链互操作协议 Poly Network 突遭黑客攻击,使用该协议的 O3 Swap 损失惨重,在以太...

文章 SUI Move开发必知必会——如何进行合约升级

... 版本升级数据迁移的操作成为专有操作,并只允许使用 `AdminCap` 来调用** ```rust module counter::counter { use sui::object::{Self, ID, UID}; use sui::transfer; use sui::tx_context::{Self, TxContext}; // 1. Track the current version of the module ...

文章 使用OpenZeppelin Truffle升级插件升级合约

> * 原文:https://forum.openzeppelin.com/t/openzeppelin-truffle-upgrades/3579 作者:**[abcoathup](https://forum.openzeppelin.com/u/abcoathup)** > * 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > * 译者:[Tiny熊](https://learnblockchain.cn/people/15) > * 本...

文章 Move CTF共学:Task2&Task3

参与了HOH社区举办的Move CTF共学,本文主要分享Task2&Task3解题思路。二者解题很相似,都是因为没有对类型进行确认导致的错误 ctf参与平台: [https://platform.cyclens.tech/activity/1](https://platform.cyclens.tech/activity/1) # Task2解题 题...

文章 SUI 链上游戏实现: 简单的NFT抽奖与兑奖游戏

...ove获得SUI的激励计划,鼓励更多的人学习Move语言,本篇为task4任务的实现与代码分析。 任务目标: 1. 完成 链游相关知识的学习 2. 完成 随机数的学习,游戏必须包含随机数 3. 完成 存和取游戏资金池 4. 完成 如何存储Coin在合...

文章 Penpie漏洞:2700万美元的重入攻击盗窃案

!["Penpie Exploit: $27M Heist with Reentrancy Bug - Three Sigma" banner](https://img.learnblockchain.cn/2025/03/12/50418973_image.svg) ## 引言 ### Pendle Finance [Pendle](https://pendle.finance/) 是一个去中心化、无需许可的协议,旨在实现收益交易,使用户能...

文章 Gelato 与 Blockscout 合作,为 L2 链提供 explorer-as-a-service

[博客](https://www.gelato.cloud/blog) - 更新 ## Gelato 与 Blockscout 合作,为 L2 链带来浏览器即服务 ![](https://img.learnblockchain.cn/2025/06/13/Blockscout_Block_Explorer_a6e060722e.png)[Gelato 的 Rollup as a Service(RaaS)](https://www.notion.so/gelato-network/Gelato-zkRaaS-ad0...

文章 Verkle 树

*特别感谢 Dankrad Feist 和 Justin Drake 的反馈和审核。* 在以太坊未来的可扩展性提升中,Verkle tree(下文音译为 “沃克尔树”)正日益显现出重要性。其作用与当前的默克尔树(Merkle tree)无二:可以使用沃克尔树存储大量的数...

文章 DAOs的基础及其运作方式

目录 [切换](https://blockapps.net/blog/the-basics-of-daos-and-their-functioning/#) ## 去中心化自治组织 (DAO) 简介 去中心化自治组织 (DAO) 是一种革命性的新型组织,它基于区块链技术运作,为决策和资源分配提供了一种去中心化和自治的方法...

问题 怎么解码UniversalRouter中excutede input

...oerli测试网想解码一笔交易,这笔交易调用的合约是UniversalRouter,我已经通过abi将transaction.input解码出来了 解析代码如下: ```js import InputDataDecoder from 'ethereum-input-data-decoder'; import { ethers } from 'ethers' const provider = new ethers.Infur...