@settlr/sdk 0.3.0 → 0.3.1
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 +17 -1
- package/package.json +31 -7
package/README.md
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
# @settlr/sdk
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@settlr/sdk)
|
|
4
|
+
[](https://www.npmjs.com/package/@settlr/sdk)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
7
|
+
> **Settlr** - Accept Solana USDC payments in games and apps. Email checkout, gasless transactions, no wallet required.
|
|
8
|
+
|
|
9
|
+
🌐 **Website:** [settlr.dev](https://settlr.dev)
|
|
10
|
+
📖 **Docs:** [settlr.dev/docs](https://settlr.dev/docs)
|
|
11
|
+
🎮 **Demo:** [settlr.dev/demo](https://settlr.dev/demo)
|
|
12
|
+
|
|
13
|
+
## Why Settlr?
|
|
14
|
+
|
|
15
|
+
- ✅ **No wallet required** - Users pay with just an email
|
|
16
|
+
- ✅ **Gasless transactions** - No SOL needed for fees
|
|
17
|
+
- ✅ **USDC on Solana** - Fast, cheap, stable payments
|
|
18
|
+
- ✅ **Drop-in components** - React components ready to use
|
|
19
|
+
- ✅ **Gaming focused** - Built for in-game purchases
|
|
4
20
|
|
|
5
21
|
## Installation
|
|
6
22
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlr/sdk",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "Solana USDC payments
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Settlr SDK - Accept Solana USDC payments in games and apps. Email checkout, gasless transactions, no wallet required. The easiest way to add crypto payments.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -24,21 +24,45 @@
|
|
|
24
24
|
"prepublishOnly": "npm run build"
|
|
25
25
|
},
|
|
26
26
|
"keywords": [
|
|
27
|
+
"settlr",
|
|
28
|
+
"settlr-sdk",
|
|
29
|
+
"settlr.dev",
|
|
27
30
|
"solana",
|
|
28
|
-
"payments",
|
|
31
|
+
"solana-payments",
|
|
29
32
|
"usdc",
|
|
30
|
-
"
|
|
33
|
+
"usdc-payments",
|
|
34
|
+
"crypto-payments",
|
|
31
35
|
"web3",
|
|
36
|
+
"web3-payments",
|
|
32
37
|
"stablecoin",
|
|
33
|
-
"gasless"
|
|
38
|
+
"gasless",
|
|
39
|
+
"gasless-transactions",
|
|
40
|
+
"payment-gateway",
|
|
41
|
+
"checkout",
|
|
42
|
+
"gaming-payments",
|
|
43
|
+
"game-monetization",
|
|
44
|
+
"in-app-purchases",
|
|
45
|
+
"react",
|
|
46
|
+
"typescript",
|
|
47
|
+
"email-checkout",
|
|
48
|
+
"no-wallet",
|
|
49
|
+
"privy"
|
|
34
50
|
],
|
|
35
|
-
"author": "Settlr",
|
|
51
|
+
"author": "Settlr <hello@settlr.dev> (https://settlr.dev)",
|
|
36
52
|
"license": "MIT",
|
|
37
53
|
"repository": {
|
|
38
54
|
"type": "git",
|
|
39
|
-
"url": "git+https://github.com/ABFX15/x402-hack-payment.git"
|
|
55
|
+
"url": "git+https://github.com/ABFX15/x402-hack-payment.git",
|
|
56
|
+
"directory": "packages/sdk"
|
|
57
|
+
},
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/ABFX15/x402-hack-payment/issues"
|
|
40
60
|
},
|
|
41
61
|
"homepage": "https://settlr.dev",
|
|
62
|
+
"funding": {
|
|
63
|
+
"type": "github",
|
|
64
|
+
"url": "https://github.com/sponsors/ABFX15"
|
|
65
|
+
},
|
|
42
66
|
"dependencies": {
|
|
43
67
|
"@solana/spl-token": "^0.4.13",
|
|
44
68
|
"@solana/web3.js": "^1.98.0"
|