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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 731055e0f33dbdcce951cc7ba34b2716d77d10ec4e54944f34209bb9f4cbb7a1
4
- data.tar.gz: ee8f6a32939e6ec7d5f29459939716017c3d79d2581a3b0da4945ef5710c16a9
3
+ metadata.gz: 5963547008d999946b70613219cfc662e6eace458d8a2de3fe04fd0bc2f5e3af
4
+ data.tar.gz: b6e36dcbb2e3bb2902b4682facb0708da1f9595f7a953d14dc2cf565da5a92eb
5
5
  SHA512:
6
- metadata.gz: a234e1b45fbbeabbc6a1ff4d9d38a7aec0f86991b984145829e179a954a902af79ed9ca9006ca2ce7d30e5cbda792cc1cf7f389740c0e6e9feb023340b3e8271
7
- data.tar.gz: a4e158b5299cd826eb0a667cff6e13c73317c5cf6e6f736f51c9ef5481cc3a707c919b60455af3f79d3b146e41b59e24bebf1ce288c9a8bdd876b8c4cac993bd
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, optional), `name` (string, optional).
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
- `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`):
1267
1267
 
1268
- | Factory | Argument struct | Fields |
1268
+ | Template ID | Inline keys | ByList keys |
1269
1269
  |---|---|---|
1270
- | `evm_wallet_filter` | `EvmWalletFilterTemplate` | `wallets: string[]` |
1271
- | `evm_contract_events` | `EvmContractEventsTemplate` | `contracts: string[]`, `eventHashes?: string[]` (camelCase — `event_hashes` is rejected by the API) |
1272
- | `evm_abi_filter` | `EvmAbiFilterTemplate` | `abi: string` (JSON), `contracts: string[]` |
1273
- | `solana_wallet_filter` | `SolanaWalletFilterTemplate` | `accounts: string[]` |
1274
- | `bitcoin_wallet_filter` | `BitcoinWalletFilterTemplate` | `wallets: string[]` |
1275
- | `xrpl_wallet_filter` | `XrplWalletFilterTemplate` | `wallets: string[]` |
1276
- | `hyperliquid_wallet_events_filter` | `HyperliquidWalletEventsFilterTemplate` | `wallets: string[]` |
1277
- | `stellar_wallet_transactions_filter` | `StellarWalletTransactionsFilterTemplate` | `source_accounts: string[]` |
1278
-
1279
- `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).
1280
1280
 
1281
1281
  `WebhookStartFrom`: `Last` (resume from last delivered block) or `Latest` (start from newest).
1282
1282
 
Binary file
@@ -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, ?public_key: String, ?kid: String, ?name: String) -> void
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.2.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-05-29 00:00:00.000000000 Z
11
+ date: 2026-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hashie