We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c04b584 commit 452a8b9Copy full SHA for 452a8b9
web3/auto/infura/goerli.py
@@ -8,10 +8,12 @@
8
9
from .endpoints import (
10
INFURA_GOERLI_DOMAIN,
11
+ build_http_headers,
12
build_infura_url,
13
)
14
15
+_headers = build_http_headers()
16
_infura_url = build_infura_url(INFURA_GOERLI_DOMAIN)
17
-w3 = Web3(load_provider_from_uri(_infura_url))
18
+w3 = Web3(load_provider_from_uri(_infura_url, _headers))
19
w3.middleware_onion.inject(geth_poa_middleware, layer=0)
0 commit comments