@piprail/sdk 2.16.0 → 2.16.1

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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,26 @@ All notable changes to `@piprail/sdk` are documented here. The format
4
4
  follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the
5
5
  versions follow [Semantic Versioning](https://semver.org/).
6
6
 
7
+ ## [2.16.1] — 2026-09-06 — GoPlausible settles Solana, live-proven
8
+
9
+ ### Added
10
+
11
+ - **GoPlausible is now seeded as a keyless Solana facilitator.** They told us directly that they
12
+ settle Solana as well as Algorand and Base, and they were right: their `/supported` advertises
13
+ `solana:5eykt4Us…` `exact` with a sponsor fee payer, and PipRail's own `facilitatorCoverage()`
14
+ reads the same.
15
+
16
+ **Live-proven on Solana mainnet 2026-09-06** rather than taken on trust. A real
17
+ `402 → pay → verify → 200` round trip on the `exact` rail: the merchant received exactly
18
+ 0.01 USDC, the **buyer paid 0 SOL**, GoPlausible's sponsor `8a8fFNfk…RAYi` paid the
19
+ 10,001-lamport fee (confirmed by reading `accountKeys[0]` on the settled transaction), and a
20
+ replay of the same proof was rejected. Tx
21
+ `3DEGg6Lue8471meBH8hbLxV1bLmZGKvmvmSY3tjg7tQFnxzE9GQXUXokjQnZgTqaEU4SaXuY9F7v3m7JsX5xDgrZ`.
22
+
23
+ Solana previously seeded only PayAI and OpenFacilitator, so this is a third keyless option on
24
+ that chain. No default changes: the seed list is a convenience, and the SDK still depends on no
25
+ facilitator.
26
+
7
27
  ## [2.16.0] — 2026-09-06 — the XRP Ledger `exact` buyer, and paying the 91% of the x402 web we could not
8
28
 
9
29
  ### Added — the XRP Ledger `exact` buyer (stage 04, first family)
@@ -2110,6 +2130,7 @@ straight into your wallet. The API is small and self-contained.
2110
2130
  to your wallet; PipRail never holds funds.
2111
2131
  - `viem ^2.21` is a peer dependency. Node 20+ or a modern browser.
2112
2132
 
2133
+ [2.16.1]: https://www.npmjs.com/package/@piprail/sdk
2113
2134
  [2.16.0]: https://www.npmjs.com/package/@piprail/sdk
2114
2135
  [2.15.1]: https://www.npmjs.com/package/@piprail/sdk
2115
2136
  [2.15.0]: https://www.npmjs.com/package/@piprail/sdk
package/dist/index.cjs CHANGED
@@ -5831,6 +5831,13 @@ var KNOWN_FACILITATORS = {
5831
5831
  schemes: ["exact"],
5832
5832
  settles: ["svm"],
5833
5833
  note: "OpenFacilitator: keyless (no signup), fee-payer sponsor. LIVE-settled on Solana 2026-06-15 (tx 5BabDtX\u2026)."
5834
+ },
5835
+ {
5836
+ url: "https://facilitator.goplausible.xyz",
5837
+ keyless: true,
5838
+ schemes: ["exact"],
5839
+ settles: ["svm"],
5840
+ note: "GoPlausible: keyless fee-payer sponsor (Solana SPL SVM). LIVE-settled on Solana mainnet 2026-09-06 (tx 3DEGg6Lue8471meBH8hbLxV1bLmZGKvmvmSY3tjg7tQFnxzE9GQXUXokjQnZgTqaEU4SaXuY9F7v3m7JsX5xDgrZ): buyer paid 0 SOL, GoPlausible's sponsor 8a8fFNfk\u2026 paid the 10,001-lamport fee, replay rejected."
5834
5841
  }
5835
5842
  ]
5836
5843
  // NEAR (near:mainnet) — DELIBERATELY UNSEEDED: no x402 facilitator settles NEAR yet.
package/dist/index.js CHANGED
@@ -5831,6 +5831,13 @@ var KNOWN_FACILITATORS = {
5831
5831
  schemes: ["exact"],
5832
5832
  settles: ["svm"],
5833
5833
  note: "OpenFacilitator: keyless (no signup), fee-payer sponsor. LIVE-settled on Solana 2026-06-15 (tx 5BabDtX\u2026)."
5834
+ },
5835
+ {
5836
+ url: "https://facilitator.goplausible.xyz",
5837
+ keyless: true,
5838
+ schemes: ["exact"],
5839
+ settles: ["svm"],
5840
+ note: "GoPlausible: keyless fee-payer sponsor (Solana SPL SVM). LIVE-settled on Solana mainnet 2026-09-06 (tx 3DEGg6Lue8471meBH8hbLxV1bLmZGKvmvmSY3tjg7tQFnxzE9GQXUXokjQnZgTqaEU4SaXuY9F7v3m7JsX5xDgrZ): buyer paid 0 SOL, GoPlausible's sponsor 8a8fFNfk\u2026 paid the 10,001-lamport fee, replay rejected."
5834
5841
  }
5835
5842
  ]
5836
5843
  // NEAR (near:mainnet) — DELIBERATELY UNSEEDED: no x402 facilitator settles NEAR yet.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@piprail/sdk",
3
- "version": "2.16.0",
3
+ "version": "2.16.1",
4
4
  "description": "Accept x402 crypto payments across 29 chains — every major EVM chain plus Solana, TON, Tron, NEAR, Sui, Aptos, Algorand, Stellar & XRPL — in a couple of lines. No backend, no database, no fee; payments settle straight to your wallet.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",