@faremeter/payment-solana 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/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# @faremeter/payment-solana
|
|
2
|
+
|
|
3
|
+
Solana payment scheme implementations for the x402 protocol, supporting SPL token transfers.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm install @faremeter/payment-solana
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- SPL token payments (USDC, etc.)
|
|
14
|
+
- Devnet, testnet, and mainnet support
|
|
15
|
+
- Automatic fee payer handling
|
|
16
|
+
- Transaction verification
|
|
17
|
+
- Works with any SPL token
|
|
18
|
+
|
|
19
|
+
## API Reference
|
|
20
|
+
|
|
21
|
+
<!-- TSDOC_START -->
|
|
22
|
+
|
|
23
|
+
<!-- TSDOC_END -->
|
|
24
|
+
|
|
25
|
+
## Related Packages
|
|
26
|
+
|
|
27
|
+
- [@faremeter/wallet-solana](https://www.npmjs.com/package/@faremeter/wallet-solana) - Solana 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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faremeter/payment-solana",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "Solana payment scheme implementations for x402 protocol (SPL token transfers)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"faremeter",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@solana/transactions": "2.3.0",
|
|
49
49
|
"@solana/web3.js": "1.98.4",
|
|
50
50
|
"arktype": "2.1.21",
|
|
51
|
-
"@faremeter/info": "^0.
|
|
52
|
-
"@faremeter/types": "^0.
|
|
51
|
+
"@faremeter/info": "^0.14.0",
|
|
52
|
+
"@faremeter/types": "^0.14.0"
|
|
53
53
|
},
|
|
54
54
|
"tap": {
|
|
55
55
|
"plugin": [
|