找到约 14 条结果

文章 零知识证明的力量:深入理解zk-SNARK

...Review of Zero Knowledge Proofs” (Thomas Chen, Abby Lu, Jern Kunpittaya, and Alan Luo) 1. “Why and How zk-SNARK Works: Definitive Explanation” (Maksym Petkus) 1. Website: Zero-Knowledge Proofs 1. Wikipedia: Elliptic curve 1. Wikipedia: Finite field ...

文章 【Web3 探索】如何获取地址拥有的所有 NFT

...butes: [Array], description: "CoinStats GLXY is for the starry-eyed and galaxy-brained. It's for those whose spaceship has landed on CoinStats planet, who appreciate the mysterious glow the cosmic entities on our orbit give off. Enjoy the kitsch!", image: 'ipfs://QmVaTJSCgGFyfcd4hsaTN2...

文章 你现在就可以在 Layer-2 上做的 7 件事

...ium.com/matic-network-becomes-polygon-ethereums-internet-of-blockchains-expands-mission-and-tech-scope-364932c02cd0),转型成致力于 “让以太坊成为区块链的互联网”。 此次品牌重塑的题中之义是,该团队将开始拥抱 optiimistic rollup、zk rollup,等等。 ...

文章 【源码解读】你买的NFT到底是什么?

...链下监听到这次交易的数据 ``` /** * @dev Mints `tokenId` and transfers it to `to`. * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "...

文章 每周以太坊进展 2023/12/23

... - **Goerli 影子分叉 1** [分析](https://notes.ethereum.org/@ethpandaops/dencun-gsf-1-analysis):来自 4 个大洲的 290 个节点,除 Erigon 外的所有客户端;blob 将网络使用量增加了约 200kbps,区块延迟增加了约 300ms - **预编译地址范围**:范围的...

文章 zkPorter:Layer 2 方案的新突破

...,很快就会被[诱导需求](https://en.wikipedia.org/wiki/Induced_demand?fileGuid=xVTRG3H9XYGrpWHp)所吞噬。 Rollup 只能线性增加吞吐量(所有数据还是要广播到所有全节点)。但是,若要实现真正意义上的可扩展性,我们需要让吞吐量实现指数...

文章 从RPC到执行 - Solana的费用市场和交易管道的排队理论视角 - 第二部分

...wpmucdn.com/wordpressua.uark.edu/dist/7/795/files/2016/08/comparing_static_and_dynami.pdf) 或 [PID 类](https://en.wikipedia.org/wiki/Proportional%E2%80%93integral%E2%80%93derivative_controller) 控制器在实践中往往有效。 --- ### 串行优先级的建模与仿真 #### 近似分析 串...

文章 BIP 158 致密区块过滤器详解

... for o := range objects { // Using the given key, max number (F) and object bytes (o), // convert the object to a number between 0 and F. v := convertToNumber(b, F, key) numbers = append(numbers, v) } // 给 numbers 列表排序 sort.Slice(numbers, func(i,...

文章 EIP-7918:Blob 基础费用由执行成本限定 - EIPs / EIPs core

...拍卖设计的相关背景([Data Always](https://ethresear.ch/t/understanding-minimum-blob-base-fees/20489), [Wahrstätter](https://ethresear.ch/t/on-blob-markets-base-fee-adjustments-and-optimizations/21024), [Crapis](https://ethresear.ch/t/eip-4844-fee-market-analysis/15078)). ## 摘要 此 E...

文章 fhEVM 协处理器介绍:在以太坊、Base 和其他 EVM 链上运行 FHE 智能合约

...es[from], transferValue); // Allow users to see their balances, and the contract to update it TFHE.allow(_balances[to], to); TFHE.allow(_balances[from], from); TFHE.allowThis(_balances[to]); TFHE.allowThis(_balances[from]); return true; ...

文章 深度研报:AI 与 Web3 数据行业融合的现状、竞争格局与未来机遇探析(下)

...中的区块链和 SQL 知识。 (6)简化 SQL 编写工作(Dune Wand):Dune 8 月推出 Wand 系列的 SQL 工具。Create Wand 允许用户从自然语言提示中生成完整的查询,Edit Wand 并允许用户对现有查询进行修改,Debug 功能自动调试查询中的语法错...

文章 Maker崩溃,Dai流动性紧缩,USDC能救场吗?

...于周四举行](https://blog.makerdao.com/mkr-debt-auction-announcement-and-details/)。 自上周以来,MKR 价格暴跌,较上周下跌超过 60%,在撰写时为 210 美元。价格或许具有吸引力,但市场并没有心情来吸收额外的代币供给,尤其考虑到 Maker 的...

文章 【Solana】使用 CLI 创建 SPL 标准的 Token 以及基础使用

...=================================================== Save this seed phrase and your BIP39 passphrase to recover your new keypair: addict industry theme alley raise edit stone output wreck knife deer pistol =========================================================================== ``` 给 id2 ...

文章 【翻译】编写可升级的智能合约

...逻辑。 ```js // NOTE: Do not use this code snippet, it's incomplete and has a critical vulnerability! pragma solidity ^0.6.0; contract MyContract { uint256 public x; function initialize(uint256 _x) public { x = _x; } } ``` 然而,虽然Solidity确保...