@x402/axios 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 +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -23,7 +23,7 @@ const account = privateKeyToAccount("0xYourPrivateKey");
23
23
  const api = wrapAxiosWithPaymentFromConfig(axios.create(), {
24
24
  schemes: [
25
25
  {
26
- network: "eip155:8453", // Base Sepolia
26
+ network: "eip155:8453", // Base Mainnet
27
27
  client: new ExactEvmScheme(account),
28
28
  },
29
29
  ],
@@ -151,7 +151,7 @@ const api = wrapAxiosWithPaymentFromConfig(axios.create(), {
151
151
  schemes: [
152
152
  // EVM chains
153
153
  {
154
- network: "eip155:8453", // Base Sepolia
154
+ network: "eip155:8453", // Base Mainnet
155
155
  client: new ExactEvmScheme(evmAccount),
156
156
  },
157
157
  // SVM chains
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x402/axios",
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
  "axios": "^1.7.9",
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
  ".": {