找到约 15 条结果

文章 漏洞披露 — Solidity代码生成漏洞可能导致内存损坏

...熟的编译器中,编译器漏洞也很常见,例如 [Toward Understanding Compiler Bugs in GCC and LLVM](https://people.inf.ethz.ch/suz/publications/issta16-compiler-bug-study.pdf)。这导致了一个活跃的研究领域,应用形式化方法保证编译器的正确性,如 [The CompCert ...

文章 MEV(矿工可提取价值)缓解会摧毁链上流动性吗?

...“被动 LP 的新希望”](https://doseofdefi.substack.com/p/uniswap-v4-and-ambient-finance-fresh)。这两个 AMM 使得可以对资金池进行“钩子”编程。这一设计空间尚未完全探索(Ambient 在六月上线,而 Uni v4 仍未完全推出),但它们可能会对谁可以...

文章 Michael.W基于Foundry精读Openzeppelin第23期——ERC165Checker.sol

...xternal { // case 1: query to contract SupportNone without revert and return false assertFalse(testing.supportsERC165InterfaceUnchecked(address(supportNone), type(IERC165).interfaceId)); assertFalse(testing.supportsERC165InterfaceUnchecked(address(supportNone), INTERFACE_I...

文章 每周以太坊进展 2022/12/17

...t 中继列表委托](https://research.lido.fi/t/lido-on-ethereum-identify-and-constitute-relay-maintenance-committee/3386)给一个委员会 * [Reconnaissance](https://github.com/Will-Smith11/reconnaissance#readme):用 Reth 客户端的代理节点 * Vitalik 的 [EOF 提案:禁止 EOF 账...

文章 Datachain获得Interchain Foundation资助,以增强IBC-Solidity的生产使用

...olidity 的生产级利用: 主要增强功能: - 启用 BEEFY/GRANDPA 轻客户端支持(ICS-02 客户端规范和实施审查) [https://github.com/hyperledger-labs/yui-ibc-solidity/pull/115](https://github.com/hyperledger-labs/yui-ibc-solidity/pull/115) - 重新架构以提高 ga...

文章 EIP-3074 的更简单替代方案案例 - EIP

...UTH 和 AUTHCALL 操作码](https://ethereum-magicians.org/t/eip-3074-auth-and-authcall-opcodes/4880/77) - [上海候选:EIP-3074](https://ethereum-magicians.org/t/shanghai-candidate-eip-3074/10781/5) >- 原文链接: [ethereum-magicians.org/t...](https://ethereum-magicians.org/t/a-case-for-a-s...

文章 每周以太坊进展 2022/9/3

...档案文件解释器](https://ethresear.ch/t/era-archival-files-for-block-and-consensus-data/13526):历史区块和共识数据的平面存储格式 * 在 SSLE(Single Secret Leader Election) 中 Whisk 可能采用[后量子密码学(Post-Quantum-Cryptography)算法](https://crypto.ethereum.org...

文章 Web3专题(六) 深入理解 ERC20

.../ Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } ``` 可以看到,...

文章 链上 Vault - ERC4626 与通胀攻击

...ckmagnates.com/o...](https://blog.blockmagnates.com/on-chain-vault-erc4626-and-inflation-attack-c2d8d4cb5149) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 增强你的Lens体验:使用Gelato的Web3函数和OpenAI自动创建帖子

...创建个人资料 在你开始之前,请确保你已获得你的 Lens Handle,然后前往 [Lenster](https://lenster.xyz/) 并登录,然后通过你的浏览器或使用 WalletConnect 连接到你的钱包。 恭喜,你已经创建了你的 Lenster 个人资料! 注意:如果你的地...

文章 流动性挖掘:以用户为中心的代币分配策略

...由 Compound 在 [2020 年 6 月](https://medium.com/compound-finance/expanding-compound-governance-ce13fcd4fe36) 实现大规模应用,流动性挖矿(LM)吸引了数十个协议的关注,成为了一种更好的代币分配方式。 ![](https://img.learnblockchain.cn/2025/03/23/1VdRDBHROf...

文章 使用CoinPaprika和Yellowstone Geyser监控高交易量流动性池

...](https://www.quicknode.com/docs/solana/yellowstone-grpc/overview#endpoint-and-token-configuration)。 ### 构建池监控器 让我们将实现分解为可管理的部分。 #### 导入依赖项 首先,我们需要在我们的 `main.rs` 文件中导入必要的 crate 和模块: ``` use { ...

文章 学习如何将UniswapV3集成到你的智能合约中

...初发表于 [BuildBear 教程](https://www.buildbear.io/resources/guides-and-tutorials/catapulta_buildbear)。 ## 什么是 Uniswap? Uniswap 是第一个通过自动化做市商 (AMM) 将去中心化交易所 (DEX) 推向新阶段的协议。AMM 消除了在传统股票市场中进行交易时...

文章 基于 Booster Rollup (BBR):Taiko 路线图中的一个重要新里程碑……

...问](https://ethresear.ch/t/cross-layer-communication-trivially-provable-and-efficient-read-access-to-the-parent-chain/15396)。 - [Booster rollup - 直接扩展 L1。](https://ethresear.ch/t/booster-rollups-scaling-l1-directly/17125) - [Booster rollup 第 2 部分:ZK-EVM 作为 ZK 协处理...

文章 Rust泛型特征、集合类型

...tring::from("Hello, world!")); } ``` ### 协变与逆变(Covariance and Contravariance) **协变** - 定义:如果类型 A 是类型 B 的子类型,那么 `Vec` 也是 `Vec` 的子类型。 - 语法:使用 `?Sized` 或者 `+` 操作符。 ```rust trait Animal { fn make_s...