Я следую учебнику по Ethereum Dapp по Udemy. Я, кажется, наткнулся на ошибку где-то в начале курса. Я собирался развернуть свой контракт для начинающих и протестировать его с Мокко, когда возникла проблема.
Я нашел исправления в Интернете, но не исправил свои. Я подозреваю, что речь идет о версиях web3 или solc. Я использую последние версии обоих пакетов. В учебнике, которому я следую, используются более старые версии, которые уже устарели.
Inbox.sol
pragma solidity >=0.4.0 <0.6.0;
contract Inbox{
string message;
function set(string memory initialMessage) public {
message = initialMessage;
}
function setMessage(string memory newMessage) public{
message = newMessage;
}
}
Compile.js
const path = require('path');
const fs = require('fs');
const solc = require('solc');
const inboxPath = path.resolve(__dirname, 'contracts', 'Inbox.sol');
const source = fs.readFileSync(inboxPath, 'utf8');
module.exports = solc.compile(source, 1).contracts[':Inbox'];
Inbox.test.js:
const assert = require('assert');
const ganache = require('ganache-cli');
const Web3 = require('web3');
const web3 = new Web3(ganache.provider());
const {interface, bytecode} = require('../compile');
let accounts;
let inbox;
beforeEach(async ()=>{
accounts = await web3.eth.getAccounts();
inbox = await new web3.eth.Contract(JSON.parse(interface))
.deploy({
data: bytecode,
arguments:["Hi there!"]
})
.send({from:accounts[0] , gas: 1000000});
});
describe("Inbox", ()=>{
it("deploys a contract", () => {
console.log(inbox)
});
});
Ошибка на моем терминале говорит:
before each" hook for "deploys a contract":
Error: types/values length mismatch (count={"types":0,"values":1}, value={"types":[],"values":["Hi there!"]}, version=4.0.32)
at Object.throwError (node_modules\ethers\errors.js:76:17)
at AbiCoder.encode (node_modules\ethers\utils\abi-coder.js:922:20)
at AbiCoder.encodeParameters (node_modules\web3-eth-abi\dist\web3-eth-abi.cjs.js:45:34)
at MethodEncoder.encode (node_modules\web3-eth-contract\dist\web3-eth-contract.cjs.js:143:45)
at MethodsProxy.createMethod (node_modules\web3-eth-contract\dist\web3-eth-contract.cjs.js:556:57)
at MethodsProxy.executeMethod (node_modules\web3-eth-contract\dist\web3-eth-contract.cjs.js:534:23)
at Function.ContractMethod.send (node_modules\web3-eth-contract\dist\web3-eth-contract.cjs.js:505:29)
at Context.beforeEach (test\Inbox.test.js:19:6)
at process._tickCallback (internal/process/next_tick.js:68:7)
Мой пакет.json:
{
"name": "inbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": "Ryan Arcel Galendez",
"license": "ISC",
"dependencies": {
"ganache-cli": "^6.4.4",
"mocha": "^6.1.4",
"solc": "^0.4.26",
"web3": "^1.0.0-beta.55"
}
Я ожидаю, что мой тест Мокко покажет "успех".