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 +4 -4
- data/README.md +8 -6
- data/lib/quicknode_sdk/quicknode_sdk.so +0 -0
- 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: 6b522f6b2502433483e7aa1df35ca705757aaca5b9a95c034d63712b11911025
|
|
4
|
+
data.tar.gz: 5cbe3a8f8f90db40df5f0d2e6e4835cf5d0297d050419e0cbf591fb468bb5b26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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 `
|
|
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
|
|
1866
|
-
|
|
1867
|
-
|
|
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.
|
|
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-
|
|
11
|
+
date: 2026-08-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: hashie
|