我正在尝试创建一个坚固性为 0.5.10、松露和 web3 的 ETH 智能合约。一切似乎都运行良好,除了我得到:
ParserError:预期的编译指示、导入指令或合同/接口/库定义。 const web3 = require('web3');
当我尝试加载 web3 时。
我已经安装了 web3(dir {project folder} npm install web3)和我的 package.json(位于我的项目文件夹中):
“依赖关系”:{ “web3”:“^1.3.4” }
我都试过: 从'web3'导入Web3;
还有 const Web3 = require('web3');
但是还是不能加载web3,我做错了什么?
导致错误的合约
pragma solidity 0.5.10;
const web3 = require('web3');
contract UserRepository {
struct User {
uint id;
bytes32 firstName;
bytes32 lastName;
}
mapping(uint => User) public users;
uint public latestUserId = 0;
address private owner;
constructor() public {
owner = msg.sender;
}
}
package.json
{
"name": "helloworld",
"version": "1.0.0",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"web3": "^1.3.4"
}
}
答案 0 :(得分:1)
您正在将 node.js 混合到您的 Solidity 代码中。
pragma solidity 0.5.10;
const web3 = require('web3'); // this is node.js
contract UserRepository {
删除 const web3 = require('web3');
行,它将成功编译(在 Remix 中测试)。
这里我只是猜测您想使用 web3
来启用 JS 代码与您的智能合约进行通信(例如用于测试目的)。
如果是这种情况,您需要创建一个单独的 JS 文件,导入 web3
并使用 web3.eth.Contract 实例化此合约。
或者因为您已经在使用 Truffle 进行编译,您可以使用他们的 test tools 进行智能合约的 JS 测试。