ethereumjs/ethereumjs-common-1-简介
为了了解ethereumjs/ethereumjs-block-3-代码的使用需要了解的一个模块
https://github.com/ethereumjs/ethereumjs-common
Common Ethereum resources (successor for ethereum/common library)公共以太坊资源(以太坊/公共库后续)
SYNOPSIS概要
ETHEREUMJS-COMMON
Resources common to all Ethereum implementations 对所有以太坊实现公用的资源
Succeeds the old ethereum/common library. 继承了旧的ethereum/common库
INSTALL安装
npm install ethereumjs-common
USAGE使用
All parameters can be accessed through the Common class which can be required through the main package and instantiated either with just the chain (e.g. 'mainnet') or the chain together with a specific hardfork provided.
所有参数都可以通过Common类接收,Common类可以使用main包请求,也可以要么和只带着链(如'mainnet')或与提供的具体分支一起的链作为参数来初始化一个Common对象
Here are some simple usage examples:下面是简单的使用例子
const Common = require('ethereumjs-common')
// Instantiate with only the chain,这个就是只使用ropsten链进行初始化
let c = new Common('ropsten')
c.param('gasPrices', 'ecAddGas', 'byzantium') // 500
// Chain and hardfork provided,这个是用链和硬分支来初始化对象的方法
c = new Common('ropsten', 'byzantium')
c.param('pow', 'minerReward') // 3000000000000000000
// Access genesis data for Ropsten network 访问Ropsten网络的初始数据
c.genesis().hash // 0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d
// Get bootstrap nodes for chain/network 获取链/网络的引导节点
c.bootstrapNodes() // Array with current nodes 带着目前节点的数组
It is encouraged to also explicitly set the supportedHardforks if the initializing library only supports a certain range of hardforks:
如果初始化的库只支持某范围内的硬分支,则鼓励显示地设置supportedHardforks
let c = new Common('ropsten', null, ['byzantium', 'constantinople'])
This will e.g. throw an error when a param is requested for an unsupported hardfork and like this prevents unpredicted behaviour.
当一个参数请求不支持的硬分支时,这将抛出一个错误,像这样将防止不可预测的行为
API(看本博客ethereumjs/ethereumjs-common-2-API文档)
See the API documentation for a full list of functions for accessing specific chain and depending hardfork parameters. There are also additional helper functions like paramByBlock (topic, name, blockNumber) or hardforkIsActiveOnBlock (hardfork, blockNumber) to ease blockNumber based access to parameters.
有关访问特定链和依赖硬分支参数的函数的完整列表,请参阅API文档。
这里有额外的帮助函数,像paramByBlock (topic, name, blockNumber)或hardforkIsActiveOnBlock (hardfork, blockNumber)去简化基于块数的参数访问
Hardfork Params硬分叉参数
There are currently parameter changes by the following past and future hardfork by the library supported:以下库支持的旧的和新的硬分叉决定了目前硬分叉参数的变化
chainstarthomesteaddaotangerineWhistlespuriousDragonbyzantiumconstantinople
For hardfork-specific parameter access with the param() and paramByBlock() functions you can use the following topics:
为了使用param()和paramByBlock()函数访问具体的硬分叉参数,你可以使用下面的主题,上面的例子有:
gasConfiggasPricesvmpowcaspersharding
See one of the hardfork files like byzantium.json in the hardforks directory for an overview. For consistency, the chain start (chainstart) is considered an own hardfork.
为了简要了解可以查看其中的一个硬分叉文件如在hardforks目录下的byzantium.json。为了一致性,链的开始 (chainstart)将考虑一个自己的分叉
byzantium.json
{
"name": "byzantium",
"comment": "Hardfork with new precompiles, instructions and other protocol changes",
"eip": {
"url": "https://eips.ethereum.org/EIPS/eip-609",
"status": "Final"
},
"gasConfig": {},
"gasPrices": {
"modexpGquaddivisor": {
"v": ,
"d": "Gquaddivisor from modexp precompile for gas calculation"
},
"ecAdd": {
"v": ,
"d": "Gas costs for curve addition precompile"
},
"ecMul": {
"v": ,
"d": "Gas costs for curve multiplication precompile"
},
"ecPairing": {
"v": ,
"d": "Base gas costs for curve pairing precompile"
},
"ecPairingWord": {
"v": ,
"d": "Gas costs regarding curve pairing precompile input length"
}
},
"vm": {},
"pow": {
"minerReward": {
"v": "",
"d": "the amount a miner get rewarded for mining a block"
}
},
"casper": {},
"sharding": {}
}
所以上面例子的:
c = new Common('ropsten', 'byzantium')
c.param('pow', 'minerReward') //
意思就是查看byzantium.json文件中的['pow']['minerReward']['v']的值,即了。这是矿工在挖矿时能够得到的奖励值
The hardfork-specific json files only contain the deltas from chainstart and shouldn't be accessed directly until you have a specific reason for it.
具体分叉json文件只包含来自chainstart的deltas,且不应该直接访问,直到你有具体这么做的原因
Note: The list of gasPrices and gas price changes on hardforks is consistent but not complete, so there are currently gas price values missing (PRs welcome!).
注意:在分叉中gasPrices和gas price列表的变化是一致但不完全的,所以目前gas price的值是缺失的(即只有gasPrices)
Chain Params链参数
Supported chains:支持的链
mainnetropstenrinkebykovangoerli(EXPERIMENTAL)- Private/custom chain parameters
The following chain-specific parameters are provided:
下面是提供的具体链参数
namechainIdnetworkIdgenesisblock header valueshardforksblock numbersbootstrapNodeslist
To get an overview of the different parameters have a look at one of the chain-specifc files like mainnet.json in the chains directory.
为了得到不同参数的概述,我们可以看看在chains目录中的具体链文件之一的mainnet.json
{
"name": "mainnet",
"chainId": ,
"networkId": ,
"comment": "The Ethereum main chain",
"url": "https://ethstats.net/",
"genesis": {
"hash": "0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3",
"timestamp": null,
"gasLimit": ,
"difficulty": ,
"nonce": "0x0000000000000042",
"extraData": "0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa",
"stateRoot": "0xd7f8974fb5ac78d9ac099b9ad5018bedc2ce0a72dad1827a1709da30580f0544"
},
"hardforks": [
{
"name": "chainstart",
"block": ,
"consensus": "pow",
"finality": null
},
{
"name": "homestead",
"block": ,
"consensus": "pow",
"finality": null
},
{
"name": "dao",
"block": ,
"consensus": "pow",
"finality": null
},
{
"name": "tangerineWhistle",
"block": ,
"consensus": "pow",
"finality": null
},
{
"name": "spuriousDragon",
"block": ,
"consensus": "pow",
"finality": null
},
{
"name": "byzantium",
"block": ,
"consensus": "pow",
"finality": null
},
{
"name": "constantinople",
"block": null,
"consensus": "pow",
"finality": null
}
],
"bootstrapNodes": [
{
"ip": "13.93.211.84",
"port": ,
"id": "3f1d12044546b76342d59d4a05532c14b85aa669704bfe1f864fe079415aa2c02d743e03218e57a33fb94523adb54032871a6c51b2cc5514cb7c7e35b3ed0a99",
"location": "US-WEST",
"comment": "Go Bootnode"
},
{
"ip": "191.235.84.50",
"port": ,
"id": "78de8a0916848093c73790ead81d1928bec737d565119932b98c6b100d944b7a95e94f847f689fc723399d2e31129d182f7ef3863f2b4c820abbf3ab2722344d",
"location": "BR",
"comment": "Go Bootnode"
},
{
"ip": "13.75.154.138",
"port": ,
"id": "158f8aab45f6d19c6cbf4a089c2670541a8da11978a2f90dbf6a502a4a3bab80d288afdbeb7ec0ef6d92de563767f3b1ea9e8e334ca711e9f8e2df5a0385e8e6",
"location": "AU",
"comment": "Go Bootnode"
},
{
"ip": "52.74.57.123",
"port": ,
"id": "1118980bf48b0a3640bdba04e0fe78b1add18e1cd99bf22d53daac1fd9972ad650df52176e7c7d89d1114cfef2bc23a2959aa54998a46afcf7d91809f0855082",
"location": "SG",
"comment": "Go Bootnode"
}
]
}
If you want to set up a common instance with parameters for a private/custom chain you can pass a dictionary - conforming to the parameter format described above - with your custom values in the constructor or the setChain()method for the chain parameter.
如果你想要为私有/定制脸设置带有参数的公用实例,你可以传递一个字典-像上面一样遵循参数的格式-在构造函数中带着你的定制值或能得到链的参数的setChain()方法
Bootstrap Nodes
There is no separate config file for bootstrap nodes like in the old ethereum-common library. Instead use the common.bootstrapNodes() function to get nodes for a specific chain/network.
这里没有bootstrap节点的单独配置文件,就像在旧ethereum-common库那样。相反使用了common.bootstrapNodes()函数去得到具体chain/network的节点
Genesis States初始状态
Network-specific genesis files are located in the genesisStates folder.
具体网络初始文件在genesisStates文件夹中
Due to the large file sizes genesis states are not directly included in the index.js file but have to be accessed directly, e.g.:
因为初始文件的巨大文件大小,所以并不将其直接包含在index.js文件中,但是又必须要直接访问它,比如
const mainnetGenesisState = require('ethereumjs-common/genesisStates/mainnet')
Or by choosing dynamically或者是动态地选择使用:
const genesisStates = require('ethereumjs-common/genesisStates')
const mainnetGenesisState = genesisStates['mainnet']
const mainnetGenesisState = genesisStates[genesisStates['names'][]] // alternative via chain Id
ethereumjs/ethereumjs-common-1-简介的更多相关文章
- ethereumjs/ethereumjs-common-2-API文档
https://github.com/ethereumjs/ethereumjs-common/blob/master/docs/index.md 该API的调用的详细例子可见ethereumjs/e ...
- ethereumjs/ethereumjs-vm-3-StateManager
https://github.com/ethereumjs/ethereumjs-vm/blob/master/docs/stateManager.md StateManager 要与本博客的ethe ...
- ethereumjs/ethereumjs-block-3-tests
之前可以先了解一下另一个模块,看本博客的ethereumjs/ethereumjs-common部分内容 通过tests测试文件能够帮助更好了解API的使用 ethereumjs-block/test ...
- ethereumjs/ethereumjs-block-2-api
https://github.com/ethereumjs/ethereumjs-block/blob/master/docs/index.md 详细的调用代码可见本博客的ethereumjs/eth ...
- ethereumjs/ethereumjs-blockchain-2-test
https://github.com/ethereumjs/ethereumjs-blockchain/tree/master/test 'use strict' const test = requi ...
- ethereumjs/ethereumjs-util
ethereumjs/ethereumjs-util Most of the string manipulation methods are provided by ethjs-util 更多的字符串 ...
- ethereumjs/ethereumjs-wallet
Utilities for handling Ethereum keys ethereumjs-wallet A lightweight wallet implementation. At the m ...
- ethereumjs/ethereumjs-tx
https://github.com/ethereumjs/ethereumjs-tx A simple module for creating, manipulating and signing e ...
- ethereumjs/ethereumjs-icap
https://github.com/ethereumjs/ethereumjs-icap ethereumjs-icap 安装: npm install ethereumjs-icap --save ...
随机推荐
- Linux CPU使用率的计算
CPU 使用率衡量的是程序运行占用的CPU 百分比.Linux 的CPU 使用率信息可以通过/proc/stat 文件计算得到. proc 文件系统 /proc 文件系统是一个伪 ...
- php返回数组后处理(开户成功后弹窗提示)
1. 在注册的时候,注册成功后经常会弹窗提示自己注册的信息,这类做法需要返回mysql数据库中获取的数组值,返回给前台页面,赋值给弹窗. 2.做法: 返回数组 打印的数组的值 返回数组处理 赋值给弹窗 ...
- ASP.NET MVC 简单事务添加
ASP.NET MVC 简单事务 //实例化查询上下文 using ( BookStoreEntities db = new BookStoreEntities()) { //找到需要价格和名称的数据 ...
- vue.js 开发环境配置
1. node.js环境(npm包管理器) 下载: https://nodejs.org/en/download/current/ 下载解压版的方便 添加path环境后运行 npm包管理器,是集成在n ...
- c#+arcAE对图层进行各种渲染操作
转载:http://blog.sina.com.cn/s/blog_6023833e0100t5t0.html using System;using System.Collections.Generi ...
- js实现链式操作
前言:前不久阿里远程面试时问了我一个问题,如下: function Person(){}; var person = new Person(); //实现person.set(10).get()返回2 ...
- new 关键字
学习过的调用或者是执行函数的方式有几种? ①函数名+小括号 ②事件处理函数 ③定时器 ④数组里面的元素是函数,枚举出来执行 ⑤new关键字 提示:需要注意new 关键字需要在函数名前面使用 构造函数是 ...
- CSS 引入方式 选择器
---恢复内容开始--- CSS是Cascading Style Sheets的简称,中文称为层叠样式表,用来控制网页数据的表现,可以使网页的表现与数据内容分离. 步骤: A.找到标签 B.操作标签 ...
- Linux 安装MySQL-python
vi ~/.bash_profile PATH="/usr/local/mysql/bin:${PATH}" export PATH export DYLD_LIBRARY_PAT ...
- jsonp promise封装
npm 安装jsonp import originJSONP from 'jsonp' export default function jsonp(url, data, option){ url += ...