Upgrade to quicknode-sdk 0.3#42
Merged
Merged
Conversation
…support ByList templates SDK 0.3 made several request fields non-optional and reshaped webhook template args: - CreateJwtRequest.kid is now required, so `--kid` is required on `qn endpoint security jwt add`. - WebhookDestinationAttributes.compression is now required, so `--compression` is required on `qn webhook create`; update/update-template require it only when `--url` is supplied. - Each TemplateArgs variant now wraps an Inline/ByList input enum. Added `--*-list-name` flags so a template can reference a saved list instead of inline values; supply the inline flag or the list-name flag, not both. - evm-contract-events event_hashes is now a required Vec. Updates the embedded `agent context` guide. Adds 4 webhook tests (ByList, evm-abi ByList, inline+list conflict, missing compression) and 2 JWT tests (add-with-kid, requires-kid). Full suite green.
ErikTech
approved these changes
Jun 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps
quicknode-sdkto 0.3 and adapts the CLI to its required-field and webhook-template changes.Changes
--kidrequired.CreateJwtRequest.kidis now non-optional, soqn endpoint security jwt addrequires--kid.--compressionrequired. Required oncreate; onupdate/update-templateit is required only when--urlis supplied.--wallets-list-name,--accounts-list-name,--contracts-list-name,--event-hashes-list-name. A list-name flag references a saved list (ByList) instead of inline values; supply the inline flag or the list-name flag, not both.evm-contract-eventsevent_hashes(now a requiredVec).qn agent contextguide.Tests
All green. Added 4 webhook tests (ByList, evm-abi ByList, inline+list conflict, missing compression) and 2 JWT tests (add-with-kid, requires-kid).