Interacting with Python
Using web3.py
Installation
$ pip install web3from web3 import Web3
w3 = Web3(Web3.HTTPProvider('http://127.0.0.1:8545'))$ pip install py-solc-xfrom solcx import install_solc
# install the latest version
install_solc("0.8.29")Interacting with Contracts in Python
Accounts on Local Nodes
Last updated
Was this helpful?