找到约 11 条结果

文章 [UNISWAP 系列] 3. 深入探讨 Uniswap v3

...内容,请参考第二篇“理解 CPMM”_](https://hyun-jeong.medium.com/uniswap-series-2-cpmm-%EC%9D%B4%ED%95%B4%ED%95%98%EA%B8%B0-4a82de8aba9) _._ ![](https://img.learnblockchain.cn/2025/03/15/1zOG6sVvc3Ne8UHpcNilTrA.png) v3 的 AMM 公式 ![](https://img.learnblockchain.cn/2025/03/15...

文章 点支付合约简介,Part-1:取代 HTLC

> _作者:Nadav Kohen_ > > _来源: [https://suredbits.com/payment-points-part-1/](https://suredbits.com/payment-points-part-1/)_ **点支付合约系列** [Payment Points Part 1: Replacing HTLCs](https://suredbits.com/payment-points-part-1/) [Payment Points Part 2: “Stuckless” Payments](h...

文章 Verkle 树

...坊所用的 “[默克尔帕特里夏树](https://ethereum.stackexchange.com/questions/6415/eli5-how-does-a-merkle-patricia-trie-tree-work)” 非常相似。树上的一个节点,要么是 (i) 空的,要么是 (ii) 一个叶子节点,包含一个键和对应的值,或者是 (iii) 一个中...

文章 Python、Solidity 和 EVM 中的双线性配对(Bilinear Pairings)

...https://ethereum.org/) 维护,它也支持 [PyEVM 实现](https://github.com/ethereum/py-evm)中地址为0x8的预编译。 以太坊在 [EIP-197](https://eips.ethereum.org/EIPS/eip-197) 中定义的预编译在 `G1` 和 `G2` 中操作点,并 _隐式_ 在 $G_T$ 中操作点。 该预编译...

文章 使用Prometheus进行Substrate节点可视化监控

...nflux配置 ### 2.5.1 创建账号 ```bash [jason@RUAN:~]$ influx Visit https://enterprise.influxdata.com to register for updates, InfluxDB server management, and monitoring. Connected to http://localhost:8086 version 1.8.1 InfluxDB shell version: 1.1.1 > CREATE USER jason WITH PASSWORD ...

文章 零知识前沿:关于SNARKs,STARKs和未来的应用

...鲜事物。事实上,该想法是[在 1980 年代](https://www.nytimes.com/1987/02/17/science/a-new-approach-to-protecting-secrets-is-discovered.html)由抽象数学的研究者首次提出的。该方案旨在解决当时的与证明者和验证者之间的理论系统--**交互式证明** --相...

文章 Ola:开创安全比特币跨链交易的新范例

...我们联系。 [网站](https://olavm.org/) \| [Twitter](https://twitter.com/ola_zkzkvm) \| [Discord](https://discord.com/invite/olavm2024) \| [Telegram](https://t.me/sin7y_labs) \| [文档](https://ola-foundation.gitbook.io/ola-documentations/) \| [白皮书](https://github.com/Sin7Y/olavm-whitep...

文章 bitcoin地址是如何生成的

... 详细内容请看[压缩公钥与非压缩公钥](https://www.jianshu.com/p/6f08bebc5aa6) #### Step3. 第2步结果进行hash160运算 **hash160运算** 就是先进行SHA256,再进行RMD160。 ```ruby bytes = [pub_key].pack("H*") # 转为16进制 hash160_val = Digest::RMD160.hexdige...

文章 桥接比特币生态系统:Ola Chain、Onis 和 Massive 的作用

...我们联系。 [网站](https://olavm.org/) \| [Twitter](https://twitter.com/ola_zkzkvm) \| [Discord](https://discord.com/invite/olavm2024) \| [Telegram](https://t.me/sin7y_labs) \| [文档](https://ola-foundation.gitbook.io/ola-documentations/) \| [白皮书](https://github.com/Sin7Y/olavm-whitep...

文章 Rust 算法精讲:用 DFS 玩转图遍历,从起点“一走到底”的秘密

... self.adj[dest].push(src); } fn dfs_util(&self, v: usize, visited: &mut HashSet, visit_order: &mut Vec) { // 1. Mark the current node as visited and record it. visited.insert(v); visit_order.push(v); // 2. Recur for all adjacent vertices (depth-...

文章 有限域上的椭圆曲线

...[Plot of y² = x³ + 3 \\\\pmod 23](https://img.learnblockchain.cn/2025/02/26/935a00_9b8594bdeb9b4eb580847f1d5ffcd6c0~mv2.png) 因为我们只允许整数输入(更具体地说,是有限域元素),所以我们不会获得平滑的图形。 并非每个 $x$ 值在我们解方程时都...