quicknode_sdk 0.1.1 → 0.2.1
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 +14 -12
- 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: f442264cba673e6da1434863fe451152f141661cc601103421cd851a7e0ada37
|
|
4
|
+
data.tar.gz: 3784e45827093e3695f2d5b816b9d6a8626cdcdff1314d6e420fea6030ea35b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abf2b84b9c3083987658bddf939fcfbc7b69a709fa59367a61e9f33052f6cf2397e03d90b4fcc323d9848e1edc2548e0860b4fc991558b1012502c784e8f2371
|
|
7
|
+
data.tar.gz: 05accd80f693204e05184f298132c37035da39a5fb53d72a5e9437498bc748542c0f1710fb5bdf37818f49f29cb9ee0b24397cd2a168f86db2fdc8cd8776fe28
|
data/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Ruby bindings for the Quicknode SDK.
|
|
|
4
4
|
|
|
5
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
|
+
> **Pre-1.0**: While on `0.x`, releases may contain breaking changes. Check the [release notes](https://github.com/quicknode/sdk/releases) before upgrading.
|
|
8
|
+
|
|
7
9
|
## Table of Contents
|
|
8
10
|
|
|
9
11
|
- [Installation](#installation)
|
|
@@ -1261,20 +1263,20 @@ Accessed as `qn.webhooks`. Creates webhooks from filter templates and manages th
|
|
|
1261
1263
|
| `HyperliquidWalletEventsFilter` | `hyperliquidWalletEventsFilter` |
|
|
1262
1264
|
| `StellarWalletTransactionsSourceAccountFilter` | `stellarWalletTransactionsSourceAccountFilter` |
|
|
1263
1265
|
|
|
1264
|
-
`
|
|
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`):
|
|
1265
1267
|
|
|
1266
|
-
|
|
|
1268
|
+
| Template ID | Inline keys | ByList keys |
|
|
1267
1269
|
|---|---|---|
|
|
1268
|
-
| `
|
|
1269
|
-
| `
|
|
1270
|
-
| `
|
|
1271
|
-
| `
|
|
1272
|
-
| `
|
|
1273
|
-
| `
|
|
1274
|
-
| `
|
|
1275
|
-
| `
|
|
1276
|
-
|
|
1277
|
-
`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).
|
|
1278
1280
|
|
|
1279
1281
|
`WebhookStartFrom`: `Last` (resume from last delivered block) or `Latest` (start from newest).
|
|
1280
1282
|
|
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.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Quicknode
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: hashie
|