File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -78,12 +78,12 @@ The Injective Python SDK provides two different clients for interacting with the
7878
79791 . ** Exchange V1 Client** (` async_client ` module):
8080 - Use this client if you need to interact with the original Injective Exchange API
81- - Import using: ` from injective .async_client import AsyncClient `
81+ - Import using: ` from pyinjective .async_client import AsyncClient `
8282 - Suitable for applications that need to maintain compatibility with the original exchange interface
8383 - Example:
8484 ``` python
85- from injective .async_client import AsyncClient
86- from injective .network import Network
85+ from pyinjective .async_client import AsyncClient
86+ from pyinjective .network import Network
8787
8888 async def main ():
8989 # Initialize client with mainnet
@@ -95,12 +95,12 @@ The Injective Python SDK provides two different clients for interacting with the
9595
96962 . ** Exchange V2 Client** (` async_client_v2 ` module):
9797 - Use this client for the latest exchange features and improvements
98- - Import using: ` from injective .async_client_v2 import AsyncClient `
98+ - Import using: ` from pyinjective .async_client_v2 import AsyncClient `
9999 - Recommended for new applications and when you need access to the latest exchange features
100100 - Example:
101101 ``` python
102- from injective .async_client_v2 import AsyncClient
103- from injective .network import Network
102+ from pyinjective .async_client_v2 import AsyncClient
103+ from pyinjective .network import Network
104104
105105 async def main ():
106106 # Initialize client with mainnet
You can’t perform that action at this time.
0 commit comments