@faremeter/payment-evm 0.13.0 → 0.14.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 +33 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# @faremeter/payment-evm
|
|
2
|
+
|
|
3
|
+
EVM payment scheme implementations for the x402 protocol, supporting EIP-3009 gasless USDC transfers.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm install @faremeter/payment-evm
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- Gasless transfers (EIP-3009)
|
|
14
|
+
- USDC payments on Base, Polygon, Skale, and more
|
|
15
|
+
- EIP-712 typed signatures
|
|
16
|
+
- Facilitator pays gas fees
|
|
17
|
+
- Secure authorization pattern
|
|
18
|
+
|
|
19
|
+
## API Reference
|
|
20
|
+
|
|
21
|
+
<!-- TSDOC_START -->
|
|
22
|
+
|
|
23
|
+
<!-- TSDOC_END -->
|
|
24
|
+
|
|
25
|
+
## Related Packages
|
|
26
|
+
|
|
27
|
+
- [@faremeter/wallet-evm](https://www.npmjs.com/package/@faremeter/wallet-evm) - EVM wallet adapter
|
|
28
|
+
- [@faremeter/fetch](https://www.npmjs.com/package/@faremeter/fetch) - Client fetch wrapper
|
|
29
|
+
- [@faremeter/facilitator](https://www.npmjs.com/package/@faremeter/facilitator) - Payment facilitator
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
LGPL-3.0-only
|