paygate 5.3.0 → 5.3.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/README.md +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# paygate
|
|
2
2
|
|
|
3
|
-
Create agent-payable offers with HTTP 402 and USDC settlement. PayGate handles the x402 challenge, calls the ArisPay facilitator, and lets your handler run only after payment settles.
|
|
3
|
+
Create agent-payable offers with HTTP 402 and USDC settlement. PayGate handles the x402 challenge, calls the [ArisPay facilitator](https://facilitator.arispay.app), and lets your handler run only after payment settles.
|
|
4
4
|
|
|
5
5
|
API endpoint offers are live today. Use the hosted proxy for zero-code acceptance, or install this package when you want the 402 flow on your own domain.
|
|
6
6
|
|
|
@@ -158,6 +158,10 @@ Older code that passes `wallet` and `network` still works through a v2 shim, but
|
|
|
158
158
|
|
|
159
159
|
PayGate currently settles USDC on EVM networks advertised by your merchant capability manifest. Base mainnet (`eip155:8453`) is the recommended production network.
|
|
160
160
|
|
|
161
|
+
## Facilitator
|
|
162
|
+
|
|
163
|
+
PayGate settles through [**facilitator.arispay.app**](https://facilitator.arispay.app) by default — an open x402 facilitator, live on Base mainnet, settling USDC and EURC. No facilitator fee and no gas subsidy: the seller pays chain gas and nobody else (self-settle with your own key, or the default relayer path). The live policy is machine-readable at [`/supported`](https://facilitator.arispay.app/supported); the discovery document is at [`/facilitator`](https://facilitator.arispay.app/facilitator). Point `facilitatorUrl` elsewhere if you run your own.
|
|
164
|
+
|
|
161
165
|
## License
|
|
162
166
|
|
|
163
167
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "paygate",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.1",
|
|
4
4
|
"description": "Accept payment from AI agents in two lines of code. Gate any Express or Fastify route with an x402 paywall — USD (USDC) or EUR (EURC) pricing, settled on Base mainnet via ArisPay's facilitator.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|