@faremeter/wallet-crossmint 0.12.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 +41 -0
- package/package.json +10 -1
package/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# @faremeter/wallet-crossmint
|
|
2
|
+
|
|
3
|
+
Crossmint custodial wallet integration for Faremeter payments on Solana.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm install @faremeter/wallet-crossmint
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- Custodial wallet support
|
|
14
|
+
- No private key management required
|
|
15
|
+
- Crossmint API integration
|
|
16
|
+
- Solana network support
|
|
17
|
+
|
|
18
|
+
## API Reference
|
|
19
|
+
|
|
20
|
+
<!-- TSDOC_START -->
|
|
21
|
+
|
|
22
|
+
## Functions
|
|
23
|
+
|
|
24
|
+
- [createCrossmintWallet](#createcrossmintwallet)
|
|
25
|
+
|
|
26
|
+
### createCrossmintWallet
|
|
27
|
+
|
|
28
|
+
| Function | Type |
|
|
29
|
+
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
30
|
+
| `createCrossmintWallet` | `(network: string, crossmintApiKey: string, crossmintWalletAddress: string) => Promise<{ network: string; publicKey: PublicKey; sendTransaction: (tx: VersionedTransaction) => Promise<...>; }>` |
|
|
31
|
+
|
|
32
|
+
<!-- TSDOC_END -->
|
|
33
|
+
|
|
34
|
+
## Related Packages
|
|
35
|
+
|
|
36
|
+
- [@faremeter/payment-solana](https://www.npmjs.com/package/@faremeter/payment-solana) - Solana payment handler
|
|
37
|
+
- [@faremeter/fetch](https://www.npmjs.com/package/@faremeter/fetch) - Client fetch wrapper
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
LGPL-3.0-only
|
package/package.json
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faremeter/wallet-crossmint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
|
+
"description": "Crossmint custodial smart wallet integration for Faremeter payments",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"faremeter",
|
|
7
|
+
"typescript",
|
|
8
|
+
"sdk",
|
|
9
|
+
"api",
|
|
10
|
+
"x402",
|
|
11
|
+
"ai"
|
|
12
|
+
],
|
|
4
13
|
"license": "LGPL-3.0-only",
|
|
5
14
|
"type": "module",
|
|
6
15
|
"main": "dist/src/index.js",
|