Reputation: 2099
I am using web3.py
on my private/test network though:
from web3 import Web3, HTTPProvider
w3 = Web3(HTTPProvider("https://private-ip:8545"))
For making connection to my private network i use this method and after performing all the oprations and testing i want to connect my API to main ethereum network.
So, my question is that how can i connect to main ethereum network ?
Upvotes: 2
Views: 1704