找到约 15 条结果

文章 uniswap基本概念

# 什么是Uniswap? uniswap是一个进行**自动化做市商**的项目,该项目的特点是公平,去中心,抗审查,安全。并且uniswap并不会存在特殊群体,参与项目的每个人都是平等的不论你是LP还是Trader。 V1的特点: - 支持不同的ERC20token...

文章 Reach 主题专栏 | View & Event

本文由 Reach X 1Circle Winter Camp 的 Dark Key 队伍编写 # View & Event `View`和`Event`都在应用初始化阶段定义。 ## View 当您希望程序外部的用户(非参与者)了解程序的当前值时,您可以使用视图 `View` 。 例如,NFT 程序会将当前...

文章 SUI CLI最全命令详解3——Keytool之密钥对类 @SUI Move开发必知必会

...`SUI`版本及`keytool`的命令清单。 ### 2.1 命令清单 ```bash $ sui --version sui 1.27.0-b6887716b4da $ sui keytool -h Sui keystore tool Usage: sui keytool [OPTIONS] Commands: update-alias Update an old alias to a new one. If a new alias is ...

文章 零知识证明 - PLONK电路原理

...要重新初始设置。PLONK算法,只需要一次初始设置(Universal Trusted Setup)。初始设置的参数可以升级,而且在电路大小不超过范围的情况下,不需要重新设置。 理解PLONK算法,可以先从PLONK的电路开始。熟悉Groth16算法的小伙伴...

文章 【以太坊源码go-ethereum阅读】accounts.go

```go// Copyright 2017 The go-ethereum Authors // This file is part of the go-ethereum library. // // The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, e...

文章 07.Slither中间语言数据结构分析-node对象

...于支配边界的部分参考互联网中的内容。 # 1. irs与irs_ssa的区别 [Static Single Assignment (SSA)](https://learnblockchain.cn/article/6083) 是一种通常用于编译和静态分析的`表示`。它要求每个变量只分配一次并且在使用之前就进行定义,具体...

文章 【超硬核】逐个字节分析Ordinal的铸造交易

作者:团长 [@quentangle_](https://twitter.com/quentangle_) --- 通过本文我们可以清楚的知道自己的的铭文在哪里,以及它是以什么样的形式构建的。 我们随便在Ordinals的浏览器上找到一个Inscription交易,比如`2c69dcbfed33a02154e45285db2494a...

文章 In-depth Analysis of the TON FunC Console Tool Code: Efficient Data Printing and Formatting

### Abstract: The Open Network (TON) is a blockchain platform designed to enable the creation of decentralized applications and smart contracts. Smart contracts on TON are written in the FunC language, which provides a robust set of tools for developers. One such tool is the console, which is ess...

文章 Decoding the Address Utility Library for TON Blockchain: A Deep Dive into Func Language Programming

> The TON (The Open Network) blockchain is a decentralized network designed to provide high-speed, scalable, and secure transaction processing. Smart contracts play a pivotal role within the TON blockchain, with the Func language being the primary language for writing these contracts. This article d...

文章 论文评审 - 决策树预测和准确性的零知识证明

...议借用了许多来自零知识证明领域的高级技术,应用于RAM模型中的计算,但在非黑盒方式上进行了适应,以适合决策树的设置。 - 该协议将决策树预测转换为一个小电路,大小为 $O(d + h)$,其中 $d$ 是特征的数量,$h$ 是树的高度...

文章 Rapidsnark 的 GPU 加速

## 概括: 在这篇博文中,我们将介绍 [rapidsnark](https://github.com/iden3/rapidsnark.git) 的 GPU 加速的动机、背景和性能,其性能大约是 CPU 版本的 **4 倍**。 ![](https://img.learnblockchain.cn/2025/04/26/1kCCOs0VH2a2fIgaayk-euw.jpeg) ## 背景和动机 零知...

问题 对uniswap逻辑有点疑惑

假设有A与B的交易对,如果A与B发生交易,A与C和B与C的交易对,会受到影响嘛?如果会受到影响,那意思就是A与B、A与C里的A是在池子里公用的,当用A换B时,池子里A变多,而C没有变化,那A与C交易对的K不变,C价格还会下降了?

文章 2024-09-22 zk-insights Weekly

...ghlights ### Friends don’t let friends reuse nonces This blog post tells a cautionary tale of what can go wrong when implementing a relatively basic type of cryptography: a bidirectional encrypted channel, such as an encrypted voice call or encrypted chat. We’ll explore how more subtle issues of...

文章 Unlocking the Future of Blockchain: An In-Depth Analysis of TVM’s Cell and Copy-on-Write Mechanism

> In the rapidly evolving landscape of blockchain technology, smart contracts have emerged as a cornerstone of innovation, enabling the automation of transactions and the creation of decentralized applications. As the industry grows, the focus on the security, performance, and scalability of smart c...

文章 Hardhat 入门(一)

...续朋友一起进步、学习,欢迎一起探讨。 在开始安装 hardhat 之前,需要有 node、yarn 环境,笔者使用的 nvm 工具管理多个 node 版本。 ## 初始化项目 1、新建文件夹“hardhat-demo”,并使用 vs code 打开,如图: ![image.png](https:...