ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

Hyperledger Besu(1)“系统框架”

2021-08-01 15:59:17  阅读:317  来源: 互联网

标签:Ethereum 框架 以太 API Hyperledger 区块 data Besu


1. 定义

是一个运行在以太坊公网上的java语言的以太坊客户端,旨在对公共和私有许可网络用例进行企业友好。它也可以在 Rinkeby、Ropsten 和 Görli 等测试网络上运行。
在这里插入图片描述

1.1 功能

  • 在以太坊区块链中处理交易的执行环境
  • 用于持久化与事务执行相关的数据的存储
  • 点对点 (P2P) 网络,用于与网络上的其他以太坊节点通信以同步状态
  • 应用程序开发人员与区块链交互的 API

1.2 实现了规范 企业以太坊联盟 EEA(Enterprise Ethereum Alliance) 规范

1.3 核心模块

  • 以太坊虚拟机 (EVM)The Ethereum Virtual Machine (EVM)
    Consensus algorithms: in addition to a proof-of-work algorithm, Besu also features several proof-of-authority protocols, which are well suited for use in blockchain consortia or other private networks where the participants know one another.
    共识协议:POA, 多种权威证明协议

  • P2P networking: by leveraging Ethereum’s devp2p network protocols, Besu is able to facilitate inter-client communication.
    P2P网络:devp2p 网络协议

  • Storage: Hyperledger Besu utilizes a RockDB key-value database to persist chain data locally. The data is divided into two sub-categories – blockchain data and world state data.
    存储:RockDB
    区块链数据和世界状态数据

  • Permissioning: while Besu leverages the public Ethereum mainnet, it also provides businesses with the means to create permitioned networks by specifying which nodes and accounts can participate in those networks.
    身份准入

  • Privacy: Besu uses a Private Transaction Manager to ensure the privacy of transactions between counterparties.
    隐私

  • User-facing API: the client provides mainnet Ethereum and EEA JSON-RPC APIs over HTTP and WebSocket protocols. It also supports a GraphQL API.
    用户api ,支持GraphQL API.

  • Monitoring: Hyperledger Besu utilizes tools such as Prometheus and Block Explorer to allow for users to monitor node and network performance, respectively.
    监控运维:区块链浏览器

标签:Ethereum,框架,以太,API,Hyperledger,区块,data,Besu
来源: https://blog.csdn.net/thefist11cc/article/details/119298955

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有