quicknode_sdk 0.8.0-aarch64-linux → 0.8.2-aarch64-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: 5c42b0ba3d187a9e5a823093d93f64b6ca6dc6b6f9e0d6d92ed2670ef661546e
4
- data.tar.gz: 1ad80dd5b4316b4f7e5304c5506d2a1291b88265c5e0bc47de51585dd407800d
3
+ metadata.gz: 6b522f6b2502433483e7aa1df35ca705757aaca5b9a95c034d63712b11911025
4
+ data.tar.gz: 5cbe3a8f8f90db40df5f0d2e6e4835cf5d0297d050419e0cbf591fb468bb5b26
5
5
  SHA512:
6
- metadata.gz: d6eb3c35b176ee10b7baae91d69a6b6f4cebb5caee6c9c12ec9f7a67db835975c87262c49da6f014b5f392f46eaf61f59c2449e8d2f0d1619604ad274ddb7f5b
7
- data.tar.gz: 5ebd179e159ca620023fc27191388adb481eb2fd3bdf475ea50997617f4bd5f7e4f12a08b0db2957ccfdf6b8945ba1b9ad48cdf6a2f704c8f200e6873ba56f5c
6
+ metadata.gz: 10f585054a7ae7fc87245e9ac005ea2626efe1a695dab29a642ae6171e819e48f8ba749affe97714cc0155a110fa5ffddb25d1852d8032ce570ce901de8d9c54
7
+ data.tar.gz: ed5debf841bfd1229ee199ff9b200bf869beaa12a6249d4b48a9a80dcdff6a2f569cf4ec63f56c4a391f9d40248f07c106a3e7b094060b7dc29da3b83e17711f
data/README.md CHANGED
@@ -1830,7 +1830,7 @@ File.write("payment.key", wallet[:key]) # returned exactly once
1830
1830
 
1831
1831
  ### x402 credit drawdown (authenticate once, then draw one credit per call)
1832
1832
 
1833
- Cheaper per call than paying per request: one SIWE signature mints a session JWT, then
1833
+ Cheaper per call than paying per request: one SIWE or SIWS signature mints a session JWT, then
1834
1834
  each call draws a single credit from the account balance instead of signing a fresh
1835
1835
  settlement. Minting the session is free and moves no funds, so a host can re-authenticate
1836
1836
  transparently. Persist it between processes.
@@ -1838,14 +1838,15 @@ transparently. Persist it between processes.
1838
1838
  Fund the payment wallet out of band — the testnet faucet below, or by sending funds to
1839
1839
  `payment_address` directly. Credits are provisioned against the account gateway-side.
1840
1840
 
1841
- EVM signers only: SIWE is an EIP-4361 construction, so an x402/Solana key errors here.
1841
+ EVM payment networks use SIWE. Solana payment networks use SIWS with an Ed25519
1842
+ signature encoded as Base58.
1842
1843
 
1843
1844
  | Method | Cost | Returns |
1844
1845
  |---|---|---|
1845
1846
  | `payment_address` | free, offline | the wallet address derived from the key |
1846
1847
  | `gateway_authenticate` | free | a Hash `{token:, exp_unix:, account_id:}` |
1847
1848
  | `gateway_credits(session:)` | free | a Hash `{account_id:, credits:}` |
1848
- | `gateway_drip(session:)` | free (testnet) | a Hash `{account_id:, transaction_hash:}` |
1849
+ | `gateway_drip(session:)` | free (testnet) | a Hash with `transfer_id:` or `transaction_hash:` |
1849
1850
  | `gateway_drawdown_call(method:, session:, network:, params:)` | 1 credit | the JSON-RPC `result` |
1850
1851
 
1851
1852
  ```ruby
@@ -1862,9 +1863,10 @@ that call.
1862
1863
 
1863
1864
  #### Testnet faucet
1864
1865
 
1865
- `gateway_drip` requests testnet tokens for the payment **wallet** on Base Sepolia. The
1866
- gateway allows one drip per account, and it returns the on-chain funding transaction hash
1867
- not a credit balance.
1866
+ `gateway_drip` requests testnet tokens for the payment **wallet**. Circle Gateway-backed
1867
+ networks return `transfer_id` because settlement is asynchronous. Direct-transfer
1868
+ networks such as Arc Testnet return `transaction_hash`. The response is not a credit
1869
+ balance; call `gateway_credits` separately.
1868
1870
 
1869
1871
  ### MPP payment channel (deposit once, then vouchers)
1870
1872
 
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.8.0
4
+ version: 0.8.2
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Quicknode
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-08-04 00:00:00.000000000 Z
11
+ date: 2026-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hashie