找到约 12 条结果

文章 以太坊 - Optimism Collective介绍

...物品资金,这些资金来自[网络收取的收入](https://twitter.com/optimismPBC/status/1516439426330599428)。公民身份将通过“[soulbound](https://vitalik.ca/general/2022/01/26/soulbound.html)”不可转让的 NFT 授予,并且**公民数量将随着 Optimism 社区的增长而增...

文章 以太坊 - EIP-7702 介绍

...7702 会出现在 Pectra :) **特别感谢** [_NIC Lin_](https://medium.com/u/aca73f7679fe?source=post_page---user_mention--11ac6195573f---------------------------------------) **和** [_Chang-Wu Chen_](https://medium.com/u/e77f8b591fa3?source=post_page---user_mention--11ac6195573f---------------...

文章 Aptos Move 开发入门:从环境搭建到合约部署全流程实录

...n funded on chain yet. To fund the account and get APT on testnet you must visit https://aptos.dev/network/faucet?address=0x1ff96e1010f6118a00bea0deb0139cdde087809e944638e12cbf70ce25a948fd Press [Enter] to go there now > { "Result": "Success" } ``` ### 创建一个新的 Move package ...

课程 Web3 前端课

...握 Web3 前端核心技能 - **实践驱动**:课程以一个综合型 DeFi 项目为主线,涵盖 **LaunchPad + 去中心化交易所(DEX)+ LP 质押挖矿**,帮助学员在实践中全面掌握 DApp 的开发能力与经验 ## 你将收获 - **独立开发一个完整 DAp...

文章 Ethereum.org 2024翻译马拉松回顾

...ps://pse.dev/):1.2 万字 - [SpeedRun Ethereum](https://speedrunethereum.com/):5 千字 ## ETHGlossary ![ETHGlossary](https://img.learnblockchain.cn/2025/04/26/B1OERb6k1l.png) 作为翻译马拉松的一部分,我们创建了 ETHGlossary,我们的新工具正在将以太坊术语变成一...

文章 SUI Move官方示例合约实践——DeFi类:第三方托管(escrow)

... ## 1 合约编写 ### 1.1 示例代码 > 来自:https://github.com/MystenLabs/sui/blob/main/sui_programmability/examples/defi/sources/escrow.move ```rust // Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 /// An escrow for atomic swap of objects that trusts...

文章 ERC4626:关于 Vaults 你需要知道的一切

...通过使用智能策略来增加你的数字货币。与仅仅将你的 coins 保存在普通账户中不同,这些金库会积极工作以从你的投资中赚取更多钱。 ## 这是它的工作原理 - **更多资金的策略**:Yearn 金库不仅仅是借出你的 coins,而是使用各...

问题 各位大佬麻烦问一下,监听LP交易不生效

...ary for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math) library SafeMath { function add(uint x, uint y) internal pure returns (uint z) { require((z = x + y) >= x, 'ds-math-add-overflow'); } function sub(uint x, uint y) internal pur...

视频 【第14期】Web2 开发者如何更好的进入 Web3 ?

...者更好的进入Web3世界? [B站视频链接](https://www.bilibili.com/video/BV1tY411T7ux/?spm_id_from=333.999.0.0&vd_source=256de7b845288ff259a7aa40777786c8) | [Youtube视频链接](https://www.youtube.com/watch?v=i0TssIHzKHI&t=9s) >演示PPT:[Web2 开发者如何更好的进入 Web3...

文章 zk-merkle-tree库: 使用 zkSNARK 在以太坊上进行匿名投票

> * 原文链接: https://thebojda.medium.com/an-introduction-of-zk-merkle-tree-a-javascript-library-for-anonymous-voting-on-ethereum-using-79caa3415d1e > * 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > * 译者:[翻译小组](https://learnblockchain.cn/people/412)...

文章 zkSNARK 合约「输入假名」漏洞致众多混币项目爆雷

...发者 poma 最先指出该项目[可能存在双花漏洞](https://github.com/kobigurk/semaphore/issues/16)。 ![](https://img.learnblockchain.cn/2019/07/15643664506590.jpg) 问题出在[第 83 行代码](https://github.com/kobigurk/semaphore/blob/602dd57abb43e48f490e92d7091695d717a63915/se...

文章 配对密码之美:聚合签名和阈值签名

... = e(P, H(Msg))$ Zig 实现的例子在 \[ [这里](https://asecuritysite.com/zig/zig_bls)\]: ```zig const std = @import("std"); const bls = @import("bls.zig"); const testing = std.testing; pub fn main() !void { var message: []u8 = undefined; var stdout_buffer: [4096]u8 = undefined; ...