找到约 13 条结果

文章 好的初衷,糟糕的设计:钻石标准的不足

...s4[] functionSelectors; } /// @notice Gets all facet addresses and their four byte function selectors. /// @return facets_ Facet function facets() external view returns (Facet[] memory facets_); /// @notice Gets all the function selectors supported by a specific facet. ...

文章 针对全同态加密的新型密钥恢复攻击

...LWE构建一种全面同态加密同样需要具备乘法同态特性,即AND门。为LWE建造AND门更具挑战性且针对每种方案构造具体,我们在此不作详述。关于更多细节,Zama的[深度报道文章↗](https://www.zama.ai/post/tfhe-deep-dive-part-1)是非常好的资料...

视频 6_Ordinal 协议与 BRC20 代币详解

...用 Unisat 钱包来部署和铸造 BRC20 代币和 NFT。 * **Commit and Reveal 模式:** * 视频讲解了如何使用 Commit and Reveal 模式来部署 BRC20 代币,以避免 Unisat 钱包的高额手续费。 * Commit 交易将铭刻数据发送到一个中间地址。 ...

文章 BlockThreat - 2025年第24周

...20,000 个恶意 IP 和域名被删除](https://www.interpol.int/en/News-and-Events/News/2025/20-000-malicious-IPs-and-domains-taken-down-in-INTERPOL-infostealer-crackdown)**。 - **[泰国警方逮捕了一名涉嫌 610 万美元比特币欺诈案的中国嫌疑人](https://decrypt.co/325028/tha...

文章 PeerDAS:一种使用经过实战检验的 P2P 组件的更简单 DAS 方法 - 网络

...。 | 名称 | 示例值 | 描述 | | --- | --- | --- | | `NUMBER_OF_ROWS_AND_COLUMNS` | `32` | | | `SAMPLES_PER_ROW_COLUMN` | `512` | | | `CUSTODY_REQUIREMENT` | `2` | 诚实节点保管和提供样本的最小行数和列数 | | `SAMPLES_PER_SLOT` | `75` | 节点每个 slot 查询的随机样...

文章 Canton的机构基础:银行与市场推动者

...7c3-a3f9-4a57-a503-899d905646f3/e34b12ae-e0e0-4215-ae17-39c7b99b4bfa/Banks_and_Financial_Institutions.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=ASIAZI2LB466VPOXX6CW%2F20251109%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20251109T011427Z&X-Amz-Expires=...

文章 Rust 中的所有权是什么?深入了解安全且快速的内存管理

... String ``` 你也可以同时转移和返回所有权: ``` fn takes_and_returns(s: String) -> String { s } let s2 = String::from("hello"); let s3 = takes_and_returns(s2); // s2 被移动,s3 现在拥有它 ``` ### 如果你想重用一个值怎么办? 有时,你希望函数**使用...

文章 NFT制作与OpenSea部署教程

... | [freecodecamp.org](https://www.freecodecamp.org/news/how-to-make-an-nft-and-render-on-opensea-marketplace/) ![](https://img.learnblockchain.cn/2021/04/12/16181943392699.jpg!/scale/50) 在这篇文章里,笔者将展示如何在没有软件公共技术背景下制作 NFT。然后,我们...

文章 生成NFT与AI,并部署NFT智能合约和前端应用程序

...) **本文最初发布于:** [https://www.buildbear.io/resources/guides-and-tutorials/Generate\_NFT\_with\_AI\_and\_Deploy\_the\_NFT\_smart\_contract](https://www.buildbear.io/resources/guides-and-tutorials/Generate_NFT_with_AI_and_Deploy_the_NFT_smart_contract) 学习如何部署NFT智能合约...

课程 JavaScript 教程

...。 代码:https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/ https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/es6/ ## 进阶部分 学习 JavaScript 的核心要点,本课程涵盖从面向对象编程基础...

文章 5.MOVE从入门到实战-发布新模块

...``` ## 编译并发布模块 在沙盒环境发布模块 ```js $ move sandbox publish -v Found 1 modules Publishing a new module 00000000000000000000000000000002::Test (wrote 253 bytes) Wrote 253 bytes of module ID's and code ``` 查询发布的模块 ```js $ ls storage/0x0000000000000000...

文章 Polter Finance 漏洞:Fork-and-Pray 失败

!["Polter Finance Exploit: Fork-and-Pray Failure - Three Sigma" banner](https://img.learnblockchain.cn/2025/03/12/22921403_image.png) ## **Polter Finance 简介** Polter Finance 是一个去中心化、非托管的协议,旨在借贷数字资产。它使用流动性池,用户可以存入...

文章 用 Rust 开发 MCP:从 0 到 1 写一个能被 Claude 调用的工具服务

... "name": "add", "description": "Add two numbers and return the sum.", "inputSchema": { "type": "object", "properties": { "a": { "type": "number" }, "b": { "type": "...