spongewallet 0.1.55 → 0.1.69
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 +2 -2
package/README.md
CHANGED
|
@@ -42,6 +42,7 @@ Inspect the current session:
|
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
44
|
npx spongewallet whoami
|
|
45
|
+
npx spongewallet version --check
|
|
45
46
|
```
|
|
46
47
|
|
|
47
48
|
Print MCP config for Claude Code or Cursor:
|
|
@@ -65,6 +66,7 @@ npx spongewallet login
|
|
|
65
66
|
npx spongewallet whoami
|
|
66
67
|
npx spongewallet logout
|
|
67
68
|
npx spongewallet mcp print
|
|
69
|
+
npx spongewallet version --check
|
|
68
70
|
|
|
69
71
|
# Wallets and transfers
|
|
70
72
|
npx spongewallet balance
|
|
@@ -83,17 +85,30 @@ npx spongewallet pay service <service-id>
|
|
|
83
85
|
npx spongewallet pay x402 --url https://api.example.com/premium
|
|
84
86
|
npx spongewallet pay mpp --url https://tempo.example.com/premium --chain tempo
|
|
85
87
|
|
|
88
|
+
# Cards
|
|
89
|
+
npx spongewallet card add --flow basis-theory
|
|
90
|
+
npx spongewallet card add --flow link
|
|
91
|
+
npx spongewallet card status
|
|
92
|
+
npx spongewallet card fund 100 --chain base
|
|
93
|
+
|
|
94
|
+
# Bank accounts and USD transfers
|
|
95
|
+
npx spongewallet bank onboard
|
|
96
|
+
npx spongewallet bank virtual-account create <wallet-id>
|
|
97
|
+
npx spongewallet bank external-accounts list
|
|
98
|
+
npx spongewallet bank send <wallet-id> <external-account-id> 100.00 --payment-rail ach
|
|
99
|
+
|
|
86
100
|
# Markets
|
|
87
101
|
npx spongewallet market polymarket search "Sixers Celtics"
|
|
88
102
|
npx spongewallet market polymarket order nba-phi-bos-2026-05-02 yes buy 3 --price 0.40
|
|
89
103
|
npx spongewallet market hyperliquid markets 10
|
|
104
|
+
npx spongewallet market hyperliquid chart BTC/USDC:USDC --interval 15m
|
|
90
105
|
```
|
|
91
106
|
|
|
92
107
|
## Command groups
|
|
93
108
|
|
|
94
109
|
- `init`, `login`, `logout`, `whoami`, `mcp`: session setup and authentication
|
|
95
110
|
- `balance`, `send`, `history`, `tokens`, `search-tokens`, `onramp`, `tx`, `swap`, `bridge`, `pay`: balances, transfers, swaps, bridging, and payments
|
|
96
|
-
- `keys`, `card`, `plan`, `trade`, `auth`: stored secrets and approval flows
|
|
111
|
+
- `keys`, `card`, `bank`, `plan`, `trade`, `auth`: stored secrets, cards, bank accounts, USD transfers, and approval flows
|
|
97
112
|
- `market`, `advanced`: Polymarket, Hyperliquid, and low-level commands
|
|
98
113
|
|
|
99
114
|
## Authentication
|
|
@@ -125,6 +140,7 @@ npm install @paysponge/sdk
|
|
|
125
140
|
## Docs
|
|
126
141
|
|
|
127
142
|
- CLI docs: https://docs.paysponge.com/cli
|
|
143
|
+
- CLI skill: https://docs.paysponge.com/cli-skill.md
|
|
128
144
|
- Authentication: https://docs.paysponge.com/authentication
|
|
129
145
|
- Overview: https://docs.paysponge.com
|
|
130
146
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spongewallet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.69",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI launcher for SpongeWallet onboarding and MCP setup",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@paysponge/sdk": "^0.1.
|
|
14
|
+
"@paysponge/sdk": "^0.1.89"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"wallet",
|