hyperliquid-sdk 0.7.0__tar.gz → 0.7.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/PKG-INFO +4 -2
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/README.md +2 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/__init__.py +1 -1
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/pyproject.toml +2 -2
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/.gitignore +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/LICENSE +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/client.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/errors.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/evm.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/evm_stream.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/grpc_stream.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/hypercore.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/info.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/order.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/proto/__init__.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/proto/orderbook.proto +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/proto/orderbook_pb2.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/proto/orderbook_pb2_grpc.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/proto/streaming.proto +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/proto/streaming_pb2.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/proto/streaming_pb2_grpc.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/py.typed +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/hyperliquid_sdk/websocket.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/tests/__init__.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/tests/conftest.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/tests/test_hypercore.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/tests/test_info.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/tests/test_order.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/tests/test_sdk.py +0 -0
- {hyperliquid_sdk-0.7.0 → hyperliquid_sdk-0.7.2}/tests/test_websocket.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hyperliquid-sdk
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.2
|
|
4
4
|
Summary: Community SDK for Hyperliquid. One line to place orders, zero ceremony. HyperCore, HyperEVM, WebSocket and gRPC streams. Not affiliated with Hyperliquid Foundation.
|
|
5
5
|
Project-URL: Homepage, https://hyperliquidapi.com
|
|
6
|
-
Project-URL: Documentation, https://
|
|
6
|
+
Project-URL: Documentation, https://www.quicknode.com/docs/hyperliquid/api-overview
|
|
7
7
|
Project-URL: Repository, https://github.com/quiknode-labs/hyperliquid-sdk
|
|
8
8
|
Project-URL: Examples, https://github.com/quiknode-labs/hyperliquid-examples
|
|
9
9
|
Project-URL: Changelog, https://github.com/quiknode-labs/hyperliquid-sdk/releases
|
|
@@ -95,6 +95,8 @@ print(order.oid) # Order ID
|
|
|
95
95
|
|
|
96
96
|
All data APIs are accessed through the SDK instance.
|
|
97
97
|
|
|
98
|
+
You can create a Hyperliquid endpoint on [Quicknode](https://www.quicknode.com/) to get access to the data APIs.
|
|
99
|
+
|
|
98
100
|
### Info API
|
|
99
101
|
|
|
100
102
|
50+ methods for account state, positions, market data, and metadata.
|
|
@@ -54,6 +54,8 @@ print(order.oid) # Order ID
|
|
|
54
54
|
|
|
55
55
|
All data APIs are accessed through the SDK instance.
|
|
56
56
|
|
|
57
|
+
You can create a Hyperliquid endpoint on [Quicknode](https://www.quicknode.com/) to get access to the data APIs.
|
|
58
|
+
|
|
57
59
|
### Info API
|
|
58
60
|
|
|
59
61
|
50+ methods for account state, positions, market data, and metadata.
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "hyperliquid-sdk"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.2"
|
|
8
8
|
description = "Community SDK for Hyperliquid. One line to place orders, zero ceremony. HyperCore, HyperEVM, WebSocket and gRPC streams. Not affiliated with Hyperliquid Foundation."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -52,7 +52,7 @@ dependencies = [
|
|
|
52
52
|
|
|
53
53
|
[project.urls]
|
|
54
54
|
Homepage = "https://hyperliquidapi.com"
|
|
55
|
-
Documentation = "https://
|
|
55
|
+
Documentation = "https://www.quicknode.com/docs/hyperliquid/api-overview"
|
|
56
56
|
Repository = "https://github.com/quiknode-labs/hyperliquid-sdk"
|
|
57
57
|
Examples = "https://github.com/quiknode-labs/hyperliquid-examples"
|
|
58
58
|
Changelog = "https://github.com/quiknode-labs/hyperliquid-sdk/releases"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|