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 84ae362 commit 2c28d62Copy full SHA for 2c28d62
README.md
@@ -26,18 +26,14 @@ from deltadefi.clients.clients import ApiClient
26
from sidan_gin import HDWallet
27
28
# Initialize API configuration
29
-config = ApiConfig(
30
- network="mainnet",
31
- jwt="your_jwt_token",
32
- apiKey="your_api_key",
33
- signingKey="your_signing_key"
34
-)
+network="mainnet",
+api_key="your_api_key",
35
36
# Initialize HDWallet
37
wallet = HDWallet("your_wallet_mnemonic")
38
39
# Initialize ApiClient
40
-api_client = ApiClient(config=config, wallet=wallet)
+api_client = ApiClient(network=network, api_key=api_key, wallet=wallet)
41
```
42
43
### Accounts
0 commit comments