找到约 14 条结果

问题 solidity 调用 pancakeSwap v3交易的问题

![03da9918b6ff66b09f8e93d28da64317.png](https://img.learnblockchain.cn/attachments/2024/01/xcuEI3ih659a6abce4ec4.png) 图1:直接在pancake测试网网页交易,可以上链完成交易 图2:是网上下载的swap的demo 图3:remix上面调用合约的传参 想要做的功能就是 CHEN...

文章 非对称加密技术- RSA算法数学原理分析

...是一知半解,今天就来分析下经典的非对称加密算法 - RSA算法。 通过本文的分析,可以更好的理解非对称加密原理,可以让我们更好的使用非对称加密技术。 题外话: 本博客一直有打算写一系列文章通俗的密码学,昨天给...

文章 现代DEX - Uniswap V4 是如何构建的

![](https://img.learnblockchain.cn/2025/03/09/62.jpg) ## 简介 本文标志着一个关于现代 DEX 实现系列的开始。这些文章的目标(与之前的“借贷”系列相同)是为 DeFi 开发者和审计人员提供对现代 DeFi 实现的全面回顾,包括所使用的算法...

文章 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 ...

文章 Reach 主题专栏 | View & Event

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

文章 uniswap基本概念

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

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

```go // Copyright 2018 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, ...

问题 本地搭建的以太坊私链,创世区块中设置好难度值a,以后挖出的每一区块的难度值都是a吗?可以更改吗?

问题 transferFrom是不是转不了被授权的地址里代币

归集代币 ``` 假设:A账号有10000个token代币,B账号没有token代币,C账号也没有token代币! 那么:A账号 委托 B账号 转给C账号 100个token代币 怎么来实现呢? 首先:A账号 和 B账号建立一种委托关联,登录A账户执行approve(b,100)方法结...

用户 Aa

用户 A小鈺子A

开发工程师

用户 0x29a99F7Fe080F72223dAd48D5E1E86670a984326

文章 【以太坊源码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) 是一种通常用于编译和静态分析的`表示`。它要求每个变量只分配一次并且在使用之前就进行定义,具体...