quicknode_sdk 0.1.1-x86_64-linux → 0.2.1-x86_64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 831520b7c058fba47036e35432a281d4628e40731d6d5899c935c1607ab153ed
4
- data.tar.gz: d3815557402b0dee882bfde28b6d6056b53b39ec95fecbf32bf6f46af666d7ff
3
+ metadata.gz: 5f8044605d77bdc1b8484d11d64c7c9b492277bd62bf188964a69865542bcd5a
4
+ data.tar.gz: 3859bb25071acfd7baca1738801ff7025c314d32fb4659d3350d0bfd60a908ca
5
5
  SHA512:
6
- metadata.gz: 6da58fbc00a335ce58f5e962a0f053f04e6cbedc098e55cf097f9023f1087269b7cafc0109e467ead48c102d8cb01c3c736f23001bb20f07071f9342a1fb7166
7
- data.tar.gz: 87d37429f4f950e9c03a6b0789a06d0e442147ce0d51af40c4661f92379469afa82962f5b8a304ae97e891a00f3ca5f9fa2e441754dea70f51d8d90fe522ac31
6
+ metadata.gz: 647f6157eeab1880ac3a86f64b0227b7b36723edc7364b41ed6a59c2b47570e82879a00e130f5fcb709546464aeda00a0f74e746ca02e1a25b8579e99611928f
7
+ data.tar.gz: 57ea23cc3cd0d6932ebfd48dfef94bf2fe082dd31ca956cdd11e1ae4c3ee01ce9caf4c9ccac6904588bba2ba2069cde8511faeb990d22447a63e6e8783454609
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
- `TemplateArgs` carries the arguments; construct one per template via the factory methods:
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
- | Factory | Argument struct | Fields |
1268
+ | Template ID | Inline keys | ByList keys |
1267
1269
  |---|---|---|
1268
- | `evm_wallet_filter` | `EvmWalletFilterTemplate` | `wallets: string[]` |
1269
- | `evm_contract_events` | `EvmContractEventsTemplate` | `contracts: string[]`, `eventHashes?: string[]` (camelCase — `event_hashes` is rejected by the API) |
1270
- | `evm_abi_filter` | `EvmAbiFilterTemplate` | `abi: string` (JSON), `contracts: string[]` |
1271
- | `solana_wallet_filter` | `SolanaWalletFilterTemplate` | `accounts: string[]` |
1272
- | `bitcoin_wallet_filter` | `BitcoinWalletFilterTemplate` | `wallets: string[]` |
1273
- | `xrpl_wallet_filter` | `XrplWalletFilterTemplate` | `wallets: string[]` |
1274
- | `hyperliquid_wallet_events_filter` | `HyperliquidWalletEventsFilterTemplate` | `wallets: string[]` |
1275
- | `stellar_wallet_transactions_filter` | `StellarWalletTransactionsFilterTemplate` | `source_accounts: string[]` |
1276
-
1277
- `WebhookDestinationAttributes`: `url` (required), `security_token` (optionalauto-generated if omitted), `compression` (optional — `"none"` | `"gzip"`).
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
 
Binary file
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.1.1
4
+ version: 0.2.1
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Quicknode
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-28 00:00:00.000000000 Z
11
+ date: 2026-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hashie