找到约 14 条结果

文章 2024-08-04 zk-insights Weekly

...翔实的一篇访谈。 - ### New Directions in Property Testing | Richard M. Karp Distinguished Lecture Property testing algorithms seek to determine whether an unknown massive object has some particular property of interest, or is "far" from having the property, while inspecting only a tiny p...

文章 零知识证明的力量:深入理解zk-SNARK

![](https://img.learnblockchain.cn/attachments/2023/11/tWfhEbUe6542eec5b0bfe.jpg) ## **介绍** zk-SNARK,即“零知识简洁非交互式知识论证”,使得一名验证者 能够确认一名证明者 拥有某些特定知识,这些知识被称为 ...

文章 Solidity学习(一)

...举等。 #### 2.1.1 布尔值 布尔值有两个取值:`true`和`false`。 和其它语言一样,solidity支持逻辑运算符`&&`、`||`、`!`。 ```solidity bool public _bool1 = !_bool; // 取非 bool public _bool2 = _bool && _bool1; // 与 bool public _bool3 = _bool || _bool1;...

文章 2024-09-15 zk-insights Weekly

## Highlights ### What Does It Mean To Know? 这是一篇探讨零知识中的知识的含义的博客,ZK-proofs 是加密货币最伟大的进步之一。但是,哲学家对 "知识" 的研究已有千年历史。在这篇文章中,我将比较哲学家对知识定义的 "合理真实信念" ...

文章 Arbitrum 和以太坊带来互操作性

...档](https://arbitrum.notion.site/Arbitrum-Interoperability-Campaign-18801a3f59f88055a7edd84485855775) 了解更多技术细节。 >- 原文链接: [medium.com/offchainlabs/...](https://medium.com/offchainlabs/bringing-interoperability-to-arbitrum-and-ethereum-ba97ea99d9ff) >- 登链社区 AI 助...

文章 Sui极简入门,部署你的第一个Sui合约

Sui 是一个专注于扩展和性能的区块链平台。它由Mysten Labs开发,旨在解决当前区块链面临的可扩展性和效率问题。Sui使用Move作为编程语言,专为区块链和智能合约设计,强调安全性和可验证性。 本文不涉及Move的语法讲解,仅...

文章 十道EVM谜题,学习以太坊原理与opcode!

...及到简单的 opcode 操作,如操作堆栈,操作内存,操作 calldata ,部署合约等等,更重要的是它只有十道题,即使是新手也可以在几个小时内解决谜题!让我们开始吧! 规则:输入恰当的 calldata 和 value,使得题目的 opcode 正确...

文章 BRC-20, from Newbie to be Awesome

![brc20-newbie-to-awesome.png](https://img.learnblockchain.cn/attachments/2024/01/hMnpZOSX65b3d03a92313.png) > **BRC-20 named B is completely different with ERC-20 named E**. It has a similar name, but what's the difference between B and E? B will bring about an electronic version of a text proto...

文章 如何利用delegatecall进行以太坊智能合约升级

...坏和能够继续使用。 Solidity有三种合约间的调用方式 call、delegatecall 和 callcode。其中,delegatecall可作为智能合约升级的一个较好的途径。关于合约间的调用方式 call、delegatecall 和 callcode,详见我另一篇文章,有兴趣的同学们可...

文章 PXN钓鱼网站

...) 前端十分简单就是一个mint的界面 ![1.png](https://img.learnblockchain.cn/attachments/2022/05/IFseoIFq6287526e1fa82.png!/scale/30) 点击mint,好家伙,直接要我的0.1个mint ![2.png](https://img.learnblockchain.cn/attachments/2022/05/7xYOScnl62875274b6d14.png!/sca...

文章 Arbitrum Orbit 开发工具 & zkSync 推出模块化开源框架 ZK Stack | Megascope

....png](https://img.learnblockchain.cn/attachments/2023/06/qQQ9zqx7649c04f779a3c.png) **出品:DODO Research** **作者:dt** **编辑:Lisa** $\,$ >**本周 #Megascope 涵盖以下内容**: $\,$ 1)Arbitrum 推出 Arbitrum Orbit L3 开发工具  2)zkSync 推出模块化...

问题 solidity 中调用外部合约如何拿到结构体

...中调用 被调合约: ``` // SPDX-License-Identifier: MIT pragma solidity 0.8.0; contract Deployed { Nft[] public a; struct Nft { uint256 a; uint256 b; } function setA(uint256 v) public { a.push(Nft({a: v, b: v})); } fun...

文章 Noir 的电路后端

...程语言允许使用熟悉的、类 Rust 的接口来编写自定义 zk-SNARK 程序。 zk-SNARK 的灵活性使得几乎图灵完备的程序可以被证明一次,并以亚线性时间复杂度进行验证,且证明者与 verifier 之间没有交互。开发这些程序(也称为电路)...

文章 智能合约语言 Solidity 教程系列12 - 库的使用

... Solidity 系列完整的文章列表请查看[分类-Solidity](https://learnblockchain.cn/categories/ethereum/Solidity/)。 ## 写在前面 Solidity 是[以太坊](https://learnblockchain.cn/2017/11/20/whatiseth/)智能合约编程语言,阅读本文前,你应该对以太坊、智能...