找到约 14 条结果

文章 20分钟极速学完Hardhat全部内容

... Check whatever you need clean Clears the cache and deletes all artifacts compile Compiles the entire project, building all artifacts console Opens a hardhat console coverage Generates a code coverage report for tests fl...

文章 比特币的学术谱系

...深刻的理解。(请参见 Arvind Narayanan 等人所著的 _Bitcoin and Cryptocurrency Technologies_ 作为入门读物36。)比特币的学术史作为一项案例,也展示了学术界人士、外部研究人员和相关从业人士之间的关系、教育了我们三方可以如何互相...

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

文章 智能合约审计-重入漏洞

...ue(amountToWithdraw)(""); // At this point, the caller's code is executed, and can call withdrawBalance again require(success); userBalances[msg.sender] = 0; } ``` 由于用户的余额直到函数的最后才设置为 0,第二次(和以后的)调用仍然会成功,并且会一...

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

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

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

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

文章 关于发行政策的实用终局 - 权益证明 / 经济学

由 [Anders Elowsson](https://x.com/weboftrees) 撰写 **感谢 [Vitalik Buterin](https://x.com/VitalikButerin), [Caspar Schwarz-Schilling](https://x.com/casparschwa) 和 [Ansgar Dietrich](https://x.com/adietrichs) 提供的反馈。** ## 1. 简介 本文提出了一种关于发行政策的实用...

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

文章 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,然后...

文章 多标量乘法(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...

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

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

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

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

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

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

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