ether

How to interact with a solidity function and make transactions from a different address?

How to interact with a solidity function and make transactions from a different address? Question: So I have a solidity contract which I have defined and then compiled via: voting_contract_compiled = compile_contract(‘Voting’) voting_deployment_tx_receipt, Voting = deploy_contract(w3, voting_contract_compiled, 10) When I do Voting.all_functions() I get: [<Function getNumVoters()>, <Function getStatus()>, <Function getWinner()>, <Function isVotingOpen()>, <Function totalVotesFor(int256)>, <Function …

Total answers: 1