类型错误:无法读取未定义的属性(读取“eth”)

问题描述 投票:0回答:2
const  {web3js, myAccount} = require ('./utils')
const {bytecode} = require ('./contractartifact')

async function deploy() {
    web3js.eth.sendTransaction({
        from: myAccount.address,
        data: bytecode,
        gas: 800

    })
    .on('receipt', console.log)
}

deploy()

错误

C:\Users\giris\getter-setter\deploy.js:9 web3js.eth.sendTransaction({ ^

类型错误:无法读取未定义的属性(读取“eth”)
部署时 (C:\Users\giris\getter-setter\deploy.js:9:12)
在对象。 (C:\Users\giris\getter-setter\deploy.js:19:1)
在Module._compile(节点:内部/模块/cjs/loader:1101:14)
在 Object.Module._extensions..js (节点:内部/模块/cjs/loader:1153:10) 在Module.load(节点:内部/模块/cjs/loader:981:32)
在 Function.Module._load (节点:内部/模块/cjs/loader:822:12)
在 Function.executeUserEntryPoint [作为 runMain] (节点:internal/modules/run_main:81:12)
在节点:内部/主/run_main_module:17:47

javascript blockchain ethereum solidity web3js
2个回答
1
投票

您的导入不正确:

const {web3js, myAccount} = require ('./utils')

应该是:

const web3js = new Web3(Web3.givenProvider || "ws://localhost:8545");

0
投票

我如何在我的计算机中找到修复它的代码?

© www.soinside.com 2019 - 2024. All rights reserved.