找到约 15 条结果

问题 用户给A合约转账继续转账给B合约问题

大概逻辑是:用户调用函数转账给A合约,函数内继续把余额转账给B合约。 A合约代码: ``` // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; contract test2{ uint public value; address public seller; address public test1Adder; constructor(address ...

文章 How to know if an address is blacklisted on TRON?

> Usually when you trade Tether USDT on TRON blockchain, you will need to know if the target address is blacklisted. Because blacklisted address could NOT transfer USDT out unless it is removed from the Tether's black address list. And even more the USDT in blacklisted address has the possibility ...

文章 Rethink about DAO and introduce eonDAO

## Written in the front Transforming corporate governance through DAO’s thinking. Through a very large ecological construction and governance process To prove that the social practice of DAO’s philosophical thinking is reliable. ## What is NO.1 DAO? As a decentralized autonomous organ...

文章 Rust智能指针:解锁内存管理的进阶之道

...入手,详细介绍了Box在堆内存分配中的作用、Deref和Drop trait的实现原理、引用计数指针Rc的多重所有权机制,以及RefCell的内部可变性模式。文章还探讨了如何通过结合Rc和RefCell实现多重所有权的可变数据,并分析了循环引用可能...

文章 密码学基础:环论(Rings)

...到的第一篇文章,我强烈建议你从[系列的开头](https://learnblockchain.cn/article/10814)开始阅读。 这个系列已经是一段相当漫长的旅程——我们快要结束它了。几个月前,我们开始讨论[_群_](https://learnblockchain.cn/article/10814),然后通...

文章 零知识证明(一) - 零知识证明的背景

...永的区块链技术活动,安永发布了基于零知识证明的Nightfall框架。因此决定把零知识证明这个加密体系中的硬核知识给全方位的梳理一遍,就有了此零知识证明系列文章。 ## 零知识证明的一则小故事 零知识证明(也叫做最...

文章 零时科技 || IonicMoney 攻击事件分析

![登链封面(事件).jpg](https://img.learnblockchain.cn/attachments/2025/02/vTE354hA67a57796a0cb1.jpg) # **背景介绍** 近期,我们检测到 Mode Chain 上针对 **Ionic Money** 的一系列攻击: https\://explorer.mode.network/tx/0x37e53b15cb7f298bd8c45fcbbd914ba90feb3946...

文章 COSMOS的IBC规范ICS003-connection

...下来. 该文库我会不断更新, 如果喜欢的话麻烦点一下`star`. 原文地址: https://github.com/Pencil-Yao/YBlog/blob/master/ics-%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/ics003-connection.md # [ics0003-connection](https://github.com/cosmos/ics/tree/master/spec/ics-003-connection-semanti...

文章 入门 Sui Move 开发:3. Sui Move 语法和设计模式

在第一节[入门 Sui Move 开发:1. 环境安装](https://learnblockchain.cn/article/9814) 中我们已经成功安装了 `Sui Move` 开发环境及开发 IDE。 在第二节[# 入门 Sui Move 开发:2. 常用命令、编写并发布 Hello World 合约](https://learnblockchain.cn/articl...

文章 开发者如何玩转 Aave 闪电贷

我们在之前的文章中提到了[ Aave 、Dydx 和 uniswap 这些闪电贷的区别](https://mp.weixin.qq.com/s?__biz=MzU0ODk1MTE1MA==&mid=2247485841&idx=2&sn=ff0a914804d94696f9facad563dce3a3&scene=21#wechat_redirect)。今天我们就尝试在 Aave 上发起一笔闪电贷,上车! Aave ...

文章 Solana NFT 市场报告 - 2023年11月

![](https://img.learnblockchain.cn/2025/06/12/2a-2.jpg)![](https://img.learnblockchain.cn/2025/06/12/3a-1.jpg)![](https://img.learnblockchain.cn/2025/06/12/4a-1.jpg)![](https://img.learnblockchain.cn/2025/06/12/5a.jpg)![](https://img.learnblockchain.cn/2025/06/12/6a.jpg)![](https://img.learnblockcha...

文章 BLS签名、BLS12-381椭圆曲线以及基于配对签名方案的剖析

![](https://img.learnblockchain.cn/2025/02/19/1wrWAHrE9-iio3BYokGWNYQ.png) BLS 签名,BLS12–381 椭圆曲线及基于配对的签名方案结构。 在[上一篇文章](https://learnblockchain.cn/article/11043)中,我们讨论了第一类数字签名方案,具体来说是基于椭圆曲线...

文章 像中心化交易所一样,拉取uniswap v3的市场行情(市场深度)

`@uniswap/v3-sdk`里面的pool对象,提供了`getOutputAmount`函数,但是要求pool里面包含tick,这样我们想知道给定的输入能获得多少输出,就不需要提交到节点执行了,自己本机的nodejs就能运算出来。大大降低节点的压力。况且,`QuoterV2.sol...

文章 ERC-2612: 无GAS转账

## 实战例子 当时看到ARB空投泄漏的私钥第一反应就是看下ARB是否可以使用 `permit`函数,等黑客领到币之后直接转走。后面再推特上看到这个大佬使用该方法帮助粉丝抢回一定的币。 1. [0xAA_Science 通过Arb代币的permit授权大战...