找到约 14 条结果

文章 零知识证明:综合资源

...ramming-languages) 5. [库](#libraries) 6. [Layer1 和 Layer2](#layer1-and-layer2) 7. [谜题](#puzzles) 8. [书籍](#books) 10. [论文](#papers) 11. [应用和用例](#application-and-use-cases) 12. [开源项目](#opensource-projects) 13. [工具](#tools) 14. [推文](#tweets) ...

文章 move入门之基础概念

..."...", subdir = "...", rev = "..." }`. # Revision can be a branch, a tag, and a commit hash. # MyRemotePackage = { git = "https://some.remote/host.git", subdir = "remote/path", rev = "main" } # For local dependencies use `local = path`. Path is relative to the package root # Local = { local = ...

文章 如何使用 NFTScan NFT API 在 Linea 网络上开发 Web3 应用

...ollectionswallet_address = "0x02ac25b565c053bc1e7aa2a1499622512af375f1" # Constructing the complete API endpoint URLendpoint = f"{base_url}/collections/own/{wallet_address}" # Making a GET request to retrieve NFT collections informationresponse = requests.get(endpoint) # Checking the response sta...

文章 加密货币中的代币经济学:理解代币速度及其影响

...。根据 [MultiCoin Capital](https://multicoin.capital/2017/12/08/understanding-token-velocity/),该指标可以成就或毁掉代币的长期价值主张,影响从价格稳定到效用采用的方方面面。 考虑比特币 4.1% 的速度、以太坊 3.6% 的速度和瑞波币 1.4% 的速度...

文章 椭圆曲线密码学 入门篇

翻译一篇来自 [ANDREA CORBELLINI](https://andrea.corbellini.name/) 经典的密码学文章: 原文:https://andrea.corbellini.name/2015/05/17/elliptic-curve-cryptography-a-gentle-introduction/ 以下是原文翻译: 了解公钥密码学的人可能已经听说过**ECC**、**ECDH*...

文章 Rust编程语言之编写自动化测试

...if value < 1 || value > 100 { panic!("Guess value must be between 1 and 100, got {}.", value) } Guess {value} } } #[cfg(test)] mod tests { use super::*; #[test] #[should_panic] fn greater_than_100() { Guess::new(200); } } ``` ### 让 should...

文章 克劳斯 安息, Schnorr 签名方案永存

...明** ](https://asecuritysite.com/zero) 和: ``` **EdDSA, Ed25519 and Ed448** ``` [**EdDSA, Ed25519 and Ed448** ](https://asecuritysite.com/eddsa) ### 参考文献 \[1\]. C. P. Schnorr. Efficient signature generation by smart cards(通过智能卡高效生成签名). Journal ...

文章 Paradigm CTF - JOP

...0) { bytes4 nextFunc; assembly{ nextFunc := and(0xffffffff,and(0xffffffffffffffff,sload(0x0b))) //跳转时,nextFunc函数的参数为msg.value, 返回位点为0x1d39 jump(nextFunc) } } } ``` 下面我们再进一步跳转...

文章 Web3商务时代的在线市场

...ttps://www.reddit.com/r/TaskRabbit/comments/s4jdjm/just_noticed_that_trust_and_support_fee_is_now_40/) [买家接受从在线市场平台购买商品的高额费用](https://www.digitalcommerce360.com/2022/01/13/frequent-online-shoppers-make-half-their-web-purchases-on-marketplaces/#:~:text=The%209...

文章 WeId 链上创建与本地存储的完整闭环 | Rust 学习笔记(七)

... .text(); response } } /// multi error handle: /// https://my.oschina.net/jmjoy/blog/3190024 #[derive(Error, Debug)] pub enum GenerateWeIdError { #[error("req error")] RequestError(#[from] reqwest::Error), #[error("parse error")] ParseError(#...

文章 理解加密货币质押:NFT质押综合指南

...产](https://www.coinbase.com/learn/advanced-trading/what-is-nft-staking-and-how-does-it-work),为其所有者产生定期回报。 当我们深入研究本指南时,我们将探讨 NFT 质押的复杂机制,检查其潜在的好处和相关的风险。从市场波动问题到平台安全考...

文章 如何理解Uniswap v3 流动性头寸的价值

> - 原文链接:https://lambert-guillaume.medium.com/understanding-the-value-of-uniswap-v3-liquidity-positions-cdaaee127fe7 > - 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > - 译者:[songmint](https://learnblockchain.cn/people/13263) 校对:[Tiny 熊](https://l...

文章 使用 Anchor 和 Web3.js 转移 SPL Token

... Program。 我们的程序将只有两个函数: - 一个 `create_and_mint_token` 函数,用于创建 mint 账户,并通过 CPI 向 Token Program 将初始供应量铸造到指定的关联 Token 账户 (ATA)。 - 一个 `transfer_tokens` 函数,用于通过 CPI 向 Token Program 将 ...

文章 ECDSA——比特币和以太坊的信任基础设施的核心

...Alice可以解除盲化。该方法是基于奥列格·安德烈夫(Oleg Andreev)的比特币盲签名方法。 首先,Alice生成a, b, c, d的四个随机值,Bob生成p, q的两个随机值,然后计算: ![8.png](https://img.learnblockchain.cn/attachments/2022/05/E94nrSyV6278bcc9e7f23...