找到约 15 条结果

文章 详解Compound治理

> * 原文:https://soliditydeveloper.com/comp-governance > * 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > * 译者:[翻译小组](https://learnblockchain.cn/people/412) > * 校对:[Tiny 熊](https://learnblockchain.cn/people/15) > * 本文永久链接:[learn...

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

文章 闪电网络赋能生活:闪电网络如何以及将如何与Web集成

...网络 Web 终端](https://terminal.lightning.engineering/#/031015a7839468a3c266d662d5bb21ea4cea24226936e2864a7ca4f2c3939836e0) 是一个很好的例子,说明这在实践中是什么样的。该终端基本上是高级用户节点的远程控制,他们可以在任何地方访问它。 ![](http...

文章 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 年的历史了,但它仍然没有对其安全性的正式证明。多年来,它做得很好,并且通常设法提高其...

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

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

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

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

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

文章 DAO 的经典著作

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

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

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

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

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

问题 调用授权contract.methods.approve报错e.replace is not a function

百度没有找到关于授权的这个报错 ![1667897468753.jpg](https://img.learnblockchain.cn/attachments/2022/11/eqrcr7SS636a1883c646c.jpg) ![1667897434462.jpg](https://img.learnblockchain.cn/attachments/2022/11/M9KgQJmm636a188b09897.jpg)

问题 A账户调用B合约,B合约使用C账户的原生代币去交互

A账户调用B合约,B合约使用C账户的原生代币去交互, 这种可以实现吗 如果可以实现, 那么我现在很疑惑B合约是怎么得到C账户的控制权; 难道是A账户提前链下创建C账户的签名,传递给B合约内部, 大佬们是否有类似的文章供参考

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

> _作者:ZmnSCPxj_ > > _来源: [https://delvingbitcoin.org/t/superscalar-laddered-timeout-tree-structured-decker-wattenhofer-factories/1143](https://delvingbitcoin.org/t/superscalar-laddered-timeout-tree-structured-decker-wattenhofer-factories/1143)_ ## 引言 我们这样定义 LSP(闪电...

文章 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即将被丢弃,建议...