找到约 14 条结果

文章 What is and How to get the “FIRST” txn of crypto wallet address?

If you are a data analyst on blockchain or an AML expert on crypto, or you want to determine the risk of trading, this is a right artical for you, and please read CAREFULLY, and welcome feedback. ## Overview Let’s have a quick glanch on the transaction count of each blockchain. There are [9...

文章 DCF&DCT tokens: The Tragedy of the Forced Investment Incident(2)

# Root Cause - The DCF token’s transfer mechanism enforces a forced investment. When the DCF token is sent to the the USDT-DCF liquidity pool, 5% of tokens are automatically swapped for USDT within the same pool and then added as liquidity to the USDT-DCT pool. This action triggers a swap in th...

文章 SuperScalar:筑梯法超时树结构的 Decker-Wattenhofer 通道工厂

...能依然能通过,但更复杂的变更,比如 “限制条款(covenant)”,可能永远不会获得共识)。 * 当 LSP 必须重新分配资金的时候,我们必须能够对付少量终端用户离线的情形。 * 随着共享同一个 UTXO 的用户数量增加,出现...

文章 Substrate 入门(3)- 具备状态的链

Substrate入门专题,目前有以下几篇文章: * [环境配置与编译](https://learnblockchain.cn/article/273) * [运行与调试](https://learnblockchain.cn/2019/12/21/substrate-run-debug/) * [具备状态的链](https://learnblockchain.cn/2019/12/22/substrate-state/) * [项目结构]...

文章 基于Rabin方法的可证明安全公钥加密

![](https://img.learnblockchain.cn/2025/04/24/1rslcQzeBUphL2IrMjZeKjQ.png) ## 使用 Rabin 方法的可证明安全公钥加密 嗯,RSA 公钥加密方法已经有近 50 年的历史了,但它仍然没有对其安全性的正式证明。多年来,它做得很好,并且通常设法提高其...

文章 多项式、快速傅里叶变换、FFT

## 快速傅里叶变换(FFT) 快速傅里叶变换(Fast Fourier Transform,简称 FFT)的高效算法主要由詹姆斯・库利(James W. Cooley)和约翰・图基(John W. Tukey)在 1965 年提出。他们在论文《机器计算傅里叶级数的一种算法》中,首次系统...

文章 Web3系列教程之入门篇---9. NFT集合

...你自己的NFT系列的时候了 - `Crypto Devs`。 ![](https://hicoldcat.oss-cn-hangzhou.aliyuncs.com/img/20220710151326.png) ## 要求 - 应该只存在 20 个 Crypto Dev NFT,并且每个都应该是唯一的。 - 用户应该能够通过一笔交易仅[铸造 1 个 NFT](https://learn...

文章 适应性、负载响应费市场在Solana上的应用 - 一种基于LRU的严格控制理论框架

*特别感谢[Terry](https://x.com/0xtaetaehoho)和[Fikunmi](https://x.com/fikunmi_ap)提前阅读本文的早期版本并提供反馈。* ## 引言 Solana 是一个高吞吐量区块链,旨在保持完整的容量利用率,而不需要人为限制区块空间。与依赖动态基本费用模...

文章 DAO 的经典著作

什么是(以及不是)DAO?为什么DAO重要?DAO如何融入web3、加密货币、创作者经济、未来工作及其他许多领域? 受到我们今年早些时候的 [NFT Canon](https://future.com/nft-canon/) 以及最初的 [Crypto Canon](https://a16zcrypto.com/posts/article/crypto...

文章 5.轻松入门Sui Move: Debug、单元测试和命令行工具

...跟sources文件夹同级别的tests文件夹内。 ```rust public fun a_greater_than_b(a: u64, b: u64): bool{ a >= b } #[test] public fun test_a_greater_than_b() { let a = 10; let b = 12; assert!(!a_greater_than_b(a, b), 0); } ``` assert即将被丢弃,建议...

问题 代码网上扒的,在remix部署后写入时现"Gas estimation failed,gas required exceeds allowance (8000000) or always failing transaction

``` pragma solidity ^0.4.26; contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); function Ownable() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == address(72462...

文章 以太坊智能合约创建代码

...565b600055603d565b600060208284031215603657600080fd5b5051919050565b603f80604a6000396000f3fe6080604052600080fdfea26469706673582212204a131c1478e0e7bb29267fd8f6d38a660b40a25888982bd6618b720d4498b6b464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000001 ``` 本文解释...

文章 通道可升级性将如何提升跨链互操作性

![](https://img.learnblockchain.cn/2025/03/11/164F1x2uofA6nSq21UbS1Lg.jpeg) 在 [IBC(跨区块链通信)协议](https://ibcprotocol.org/) 的传输层中,**渠道(channels)**是核心组成部分。渠道充当两条不同链上两个 **应用模块(application modules)** 之间传输...

文章 Go语言编译原理

...键字、标识符、常量、运算符等。 示例代码: ```go package main import "fmt" func main() { fmt.Println("Hello, World!") } ``` ### 语法分析 语法分析器负责将词法分析器产生的token序列转换成抽象语法树(AST)。在这个过程中,...