ethereumjs/ethereumjs-vm-2-API文档
https://github.com/ethereumjs/ethereumjs-vm/blob/master/docs/index.md
vm.runBlockchain
Processes blocks and adds them to the blockchain
处理区块并将其添加到区块链中
Parameters输入参数
blockchainBlockchain A blockchain that to process 一个处理的区块链cbFunction the callback function 回调函数
VM
VM Class, new VM(opts) creates a new VM object
VM类,VM(opts)将创建一个VM对象,运行起来实现的感觉与ganache相似
Parameters输入参数
optsObjectopts.stateManagerStateManager aStateManagerinstance to use as the state store (Beta API) 用于状态存储的StateManager实例(还在实验阶段)其实这个就是区块上的state merkle-patricia树,用于存储区块上的所有账户的信息opts.stateTrie a merkle-patricia-tree instance for the state tree (ignored if stateManager is passed) 用于状态树的一个merkle-patricia树(如果上面的stateManager已经传递,这个就可以忽略)opts.blockchainBlockchain a blockchain object for storing/retrieving blocks (ignored if stateManager is passed) 为了存储/检索区块的区块链对象(如果上面的stateManager已经传递,这个就可以忽略)opts.chain(String | Number) the chain the VM operates on [default: 'mainnet'] VM操作在那个链上(默认是mainnet链)opts.hardforkString hardfork rules to be used [default: 'byzantium', supported: 'byzantium', 'constantinople' (will throw on unsupported)] 使用的硬分支规则(默认是byzantium',还支持'byzantium', 'constantinople',如果输入的是不支持的将抛出错误)opts.activatePrecompilesBoolean create entries in the state tree for the precompiled contracts 为了预编译合约在状态树上创建条目,其实就是在state merkle-patricia树上手动添加一些账户的信息,就跟ganache一样,一开始就有可用的账户opts.allowUnlimitedContractSizeBoolean allows unlimited contract sizes while debugging. By setting this totrue, the check for contract size limit of 24KB (see EIP-170) is bypassed. (default:false; ONLY set totrueduring debugging) 当调试时,允许不限制的合约大小。通过将其设置为true,来忽视合约大小设置为24KB的检查(细节看本博客ethereum/EIPs-170 Contract code size limit)。(默认为false,只在调试时设置为true)opts.emitFreeLogsBoolean Changes the behavior of the LOG opcode, the gas cost of the opcode becomes zero and calling it using STATICCALL won't throw. (default:false; ONLY set totrueduring debugging) 改变日志操作吗的行为,gas开销的操作码变为0,使用STATICCALL操作码调用它将抛出错误(默认为false,只有在调试时设置为true)
vm.runBlock
Processes the block running all of the transactions it contains and updating the miner's account
处理区块,运行其中的所有交易并更新矿工账户
Parameters输入参数
optscbrunBlock~callback callback 回调函数
runBlock~callback
Callback for runBlock method
runBlock的回调
Type: Function
Parameters输入参数
errorError an error that may have happened ornull 发生的错误或nullresultsObjectresults.receiptsArray the receipts from the transactions in the block 区块中来自交易的receiptresults.resultsArray 返回结果
vm.runTx
Process a transaction. Run the vm. Transfers eth. Checks balances.
处理交易。运行虚拟机。交易eth。查看余额。
Parameters输入参数
optsopts.txTransaction aTransactionto run 运行的交易opts.skipNonceBoolean skips the nonce check 跳过nonce检查opts.skipBalanceBoolean skips the balance check 跳过余额检查opts.blockBlock the block to which thetxbelongs, if no block is given a default one is created 交易属于的区块,如果没有,则创建一个默认块
cbrunTx~callback the callback 回调函数
runTx~callback
Callback for runTx method
runTx方法的回调
Type: Function
Parameters输入参数
errorError an error that may have happened ornull发生的错误或nullresultsObjectresults.amountSpentBN the amount of ether used by this transaction as abignum 被这个交易使用的ether的数量,BN格式results.gasUsedBN the amount of gas as abignumused by the transaction 被这个交易使用的gas,BN格式results.gasRefundBN the amount of gas as abignumthat was refunded during the transaction (i.e.gasUsed = totalGasConsumed - gasRefund) 在交易中被退还的gas,BN格式(使用的gas = 总使用的gas - 退还的gas)
vmVM contains the results from running the code, if any, as described invm.runCode(params, cb) 虚拟机,如果存在,包含通过运行代码得到的结果,就像vm.runCode(params, cb)所说
vm.runCode
Runs EVM code
运行以太坊虚拟机代码
Parameters输入参数
optsObjectopts.accountAccount theAccountthat the executing code belongs to. If omitted an empty account will be used 执行的代码属于的账户。如果省略则使用空账户opts.addressBuffer the address of the account that is executing this code. The address should be aBufferof bytes. Defaults to0 执行这个代码的账户的地址。地址应该是字节的buffer格式。默认为0opts.blockBlock theBlockthetxbelongs to. If omitted a blank block will be used 这个交易属于的区块。如果省略则使用一个黑块opts.callerBuffer the address that ran this code. The address should be aBufferof 20bits. Defaults to0 运行这个代码的地址。这个地址应该为20bits的buffer格式,默认为0opts.codeBuffer the EVM code to run given as aBuffer 以buffer格式给出的用来运行的以太坊虚拟机的代码opts.dataBuffer the input data 输入的数据opts.gasLimitBuffer the gas limit for the code 这个代码使用的gas的限制opts.originBuffer the address where the call originated from. The address should be aBufferof 20bits. Defaults to0 这个调用起源的地址。这个地址应该为20bits的buffer格式,默认为0opts.valueBuffer the value in ether that is being sent toopt.address. Defaults to0 被送给opt.address的ether。默认为0
cbrunCode~callback callback 回调函数
runCode~callback
Callback for runCode method
runCode方法的回调
Type: Function
Parameters输入参数
errorError an error that may have happened ornull发生的错误或nullresultsObjectresults.gasBN the amount of gas left 剩下的gas数量results.gasUsedBN the amount of gas as abignumthe code used to run 以bignum格式给出的这个代码用来运行的gas数量results.gasRefundBN abignumcontaining the amount of gas to refund from deleting storage values从删除的存储值中得到包含退还的gas的数量的大数results.selfdestructObject anObjectwith keys for accounts that have selfdestructed and values for balance transfer recipient accounts 包含自我毁灭的账户密钥和转移接收账户余额的值的对象results.logsArray anArrayof logs that the contract emitted 合约发出的日志数组results.exceptionNumber0if the contract encountered an exception,1otherwise 如果合约遇到了异常则为0,否则为1results.exceptionErrorString aStringdescribing the exception if there was one 如果有异常则用来描述异常的字符串results.returnBuffer aBuffercontaining the value that was returned by the contract 包含被合约返回的值的buffer
Event: beforeBlock
The beforeBlock event beforeBlock事件
Type: Object
Properties属性
blockBlock emits the block that is about to be processed 发出关于将要被处理的区块
Event: afterBlock
The afterBlock event afterBlock事件
Type: Object
Properties属性
resultObject emits the results of processing a block 发出处理的区块的结果
Event: beforeTx
The beforeTx event
Type: Object
Properties
txTransaction emits the Transaction that is about to be processed 发出将要被处理的交易
Event: afterTx
The afterTx event
Type: Object
Properties
resultObject result of the transaction 交易的结果
Event: step
The step event for trace output追踪输出的step事件
Type: Object
Properties
pcNumber representing the program counter 代表项目的计数opcodeString the next opcode to be ran 下一个运行的操作码gasLeftBN amount of gasLeft 剩下的gas数量stackArray anArrayofBufferscontaining the stack 包含堆栈的Buffers数组accountAccount theAccountwhich owns the code running 拥有运行代码的账户addressBuffer the address of theaccount 账户的地址depthNumber the current number of calls deep the contract is 合约所在的目前的调用深度数memoryBuffer the memory of the VM as abuffer 虚拟机的内存stateManagerStateManager aStateManagerinstance (Beta API) 一个StateManager实例
ethereumjs/ethereumjs-vm-2-API文档的更多相关文章
- Vuex的API文档
前面的话 本文将详细介绍Vuex的API文档 概述 import Vuex from 'vuex' const store = new Vuex.Store({ ...options }) [构造器选 ...
- geoserver整合swagger2支持自动生成API文档
网上各种博客都有关于swagger2集成到springmvc.springboot框架的说明,但作者在整合到geoserver中确碰到了问题,调试一番最后才解决,遂总结一下. swagger2集成只需 ...
- Java在DOS命令下的运行及其API文档制作过程
该文档主要描述java程序在DOS命令下的运行,以及一些常用的命令 常用DOS命令: d: 回车 盘符切换 dir(directory):列出当前目录下的文件以及文件夹 md (make direct ...
- 在ASP.NET Core Web API上使用Swagger提供API文档
我在开发自己的博客系统(http://daxnet.me)时,给自己的RESTful服务增加了基于Swagger的API文档功能.当设置IISExpress的默认启动路由到Swagger的API文档页 ...
- 利用sphinx为python项目生成API文档
sphinx可以根据python的注释生成可以查找的api文档,简单记录了下步骤 1:安装 pip install -U Sphinx 2:在需要生成文档的.py文件目录下执行sphinx-apido ...
- 如何使 WebAPI 自动生成漂亮又实用在线API文档
1.前言 1.1 SwaggerUI SwaggerUI 是一个简单的Restful API 测试和文档工具.简单.漂亮.易用(官方demo).通过读取JSON 配置显示API. 项目本身仅仅也只依赖 ...
- Android多媒体--MediaCodec 中文API文档
*由于工作需要,需要利用MediaCodec实现Playback及Transcode等功能,故在学习过程中翻译了Google官方的MediaCodec API文档,由于作者水平限制,文中难免有错误和不 ...
- 新手如何查看API文档?
Java API文档为例: 1:知道包名,可以在Overview里直接找到这个包,然后去查这个包下面的类和方法.2:知道类名和方法名,可以在Index.html里直接去找这个类或方法,然后查看.3:如 ...
- Bullet的学习资源(用Doxygen生成API文档)
Bullet 全称 Bullet Physics Library,是著名的开源物理引擎(可用于碰撞检测.刚体模拟.可变形体模拟),这里将bullet的学习资源整理一下,希望能帮助入门者少走弯路. 看下 ...
- [API]使用Blueprint来高雅的编写接口文档 前后端api文档,移动端api文档
网址:http://apiary.io/ 介绍:一款非常强大的前后端交互api设计编辑工具(编辑器采用Markdown类似的描述标记,非常高效),高颜值的api文档,还能生成多种语言的测试代码. 中文 ...
随机推荐
- Mysql压缩版forWindows安装与配置
参考:http://blog.csdn.net/wengengeng/article/details/52013650
- EF框架CodeFirst the model backing the 'PModelEntities' context has changed since the database was created. Consider using Code First Migrations to update the database
1.采用code first 做项目时,数据库已经生成,后期修改数据库表结构.再次运行时出现一下问题: Entity Framework : The model backing the 'Produc ...
- equals、==和hashCode
equals和== ==可以用于基本类型和引用类型:当用于基本类型时,比较值是否相同:当用于引用类型时,比较的是所指向的对象的地址是否相同.如果有包装类型,则先将包装类型转换为基本类型再比较值是否相等 ...
- 轻松学习java可重入锁(ReentrantLock)的实现原理(转 图解)
前言 相信学过java的人都知道 synchronized 这个关键词,也知道它用于控制多线程对并发资源的安全访问,兴许,你还用过Lock相关的功能,但你可能从来没有想过java中的锁底层的机制是怎么 ...
- python学习之老男孩python全栈第九期_day028知识点总结——面向对象进阶、hashlib
一. 面向对象进阶与实例 dic = {'k': 'v' } 对象:存储 属性 和 调用方法 dic['k'] = 'v' class Foo: def __init__(self, name, ag ...
- Django框架model实现数据库增删查改
1.创建Django工程 https://www.cnblogs.com/CK85/p/10159159.html 2.在model.py中配置生成表格的类对象. from django.db imp ...
- WinForm实现Rabbitmq官网6个案例-Routing
代码: namespace RabbitMQDemo { public partial class Routing : Form { private string exchangeName = &qu ...
- 【javascript】javascript设计模式mixin模式
概述: Mixin是JavaScript中用的最普遍的模式,几乎所有流行类库都会有Mixin的实现.任意一个对象的全部或部分属性拷贝到另一个对象上. 一 .混合对象 二 .混合类
- LeetCode 533----Lonely Pixel II
问题描述 Given a picture consisting of black and white pixels, and a positive integer N, find the number ...
- Python实现冒泡,选择排序
def bubble(num): for i in range(len(num)-1): for j in range(len(num)-i-1): if(num[j]>num[j+1]): t ...