How to call a Smart Contract function using Python and web3.py

别等时光非礼了梦想. 提交于 2021-02-19 04:59:10

问题


I have a contract deployed on Ethereum test network which has some functions in it and they all happen to work while using the Remix interface. When trying to call those functions using web3.py in Python, I'm able to call only for public functions and that part works fine. The problem is calling a function with a "restriction" such as having an "owner requirement", meaning only the address which created the contract can call that specific function. I've Googled it but no luck. I'm guessing that I am supposed to use both the "address" and the "password" for that Ethereum account as parameters when calling the function but I have no idea how to do it. Function is called "set()" and it takes only 2 string values.

Here is the part of Solidity code which makes the function "set()" accessible only by the owner of this contract.

constructor() public {
    owner = msg.sender;
}

modifier onlyOwner() {
    require(msg.sender == owner);
    _;
}

function set(string memory _lastHash,
             string memory _fullHash) public onlyOwner {
    lastHash = _lastHash;
    fullHash = _fullHash;
}

Here is the python function which i'm using to get the return values from the other 2 functions which i've not included:

data = contract.functions.getFullHash().call()

Function is called "getFullHash()". Given Python code doesn't work with the function "set()".


回答1:


Since my original comment got deleted I'll post it one last time.

I've managed to do it with the instructions provided on this link. Here is the code that worked for me:

transaction = contract.functions.set(
    'string1',
    'string2' ).buildTransaction({
    'gas': 70000,
    'gasPrice': web3.toWei('1', 'gwei'),
    'from': adress,
    'nonce': nonce
    }) 
private_key = "enter_your_key_here" 
signed_txn = web3.eth.account.signTransaction(transaction, private_key=private_key)
web3.eth.sendRawTransaction(signed_txn.rawTransaction)

I read somewhere that Infura only accepts raw signed transactions, not sure if its true but it worked this way.



来源:https://stackoverflow.com/questions/57580702/how-to-call-a-smart-contract-function-using-python-and-web3-py

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!