From f94a42f17faba4e2d9867b61057d9bd06c97b574 Mon Sep 17 00:00:00 2001 From: Abel Armoa <30988000+aarmoa@users.noreply.github.com> Date: Tue, 29 Jul 2025 19:10:55 +0200 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a231bc85..d2ddf35b 100644 --- a/README.md +++ b/README.md @@ -78,12 +78,12 @@ The Injective Python SDK provides two different clients for interacting with the 1. **Exchange V1 Client** (`async_client` module): - Use this client if you need to interact with the original Injective Exchange API - - Import using: `from injective.async_client import AsyncClient` + - Import using: `from pyinjective.async_client import AsyncClient` - Suitable for applications that need to maintain compatibility with the original exchange interface - Example: ```python - from injective.async_client import AsyncClient - from injective.network import Network + from pyinjective.async_client import AsyncClient + from pyinjective.network import Network async def main(): # Initialize client with mainnet @@ -95,12 +95,12 @@ The Injective Python SDK provides two different clients for interacting with the 2. **Exchange V2 Client** (`async_client_v2` module): - Use this client for the latest exchange features and improvements - - Import using: `from injective.async_client_v2 import AsyncClient` + - Import using: `from pyinjective.async_client_v2 import AsyncClient` - Recommended for new applications and when you need access to the latest exchange features - Example: ```python - from injective.async_client_v2 import AsyncClient - from injective.network import Network + from pyinjective.async_client_v2 import AsyncClient + from pyinjective.network import Network async def main(): # Initialize client with mainnet