quicknode-sdk 0.1.0a29__tar.gz → 0.1.0a30__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.
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/Cargo.lock +5 -5
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/Cargo.toml +1 -1
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/PKG-INFO +5 -5
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/Cargo.toml +2 -2
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/README.md +1 -1
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/pyproject.toml +4 -4
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/python/README.md +1 -1
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/LICENSE +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/LICENSE +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/examples/admin.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/examples/admin_e2e.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/examples/kvstore_e2e.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/examples/streams.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/examples/streams_e2e.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/examples/webhooks_e2e.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/billing.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/bulk.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/chains.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/endpoint_metrics.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/endpoint_rate_limits.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/endpoint_security.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/endpoint_urls.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/endpoints.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/logs.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/mod.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/tags.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/teams.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/usage.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/config.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/errors.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/kvstore/mod.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/lib.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/streams/mod.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/streams/stream.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/webhooks/mod.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/webhooks/webhook.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/python/Cargo.toml +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/python/src/errors.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/python/src/lib.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/python/src/streams_destination.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/python/src/webhooks_template.rs +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/python/sdk/__init__.py +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/python/sdk/__init__.pyi +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/python/sdk/_core/__init__.pyi +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/python/sdk/init_manual_override.pyi +0 -0
- {quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/python/sdk/py.typed +0 -0
|
@@ -1700,7 +1700,7 @@ dependencies = [
|
|
|
1700
1700
|
|
|
1701
1701
|
[[package]]
|
|
1702
1702
|
name = "quicknode-sdk"
|
|
1703
|
-
version = "0.1.0-alpha.
|
|
1703
|
+
version = "0.1.0-alpha.30"
|
|
1704
1704
|
dependencies = [
|
|
1705
1705
|
"bon",
|
|
1706
1706
|
"config",
|
|
@@ -2177,7 +2177,7 @@ dependencies = [
|
|
|
2177
2177
|
|
|
2178
2178
|
[[package]]
|
|
2179
2179
|
name = "sdk-node"
|
|
2180
|
-
version = "0.1.0-alpha.
|
|
2180
|
+
version = "0.1.0-alpha.30"
|
|
2181
2181
|
dependencies = [
|
|
2182
2182
|
"napi",
|
|
2183
2183
|
"napi-build",
|
|
@@ -2189,7 +2189,7 @@ dependencies = [
|
|
|
2189
2189
|
|
|
2190
2190
|
[[package]]
|
|
2191
2191
|
name = "sdk-python"
|
|
2192
|
-
version = "0.1.0-alpha.
|
|
2192
|
+
version = "0.1.0-alpha.30"
|
|
2193
2193
|
dependencies = [
|
|
2194
2194
|
"pyo3",
|
|
2195
2195
|
"pyo3-async-runtimes",
|
|
@@ -2200,7 +2200,7 @@ dependencies = [
|
|
|
2200
2200
|
|
|
2201
2201
|
[[package]]
|
|
2202
2202
|
name = "sdk-python-stubs"
|
|
2203
|
-
version = "0.1.0-alpha.
|
|
2203
|
+
version = "0.1.0-alpha.30"
|
|
2204
2204
|
dependencies = [
|
|
2205
2205
|
"pyo3-stub-gen",
|
|
2206
2206
|
"sdk-python",
|
|
@@ -2208,7 +2208,7 @@ dependencies = [
|
|
|
2208
2208
|
|
|
2209
2209
|
[[package]]
|
|
2210
2210
|
name = "sdk-ruby"
|
|
2211
|
-
version = "0.1.0-alpha.
|
|
2211
|
+
version = "0.1.0-alpha.30"
|
|
2212
2212
|
dependencies = [
|
|
2213
2213
|
"magnus",
|
|
2214
2214
|
"quicknode-sdk",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quicknode-sdk
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a30
|
|
4
4
|
Classifier: Intended Audience :: Developers
|
|
5
5
|
Classifier: License :: OSI Approved :: MIT License
|
|
6
6
|
Classifier: Operating System :: POSIX :: Linux
|
|
@@ -18,15 +18,15 @@ Author-email: John Mitsch <john@quicknode.com>
|
|
|
18
18
|
License: MIT
|
|
19
19
|
Requires-Python: >=3.11
|
|
20
20
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
21
|
-
Project-URL: Homepage, https://github.com/
|
|
22
|
-
Project-URL: Issues, https://github.com/
|
|
23
|
-
Project-URL: Repository, https://github.com/
|
|
21
|
+
Project-URL: Homepage, https://github.com/quicknode/sdk
|
|
22
|
+
Project-URL: Issues, https://github.com/quicknode/sdk/issues
|
|
23
|
+
Project-URL: Repository, https://github.com/quicknode/sdk
|
|
24
24
|
|
|
25
25
|
# quicknode-sdk (Python)
|
|
26
26
|
|
|
27
27
|
Python bindings for the Quicknode SDK.
|
|
28
28
|
|
|
29
|
-
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/
|
|
29
|
+
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quicknode/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.
|
|
30
30
|
|
|
31
31
|
## Table of Contents
|
|
32
32
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "quicknode-sdk"
|
|
3
|
-
version = "0.1.0-alpha.
|
|
3
|
+
version = "0.1.0-alpha.30"
|
|
4
4
|
edition.workspace = true
|
|
5
5
|
license.workspace = true
|
|
6
6
|
description = "Core library for quicknode sdk"
|
|
7
|
-
repository = "https://github.com/
|
|
7
|
+
repository = "https://github.com/quicknode/sdk"
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
keywords = ["quicknode", "blockchain", "web3", "sdk"]
|
|
10
10
|
categories = ["api-bindings", "web-programming"]
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
The core Rust crate for the Quicknode SDK.
|
|
4
4
|
|
|
5
|
-
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/
|
|
5
|
+
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quicknode/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.
|
|
6
6
|
|
|
7
7
|
## Table of Contents
|
|
8
8
|
|
|
@@ -4,7 +4,7 @@ build-backend = "maturin"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "quicknode-sdk"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.0a30"
|
|
8
8
|
description = "Quicknode SDK"
|
|
9
9
|
readme = "python/README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -25,9 +25,9 @@ classifiers = [
|
|
|
25
25
|
]
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
|
28
|
-
Homepage = "https://github.com/
|
|
29
|
-
Repository = "https://github.com/
|
|
30
|
-
Issues = "https://github.com/
|
|
28
|
+
Homepage = "https://github.com/quicknode/sdk"
|
|
29
|
+
Repository = "https://github.com/quicknode/sdk"
|
|
30
|
+
Issues = "https://github.com/quicknode/sdk/issues"
|
|
31
31
|
|
|
32
32
|
[tool.maturin]
|
|
33
33
|
manifest-path = "crates/python/Cargo.toml"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Python bindings for the Quicknode SDK.
|
|
4
4
|
|
|
5
|
-
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/
|
|
5
|
+
This is one of four language bindings published from the same Rust core. See the [project README](https://github.com/quicknode/sdk/blob/main/README.md) for the polyglot overview, development setup, and release process.
|
|
6
6
|
|
|
7
7
|
## Table of Contents
|
|
8
8
|
|
|
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
|
{quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/endpoint_rate_limits.rs
RENAMED
|
File without changes
|
{quicknode_sdk-0.1.0a29 → quicknode_sdk-0.1.0a30}/crates/core/src/admin/endpoint_security.rs
RENAMED
|
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
|