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 272baab commit 7f7f7e2Copy full SHA for 7f7f7e2
ape_infura/__init__.py
@@ -12,7 +12,12 @@ def providers():
12
13
14
def __getattr__(name: str):
15
- if name == "NETWORKS":
+ if name == "Infura":
16
+ from ape_infura.provider import Infura
17
+
18
+ return Infura
19
20
+ elif name == "NETWORKS":
21
from ape_infura.utils import NETWORKS
22
23
return NETWORKS
@@ -22,4 +27,7 @@ def __getattr__(name: str):
27
return getattr(module, name)
28
24
29
25
-__all__ = ["NETWORKS"]
30
+__all__ = [
31
+ "Infura",
32
+ "NETWORKS",
33
+]
0 commit comments