如何使用 python 将 web3 连接到主以太坊网络?
How to connect web3 to main ethereum network using python?
不过我在 private/test 网络上使用 web3.py
:
from web3 import Web3, HTTPProvider
w3 = Web3(HTTPProvider("https://private-ip:8545"))
为了连接到我的专用网络,我使用了这种方法,并且
在执行所有操作和测试后,我想将我的 API 连接到主以太坊网络。
所以,我的问题是如何连接到主以太坊网络?
只需使用以太坊主网络中节点的URL。这可能是您 运行 或其他人 public 提供的。
Infura 运行 一个这样的 public 节点。
不过我在 private/test 网络上使用 web3.py
:
from web3 import Web3, HTTPProvider
w3 = Web3(HTTPProvider("https://private-ip:8545"))
为了连接到我的专用网络,我使用了这种方法,并且 在执行所有操作和测试后,我想将我的 API 连接到主以太坊网络。
所以,我的问题是如何连接到主以太坊网络?
只需使用以太坊主网络中节点的URL。这可能是您 运行 或其他人 public 提供的。
Infura 运行 一个这样的 public 节点。