aptos-x402 2.3.0 → 2.3.2

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
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.3.2] - 2026-01-18
6
+
7
+ ### 📚 Documentation
8
+ - Updated landing page hero to highlight x402 v2 compliance
9
+
10
+ ## [2.3.1] - 2026-01-18
11
+
12
+ ### 📚 Documentation
13
+ - Updated facilitator URL to use the official public one: `https://aptos-x402.org/api/facilitator`
14
+
5
15
  ## [2.3.0] - 2026-01-17
6
16
 
7
17
  ### 🔴 Breaking Change (V2 Protocol Compliance)
package/README.md CHANGED
@@ -168,7 +168,8 @@ export const middleware = paymentMiddleware(
168
168
  }
169
169
  },
170
170
  {
171
- url: process.env.FACILITATOR_URL!
171
+ // Use the official public facilitator for free
172
+ url: "https://aptos-x402.org/api/facilitator"
172
173
  }
173
174
  );
174
175
 
@@ -637,7 +638,7 @@ The facilitator handles blockchain operations (verification and settlement) sepa
637
638
 
638
639
  | Option | Best For | Setup |
639
640
  |--------|----------|-------|
640
- | **Public Facilitator** | Development, testing, POCs | `FACILITATOR_URL=https://aptos-x402.org/api/facilitator` |
641
+ | **Public Facilitator** | Development, testing, POCs | `url: "https://aptos-x402.org/api/facilitator"` |
641
642
  | **Self-Hosted (Same App)** | Small to medium deployments | Copy facilitator routes to your Next.js app |
642
643
  | **Self-Hosted (Separate)** | Production, high scale | Deploy as standalone service |
643
644