quicknode_sdk 0.2.0-arm64-darwin → 0.3.0-arm64-darwin
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.
- checksums.yaml +4 -4
- data/README.md +13 -13
- data/lib/quicknode_sdk/quicknode_sdk.bundle +0 -0
- data/sig/quicknode_sdk.rbs +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5963547008d999946b70613219cfc662e6eace458d8a2de3fe04fd0bc2f5e3af
|
|
4
|
+
data.tar.gz: b6e36dcbb2e3bb2902b4682facb0708da1f9595f7a953d14dc2cf565da5a92eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73293ffe65403448a7efbcdfabcd6bc66d80d50a8b84780904f2b37c2c62f731e15983e40a27daa4b6ecc99ad5bfaab8604513a70bd870a99a7fab68ad3ee60c
|
|
7
|
+
data.tar.gz: fd4bfd3045f35c766fe0eb16f487971b234540c604f6d68c21b69da2edce7e1a1b58cabbf4252c6b492115bb13b1840a7fa166c1d3c49059252927959fe603b6
|
data/README.md
CHANGED
|
@@ -631,7 +631,7 @@ qn.admin.delete_domain_mask(id: "ep-123", domain_mask_id: "dm-1")
|
|
|
631
631
|
|
|
632
632
|
Configures JWT validation on an endpoint.
|
|
633
633
|
|
|
634
|
-
**Parameters**: `id` (endpoint id, required); body: `public_key` (string, optional), `kid` (string,
|
|
634
|
+
**Parameters**: `id` (endpoint id, required); body: `public_key` (string, optional), `kid` (string, required), `name` (string, optional).
|
|
635
635
|
|
|
636
636
|
**Returns**: nothing.
|
|
637
637
|
|
|
@@ -1263,20 +1263,20 @@ Accessed as `qn.webhooks`. Creates webhooks from filter templates and manages th
|
|
|
1263
1263
|
| `HyperliquidWalletEventsFilter` | `hyperliquidWalletEventsFilter` |
|
|
1264
1264
|
| `StellarWalletTransactionsSourceAccountFilter` | `stellarWalletTransactionsSourceAccountFilter` |
|
|
1265
1265
|
|
|
1266
|
-
`
|
|
1266
|
+
In Ruby `template_args` is a JSON string; each template supports two input forms — inline values or a reference to a pre-created list by name (the server disambiguates by which keys are present in `templateArgs`):
|
|
1267
1267
|
|
|
1268
|
-
|
|
|
1268
|
+
| Template ID | Inline keys | ByList keys |
|
|
1269
1269
|
|---|---|---|
|
|
1270
|
-
| `
|
|
1271
|
-
| `
|
|
1272
|
-
| `
|
|
1273
|
-
| `
|
|
1274
|
-
| `
|
|
1275
|
-
| `
|
|
1276
|
-
| `
|
|
1277
|
-
| `
|
|
1278
|
-
|
|
1279
|
-
`WebhookDestinationAttributes`: `url` (required), `
|
|
1270
|
+
| `evmWalletFilter` | `wallets: string[]` | `walletsListName: string` |
|
|
1271
|
+
| `evmContractEvents` | `contracts: string[]`, `eventHashes: string[]` (camelCase — `event_hashes` is rejected by the API) | `contractsListName: string`, `eventHashesListName?: string` |
|
|
1272
|
+
| `evmAbiFilter` | `abi: string` (JSON), `contracts: string[]` | `abiJson: string`, `contractsListName?: string` |
|
|
1273
|
+
| `solanaWalletFilter` | `accounts: string[]` | `accountsListName: string` |
|
|
1274
|
+
| `bitcoinWalletFilter` | `wallets: string[]` | `walletsListName: string` |
|
|
1275
|
+
| `xrplWalletFilter` | `wallets: string[]` | `walletsListName: string` |
|
|
1276
|
+
| `hyperliquidWalletEventsFilter` | `wallets: string[]` | `walletsListName: string` |
|
|
1277
|
+
| `stellarWalletTransactionsSourceAccountFilter` | `wallets: string[]` | `walletsListName: string` |
|
|
1278
|
+
|
|
1279
|
+
`WebhookDestinationAttributes`: `url` (required), `compression` (required — `"none"` | `"gzip"`), `security_token` (optional — auto-generated if omitted).
|
|
1280
1280
|
|
|
1281
1281
|
`WebhookStartFrom`: `Last` (resume from last delivered block) or `Latest` (start from newest).
|
|
1282
1282
|
|
|
Binary file
|
data/sig/quicknode_sdk.rbs
CHANGED
|
@@ -70,7 +70,7 @@ module QuicknodeSdk
|
|
|
70
70
|
def delete_ip: (id: String, ip_id: String) -> untyped
|
|
71
71
|
def create_domain_mask: (id: String, ?domain_mask: String) -> void
|
|
72
72
|
def delete_domain_mask: (id: String, domain_mask_id: String) -> untyped
|
|
73
|
-
def create_jwt: (id: String,
|
|
73
|
+
def create_jwt: (id: String, kid: String, ?public_key: String, ?name: String) -> void
|
|
74
74
|
def delete_jwt: (id: String, jwt_id: String) -> void
|
|
75
75
|
def create_request_filter: (id: String, ?methods: Array[String]) -> untyped
|
|
76
76
|
def update_request_filter: (id: String, request_filter_id: String, ?methods: Array[String]) -> void
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: quicknode_sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: arm64-darwin
|
|
6
6
|
authors:
|
|
7
7
|
- Quicknode
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: hashie
|