找到约 15 条结果

文章 Web3 全栈开发指南

> * 原文: https://dev.to/edge-and-node/the-complete-guide-to-full-stack-web3-development-4g74 > * 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > * 译者:[翻译小组](https://learnblockchain.cn/people/412) > * 校对:[Tiny 熊](https://learnblockchain.cn/people...

文章 多标量乘法(MSM)的Pippenger算法

... [https://www.notamonadtutorial.com/multiscalar-multiplication-strategies-and-challenges/](https://www.notamonadtutorial.com/multiscalar-multiplication-strategies-and-challenges/) ``` ####### tags: `msm` `zkp` `public` ``` >- 原文链接: [hackmd.io/lNOsNGikQgO0hL...](https://hackmd.io/lNOsNGi...

文章 只用 React 和 Chainbase API,如何创建一个自己的 NFT Gallery

...(https://chainbase.com/blog/article/create-your-own-nft-gallery-with-react-and-chainbase-api)** ## Introduction 非同质化代币(NFTs)在数字艺术和收藏品市场引起了革命,标志着我们对数字领域内所有权和价值的感知发生了重大变化。 本指南的目...

文章 Truffle 已支持 Solidity 智能合约中 的console.log

... 造成的权限错误。按照[这里](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm#using-a-node-version-manager-to-install-nodejs-and-npm)的说明,为操作系统下载一个 Node 版本管理器。 在安装了 Node.js 后,可以通过先全局卸载 Truffle,然后...

文章 人工智能与认知型非处方超人主义

...ites/joshwilson/2023/01/18/cosmetic-surgery-is-on-the-rise-with-technology-and-hollywood-is-at-the-centre-of-it/)允许“一键魔法”来重塑我们的外貌一样,像 ChatGPT 这样的 AI 工具可以按需增强记忆力、创造力和解决问题的能力。 我们一直在这样做,...

视频 6_Ordinal 协议与 BRC20 代币详解

...用 Unisat 钱包来部署和铸造 BRC20 代币和 NFT。 * **Commit and Reveal 模式:** * 视频讲解了如何使用 Commit and Reveal 模式来部署 BRC20 代币,以避免 Unisat 钱包的高额手续费。 * Commit 交易将铭刻数据发送到一个中间地址。 ...

文章 Paradigm CTF- BabyCrypto

...//learnblockchain.cn/article/369) 2. **[Elliptic curves over real numbers and the group law](https://andrea.corbellini.name/2015/05/17/elliptic-curve-cryptography-a-gentle-introduction/)** 3. **[Elliptic curves over finite fields and the discrete logarithm problem](https://andrea.corbellini.name/2...

文章 人们为什么投资比特币? - Pintu学院

...[Apa itu Bitcoin dan Blockchain?](https://learnblockchain.cn/article/19754-and-blockchain) 中解释的那样,帮助处理交易的比特币矿工会获得新的比特币奖励。 截至 2020 年 10 月,矿工目前每开采一个区块可获得 6.25 BTC 的奖励,这意味着每 10 分钟就...

文章 2025年夏季我们正在阅读的一些书籍

...## … 来自 Pyrs Carvolth,市场推广 #### Superforecasting: The Art and Science of Prediction, by Dan Gardner and Philip E. Tetlock(超预测:预测的艺术与科学,作者:Dan Gardner 和 Philip E. Tetlock) 我从一位前老板的推荐中得到了这本书,我仍然虔诚地...

文章 Rust编程语言之错误处理

...me = "vector_demo" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] [profile.release] panic = 'abort' ``` 例子:src/main.rs 文件 ```rust fn main() { // panic!("crash and burn...

文章 防水等级:对收藏家意味着什么

...表收藏家](https://blockapps.net/blog/the-watch-collectors-guide-to-brands-and-models/)来说,理解防水等级至关重要,原因如下: 1. **保存**:了解你腕表的极限有助于防止水损坏,从而保持其价值和功能。 2. **多功能性**:较高的防水等级通常...

文章 BlockThreat - 2025年第24周

...20,000 个恶意 IP 和域名被删除](https://www.interpol.int/en/News-and-Events/News/2025/20-000-malicious-IPs-and-domains-taken-down-in-INTERPOL-infostealer-crackdown)**。 - **[泰国警方逮捕了一名涉嫌 610 万美元比特币欺诈案的中国嫌疑人](https://decrypt.co/325028/tha...

文章 Rust 中的所有权是什么?深入了解安全且快速的内存管理

... String ``` 你也可以同时转移和返回所有权: ``` fn takes_and_returns(s: String) -> String { s } let s2 = String::from("hello"); let s3 = takes_and_returns(s2); // s2 被移动,s3 现在拥有它 ``` ### 如果你想重用一个值怎么办? 有时,你希望函数**使用...

文章 深入理解 Uniswap v2 智能合约

...…(p+n)) at address keccak256(0xff . this . s . keccak256(mem[p…(p+n))) and send v wei and return the new address, where 0xff is a 1 byte value, this is the current contract’s address as a 20 byte value and s is a big-endian 256-bit value; returns 0 on error 源码中调用`create2`方法:...

文章 Hack Replay - Fei Protocol

...his method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } ``` 从`isContract`...