@x402/fetch 2.4.0 → 2.5.0

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -22,7 +22,7 @@ const account = privateKeyToAccount("0xYourPrivateKey");
22
22
  const fetchWithPayment = wrapFetchWithPaymentFromConfig(fetch, {
23
23
  schemes: [
24
24
  {
25
- network: "eip155:8453", // Base Sepolia
25
+ network: "eip155:8453", // Base Mainnet
26
26
  client: new ExactEvmScheme(account),
27
27
  },
28
28
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x402/fetch",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "main": "./dist/cjs/index.js",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -29,7 +29,7 @@
29
29
  "dependencies": {
30
30
  "viem": "^2.39.3",
31
31
  "zod": "^3.24.2",
32
- "@x402/core": "~2.4.0"
32
+ "@x402/core": "~2.5.0"
33
33
  },
34
34
  "exports": {
35
35
  ".": {