Ethereum - Embark 控制台方法调用全部返回未定义
Ethereum - Embark console method calls all returning as undefined
我正在使用 Embark 框架来构建我的第一个 DApp,并且已成功构建 "SimpleStorage" Embark 演示 here。我可以使用 Web 界面成功设置和检索值,但是当我尝试直接从 Embark 控制台这样做时,它 returns undefined
用于对我已部署的任何合约的任何方法调用。
我试过使用 Go-Ethereum 和 EthereumJS TestRPC 都无济于事。
我还报告了问题 here 人们似乎遇到了同样的问题,但项目维护者已经关闭了该问题。
Embark 使用 web3.js 1.0 , it should be MDBAccount.methods.post("Hello World").send()
and MDBService.methods.register().send({gas:900000})
The complete documentation can be found here.
我正在使用 Embark 框架来构建我的第一个 DApp,并且已成功构建 "SimpleStorage" Embark 演示 here。我可以使用 Web 界面成功设置和检索值,但是当我尝试直接从 Embark 控制台这样做时,它 returns undefined
用于对我已部署的任何合约的任何方法调用。
我试过使用 Go-Ethereum 和 EthereumJS TestRPC 都无济于事。
我还报告了问题 here 人们似乎遇到了同样的问题,但项目维护者已经关闭了该问题。
Embark 使用 web3.js 1.0 , it should be MDBAccount.methods.post("Hello World").send()
and MDBService.methods.register().send({gas:900000})
The complete documentation can be found here.