Web3、Truffle、および Testrpc を使用して、スマート コントラクトをローカルに展開しようとしています。Truffle を使用してスマート コントラクトをコンパイルし、次のコードで ABI とバイトコードを抽出しました。同じスクリプトで、web3.eth.contract.deploy を使用してコントラクトをデプロイしようとしています (このドキュメントに記載されています: https://web3js.readthedocs.io/en/1.0/web3-eth-contract.html#deploy)しかし、このエラーが発生しています:
Error: Synchronous requests are not supported
これを回避するにはどうすればよいですか?
参照用のスクリプトは次のとおりです。
let fs = require("fs");
let Web3 = require('web3'); // https://www.npmjs.com/package/web3
var TestRPC = require("ethereumjs-testrpc");
let web3 = new Web3();
web3.setProvider(TestRPC.provider());
let source = fs.readFileSync("../SmartContracts/build/contracts/TheContract.json");
let JSONObject = JSON.parse(source);
// ABI and bytecode description as JSON structure
let abi = JSONObject.abi
let bytecode = JSONObject.unlinked_binary;
// Create Contract proxy class
let contractSettings = {
from: addr,
gas: 1000000,
data: bytecode
}
let SampleContract = new web3.eth.Contract(abi, contractSettings);
let deploySettings = {
data: bytecode,
from: addr
}
SampleContract.deploy(deploySettings)
.send({
from: addr,
gas: 1500000,
gasPrice: '30000000000000'
})
.on('error', function(error){
console.log("error");
})
.on('transactionHash', function(transactionHash){
console.log("transaction hash");
})
.on('receipt', function(receipt){
console.log("receipt") // contains the new contract address
})
.on('confirmation', function(confirmationNumber, receipt){
console.log("confirmation");
})
.then(function(newContractInstance){
console.log(newContractInstance.options.address) // instance with the new contract address
});
console.log("終了");