Python の web3 モジュールを使用して、dapps について詳しく学ぼうとしています。Web3 はガナッシュに問題なく接続します。使用して自分のアカウントを確認web3.eth.accounts[0]
でき、契約を取得できます。ただし、コントラクトから関数を呼び出そうとすると、次のようになります:
web3.exceptions.ContractLogicError: execution reverted: VM Exception while processing transaction: revert
ここに私のpythonコードがあります:
from web3 import Web3
import json
w3 = Web3(Web3.HTTPProvider('http://127.0.0.1:7545'))
w3.eth.defaultAccount = w3.eth.accounts[0]
print(w3.eth.defaultAccount)
compiled_contract_path = './build/contracts/Greeter.json'
deployed_contract_address = '0x54BB58167CDB31A98F56E8Fc3CfbAC43bf867000'
with open(compiled_contract_path) as file:
contract_json = json.load(file) # load contract info as JSON
contract_abi = contract_json['abi']
contract = w3.eth.contract(address=deployed_contract_address, abi=contract_abi)
print(contract.functions.greet().call())
そして、ここに私の契約があります:
pragma solidity ^0.5.0;
contract Greeter {
uint public taskCount = 0;
string public greeting;
constructor() public {
greeting = 'Hello';
}
function greet() public returns (string memory) {
return greeting;
}
}
エラーを理解するための助けをいただければ幸いです。