@x402/evm 2.7.0 → 2.8.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 +5 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -178,10 +178,11 @@ See `NETWORKS` constant in `@x402/evm/v1`
178
178
 
179
179
  ## Asset Support
180
180
 
181
- Supports any ERC-3009 compatible token:
182
- - USDC (primary)
183
- - EURC
184
- - Any token implementing `transferWithAuthorization()`
181
+ Supports two asset transfer methods:
182
+ - **EIP-3009**: Tokens with native `transferWithAuthorization()` (e.g., USDC, EURC) — simplest, truly gasless
183
+ - **Permit2**: Any ERC-20 token — universal fallback, requires one-time approval
184
+
185
+ See [DEFAULT_ASSET.md](src/exact/server/DEFAULT_ASSET.md) for the current list of configured chains and how to add new ones.
185
186
 
186
187
  ## Development
187
188
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x402/evm",
3
- "version": "2.7.0",
3
+ "version": "2.8.0",
4
4
  "main": "./dist/cjs/index.js",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "./dist/cjs/index.d.ts",
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "viem": "^2.39.3",
37
37
  "zod": "^3.24.2",
38
- "@x402/core": "~2.7.0"
38
+ "@x402/core": "~2.8.0"
39
39
  },
40
40
  "exports": {
41
41
  ".": {