最初の dapp を機能させようとしています。私は近くにいることを知っていますが、web3 で問題が発生し続けています。
私はWindows 10で作業しており、 PowerShell経由でtestrpcノードを実行しています。truffleを使用してフォルダーとサンプル ファイルをセットアップし、コンパイルして移行しました。
トリュフによって構築されたapp.jsファイルから何も変更していないと思います...そのコードは次のとおりです。
var accounts;
var account;
function setStatus(message) {
var status = document.getElementById("status");
status.innerHTML = message;
};
function refreshBalance() {
var meta = MetaCoin.deployed();
meta.getBalance.call(account, {from: account}).then(function(value) {
var balance_element = document.getElementById("balance");
balance_element.innerHTML = value.valueOf();
}).catch(function(e) {
console.log(e);
setStatus("Error getting balance; see log.");
});
};
function calcPremium() {
var premium = parseInt(document.getElementById("benefit").value)/10000;
document.getElementById("monthlyPremium").innerHTML = " Monthly Premium: $"+premium.toFixed(2);
};
function sendCoin() {
var meta = MetaCoin.deployed();
var amount = parseInt(document.getElementById("monthlyPremium").value);
var receiver = document.getElementById("receiver").value;
setStatus("Initiating transaction... (please wait)");
meta.sendCoin(receiver, amount, {from: account}).then(function() {
setStatus("Transaction complete!");
refreshBalance();
}).catch(function(e) {
console.log(e);
setStatus("Error sending coin; see log.");
});
};
window.onload = function() {
web3.eth.getAccounts(function(err, accs) {
if (err != null) {
alert("There was an error fetching your accounts.");
return;
}
if (accs.length == 0) {
alert("Couldn't get any accounts! Make sure your Ethereum client is configured correctly.");
return;
}
accounts = accs;
account = accounts[0];
refreshBalance();
});
}
MetaMaskプラグインを有効にすると、 Chromeブラウザーでhtml ファイルを開くことができます。ただし、web3 エラーの問題により、コントラクトを操作できないようです。正確なメッセージは、この投稿の件名です。
ヘルプやガイダンスをお寄せいただきありがとうございます。