web3.js解锁账户时,一直提示 cannot find key with given address
web3.js解锁账户的代码web3.eth.personal.unlockAccount(account.address,account.privateKey,6000,(error,res) => { console.log(error) console.l…
web3-eth-abi 调用encodeFunctionCall编码abi时错误
web3-eth-abi 调用encodeFunctionCall编码abi,inputs 参数是string[]时 编码失败 var inputs = [{type: "string[2]", name: "n"}] web3Abi.encodeFun…
区块链共识算法相关的实验或者仿真实验应该怎么做?
我在研究区块链共识算法,如果想做这方面的实验应该怎么做呢?之前用过hyperledger fabric来做,但是它不支持使用自己研究的共识算法,只能用它自带的…
npm install remix-ide安装时报错
第一次装以太坊的IDE环境,机器操作系统为CentOS7,node版本为12.14.1 npm版本为6.13.4,正常情况下执行按照官方文档说明执行下方指令应该没问题的,…
solidity开发sendTransaction报错
问题描述 使用ganache 和 truffle开发,用到的了openzeppelin这个库,使用到了ERC20和Crowdsale这两个合约,测试的时候,调用下面语句报错,其中purc…
以太坊同步问题Database compacting, degraded performance database
以太坊同步过程中日志出现以下情况 INFO [11-24|12:29:51.925] Imported new block receipts count=239 elapsed=2.543s number=5234756 hash=4e45f1…
web3.eth.isSyncin,无返回值,geth客户端也没有提示eth_syncing
web3.eth.isSyncing(function(error, sync){ console.log(4564564564) if(!error) { if(sync === true) { web3.reset(true) } else if(sync) { conso…
合约部署之后,如何在web3调用合约方法时自动扣费,而不是调用metaMask
在以太坊中,自己写好合约,前端使用的是vue+truffle.js,然后部署到本地的Ganache创建的虚拟节点上,在使用其中一个账户钱包作为扣除gas的来源,但…
以太坊搭建私有链并开始挖矿出现OOM。内存一直增长直到杀geth进程
问题: 搭建私有链并开始挖矿出现OOM。内存一直增长直到杀geth进程 搭建以太坊私有链 Dockerfile ----------------------------------- FROM ubuntu …
web3 调部署上线的合约接口总是失败,本地调就成功
我的合同: https://kovan.etherscan.io/ad... 我尝试用 web3 调合同里的接口,譬如: //address and abi 从上面的 URL 里复制过来的 let contractAd…