quicknode_sdk 0.8.0-x86_64-linux → 0.8.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 +4 -4
- data/README.md +4 -2
- data/lib/quicknode_sdk/quicknode_sdk.so +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9031d944f5187fdca6959fe082a32dc8fd54c4704ea0b7c8e167146f7cdb001f
|
|
4
|
+
data.tar.gz: 7ab51617526d7de4913ee7700fb16a873c5b6236fa1f9c4a804b1e6499165dbc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91e67d2f3d35bb89b2af348526723eb12f180d5f8910ebc8479049c1d32bc3591da7edb5762b2e09e3719e3bbc598a51f7afc126c60093b171c4f4dda9757910
|
|
7
|
+
data.tar.gz: 4bb7ad2549a739bf1e3560df9fab029bbbf94adebabb70a928b289c850e2fd0380c4cb5b237d4aafdc4b43d051bf52d15f4f522d1a035263f259b0437d64635f
|
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,7 +1838,9 @@ 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. Solana wallets must be funded out of band; the faucet
|
|
1843
|
+
is available for Base Sepolia only.
|
|
1842
1844
|
|
|
1843
1845
|
| Method | Cost | Returns |
|
|
1844
1846
|
|---|---|---|
|
|
Binary file
|