找到约 12 条结果

文章 每周以太坊 2024/09/14

...CDC 上同意分拆 * [Pectra-devnet-3](https://pectra-devnet-3.ethpandaops.io/):上线,验证者合并和 EIP7702 工作如预期,钱包开发者可以用来测试 EIP7702 * EIP7685 执行层请求:明确指定无效请求的排序和处理 * EIP7702:最小有效性...

文章 Uniswap V2 协议理解

...于 [Vault Attack](https://medium.com/@sunnybin1007/on-chain-vault-erc4626-and-inflation-attack-c2d8d4cb5149) 的信息。 实际上,如果不是第一次存款,它本质上就像一个 vault,你收到的 LP 代币数量取决于你的存款相对于池中总量的百分比。 ![](https://im...

文章 使用 TFHE-rs 实现 AES-128 密码系统的全同态版本

...用 [AES 加密算法](https://en.wikipedia.org/wiki/Advanced_Encryption_Standard)。 在实践中,transciphering 可以减小加密数据的大小,以便存储或传输。例如,由于 FHE 加密会显著增加消息大小,因此限制交换数据量的一种实用策略是发送消息的 ...

文章 叔块验证与网络安全性

...难度。 ``` // Verify the block's difficulty based in it's timestamp and parent's difficulty expected := ethash.CalcDifficulty(chain, header.Time.Uint64(), parent) ``` *-[来源](https://github.com/ethereum/go-ethereum/blob/f03402232cd7bcc558b70a20df5b326b1d71e1ad/consensus/ethash/consens...

文章 Starknet和zkSync 详细比较分析

>- 原文链接:https://medium.com/nethermind-eth/starknet-and-zksync-a-comparative-analysis-d4648786256b >- 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) >- 译者:[张小风](https://learnblockchain.cn/people/74) ,校对:[Tiny 熊](https://learnblockchain.cn/pe...

文章 规范资产桥接的案例:安全价值转移与跨链互操作性

...cross-protocol/the-case-for-canonical-asset-bridging-secure-value-transfer-and-cross-chain-interoperability-be8f901d2354) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 什么是Layer2

...性和共识层分开(来源)。 ### **支付和状态通道Payment and State Channels** 支付和状态通道可用于区块链扩展,允许用户将加密货币锁定到与其他方的多重签名智能合约中,然后在链下交换代表资产所有权转移和/或状态更改的...

文章 通信复杂度的粗略估算

...参阅 [Paranova](https://zkresear.ch/t/parallelizing-nova-visualizations-and-mental-models-behind-paranova/198)。此处描述的简化方案足以进行草稿计算。 [如上所述](#Napkin-Math-for-Network-Costs),我们考虑一个 10 亿周期的计算,其中 witness 的每一行的大小...

文章 Web3.py 开发者指南

...) _图片来源:_ [_iotbl_](https://iotbl.blogspot.com/2017/03/ethereum-and-blockchain-2.html)_._ `web3.py` 让我们通过 JSON-RPC 与区块链进行通信,使你能够通过该单一连接与整个区块链进行交互。这就像使用一个单一的接入点来读取数据或向网络...

文章 ZK领域入门资料整理

...导航站 | MinerNav](https://minernav.com/zh-hans/mining-technology/aleo-and-ironfish-projects-already-using-zk-mining/) - [research/basic_crypto at main · qizhou/research · GitHub](https://github.com/qizhou/research/tree/main/basic_crypto) - [Footprint Analytics](https://www.footprint.network/...

文章 深入掌握 Rust 结构体:从模板到实例化的完整指南

...! // // Execute `rustlings hint structs2` or use the `hint` watch subcommand for a // hint. // I AM NOT DONE #[derive(Debug)] struct Order { name: String, year: u32, made_by_phone: bool, made_by_mobile: bool, made_by_email: bool, item_number: u32, count: ...

文章 【Uniswap V2】| 回顾 Uniswap V2 之详解手续费

...erve1); ... if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date ``` ``` solidity function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) { address feeTo = IUniswapV2Factory(factory).feeTo(); feeOn = feeTo != address...