Quorum联盟链开发入门

资讯 2024-06-24 阅读:51 评论:0
Quorum是一个许可制的以太坊联盟区块链实现,包含了金融巨头JP摩根开发的一个GETH分支版本,可以在节点之间实现私有和快速的交易。Quorum为保证隐私对节点之间的私有交易进行了专门的设计,它使用Raft和Istanbul算法实现共识,...
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

Quorum是一个许可制的以太坊联盟区块链实现,包含了金融巨头JP摩根开发的一个GETH分支版本,可以在节点之间实现私有和快速的交易。Quorum为保证隐私对节点之间的私有交易进行了专门的设计,它使用Raft和Istanbul算法实现共识,使用Tessara和Constellation实现节点数据的加密和共享。在Quorum网络中交易不需要付费,交易的验证是由投票共识算法完成的。总体上来讲Quorum类似于以太坊,只是它更关注的企业环境下的交易隐私性与可控性,因此每个节点都需要Quorum 网管生成的密钥对。

Quorum is a licensed ETA block chain that includes a version of the GETH branch developed by the financial giant JP Morgan, which allows private and fast transactions between nodes. Quorum has designed private transactions between nodes specifically to ensure privacy, using the Raft and Istanbul algorithms to achieve consensus, encryption and sharing of node data using Tessara and Constellation. There is no payment for transactions in the Quorum network, and the authentication of transactions is done by the voting consensus algorithm. In general, Quorum is similar to Quorum, but it is only concerned with the privacy and controlability of transactions in an enterprise environment, so each node requires a key pair generated by the Quorum network.

学习Quorum区块链的最好的办法,就是运行官方提供的7节点示例。虽然有多种方法来搭建7个节点,我还是建议使用docker,因为这应该是最简单的办法。下面我使用Google云的Ubuntu 8.04。如果你在本地机器或AWS上有ubuntu,也是一样的。请先确认docker和docker-compose已经安装就绪。

The best way to learn about the Quorum block chain is to run the official seven-point example. Although there are many ways to build the seven nodes, I suggest using docker because it should be the simplest. Next, I use the Google cloud Ubuntu 8.04. The same is true if you have ubuntu on the local machine or AWS. Make sure that docker and docker-compose are installed.

在下面的演示中,我们要搭建7个Quorum节点,然后考察节点之间的私有交易是如何运作的。

In the next demonstration, we will build seven Quorum nodes and then look at how private transactions between nodes work.

运行下面的命令来搭建全部7个节点:

Run the following command to build all seven nodes:

代码语言:javascript
复制

默认情况下,使用Tessera交易管理器和Istanbul BTF共识来搭建Quorum网络。因此为了修改为Raft共识算法,我们设置环境变量,然后启动7个节点的后台运行。

By default, use the Tessera trade manager and the Istanbul BTF consensus to set up the Quorum network. So, to change to the Raft consensus algorithm, we set the environmental variables and then start backstage operation of the seven nodes.

你可以运行来查看每个容器的运行状态以及其ID。需要稍等一会儿以便容器启动就绪。

You can run to see the active state of each container and its ID.

如果要快速掌握以太坊区块链开发,推荐汇智网的在线互动课程: java以太坊开发详解 | python以太坊开发详解 | php以太坊开发详解 | C#以太坊开发详解 以太坊智能合约与DApp开发入门 | 以太坊电商DApp实战 | ERC721以太坊通证实战

要在节点上部署智能合约,我们需要运行下面的命令进入该节点的geth控制台:

To deploy a smart contract on a node, we need to run the following command to enter the node's geth console:

命令中的是节点1的容器ID。上面的命令进入节点1的geth控制台,现在我们可以在控制台中进行操作。

The command is the container ID of node 1. The order is entered into the node node node node node node node.

下面我们要运行部署合约的javascript脚本。如果你查看示例代码目录,可以看到在quorum-examples/examples/7nodes目录下有和 文件。在geth控制台运行:

Here we run the deployment contract's javascript script. If you look at the sample code directory, you can see the files under the quorum-examples/examples/7nodes directory. Run at the geth console:

命令执行需要稍等一会儿。一旦部署成功,上面的命令将返回合约地址,记得拷贝下来或者抄到纸上。上述脚本在节点1上部署了一个简单的状态值为42的存储合约,交易是节点1和节点7之间私有的,这意味着其他节点将看不到这个状态值。

The command will be executed for a while. Once deployed, the order will be returned to the contract address, copy it down or copy it on paper. The above script deploys a storage contract with a simple status value of 42 on node 1, the transaction being private between node 1 and node 7, which means that no other node will see the status value.

要验证这一点,我们可以开启节点2的geth终端,使用ABI和合约地址创建合约实例:

To verify this, we can open the geth terminal at No. 2 and create an example of a contract using ABI and the contract address:

果然。

As a matter of fact.

