@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.
- package/README.md +5 -4
- 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
|
|
182
|
-
-
|
|
183
|
-
-
|
|
184
|
-
|
|
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.
|
|
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.
|
|
38
|
+
"@x402/core": "~2.8.0"
|
|
39
39
|
},
|
|
40
40
|
"exports": {
|
|
41
41
|
".": {
|