Skip to content

Commit 9519524

Browse files
authored
Merge pull request #393 from InjectiveLabs/chore/fix_typo_in_readme
chore/fix_typo_readme
2 parents ad289d5 + f94a42f commit 9519524

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ The Injective Python SDK provides two different clients for interacting with the
7878

7979
1. **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

9696
2. **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

0 commit comments

Comments
 (0)