现在进入节点7的geth终端,同样使用ABI和合约地址创建合约实例,然后尝试读取状态值:

Now enter the geth terminal at no. 7 and also create an example of a contract using ABI and the contract address, and then try to read the status value:

和预期一样。

Same as expected.

现在我们尝试在节点7和其他任选节点之间创建一个新的私有交易,调用合约的方法来修改状态值。这需要使用节点的公钥,可以在目录下找到全部7个节点的对应公钥。

Now we try to create a new private transaction between nodes 7 and other optional nodes by calling the contract to modify the status value. This requires using the public key of the node, and you can find the corresponding public key of all seven nodes under the directory.

上面的脚本将设置合约状态值为4,并且仅对指定的节点保持可见。你可以打开这些指定节点 的geth终端查看合约状态值,你看到的应该是4。

The script above will set a contractual status value of 4 and will only be visible for the specified nodes. You can open the geth terminal of these specified nodes to see the contractual status value.


原文:Quorum企业以太坊环境搭建教程 - 汇智网

Original: Quorum Enterprises to teach in the neighborhood environment -

(adsbygoogle=window.adsbygoogle || []).push({});

美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
文字格式和图片示例

注册有任何问题请添加 微信:MVIP619 拉你进入群

弹窗与图片大小一致 文章转载注明

分享:

扫一扫在手机阅读、分享本文

发表评论
平台列表
美化布局示例

欧易(OKX)

  全球官网 大陆官网

币安(Binance)

  官网

火币(HTX)

  官网

Gate.io

  官网

Bitget

  官网

deepcoin

  官网
热门文章
  • 0.00015693个比特币等于多少人民币/美金

    0.00015693个比特币等于多少人民币/美金
    0.000 15693比特币等于多少人民币?根据比特币对人民币的最新汇率,0.000 15693比特币等于10.6 1678529美元/76.86554996人民币。比特币(BTC)【比特币价格翻倍】美元(USDT)人民币(CNY)0.000/克洛克-0/5693【数字货币矿机】10.6 167852976.8655254996比特币对人民币的最新汇率为:489,807.72 CNY(1比特币= 489,807.72人民币)(1美元=7.24人民币)(0.00015693 U...
  • 0.00003374个比特币等于多少人民币/美金

    0.00003374个比特币等于多少人民币/美金
    0.00003374比特币等于多少人民币?根据比特币对人民币的最新汇率,0.00003374比特币等于2.2826 1222美元/16.5261124728人民币。比特币(BTC)美元(USDT)人民币(CNY)0.00003374克洛克-0/22216.5261124728比特币对人民币的最新汇率为:489807.72 CNY(1比特币=489807.72人民币)(1美元=7.24人民币)(0.00003374USDT=0.0002442776 CNY)。汇率更新于2024...
  • 2000年美国GDP占世界的304%,中国GDP仅占35%,现在呢?

    2000年美国GDP占世界的304%,中国GDP仅占35%,现在呢?
    GDP作为全球公认的实力基准,就像是一个大国实力的代言人,它是布雷顿森林体系下全球团结的声音。它不仅仅是数字的累积,更是大国综合实力的人格化,默默诉说着每个国家的辉煌与荣耀。虽然GDP不是衡量一个国家综合实力的唯一标准,但无疑是最关键的指标之一。作为一面镜子,它反映了国家的经济实力和发展水平,是国家综合实力的重要体现,不容忽视。2000年,中国GDP迈过/克洛克-0/万亿美元的重要门槛,达到/克洛克-0/。2/克洛克-0/万亿美元(折合人民币7。7万亿元)。然而,在全球经济的...
  • A股利好!证监会连开三场座谈会!五部门发文 事关元宇宙…周末影响一周市场的十大消息(新股+点评)

    A股利好!证监会连开三场座谈会!五部门发文 事关元宇宙…周末影响一周市场的十大消息(新股+点评)
    1   证监会连开三场座谈会!将研究出台更多务实、管用的政策举措 The SEC will hold three talks! More practical and practical policy initiatives will be developed.   近日,中国证监会就活跃资本市场、提振投资者信心召开三场座谈会,分别听取专家学者和投资者意...
  • 1929经济大萧条或许即将重演?

    1929经济大萧条或许即将重演?
    人类似乎陷入了一个历史悖论,即我们总是重复同样的错误,无法真正从过去的错误中吸取教训。近年来,我们对世界各地接连不断的挑战和危机深感不安。20 19年突如其来的疫情,乌克兰的战火硝烟,欧洲的天然气供应危机以及全球少数国家的饥荒,所有这些问题都像洪水一样,一个接一个地涌来。如果你今天感到心情沉重,不要失去希望,因为明天可能会带来更严峻的挑战。首先,让我们深入讨论名为1929大萧条的时期。这场大萧条实际上是指从1929到1933的一场影响深远的经济危机。这场危机首先起源于美国,然...
标签列表