spongewallet 0.1.1 → 0.1.5
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 +9 -8
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ npx spongewallet mcp print
|
|
|
54
54
|
|
|
55
55
|
1. `init` creates an agent immediately, prints addresses and MCP config, and stores pending claim metadata locally.
|
|
56
56
|
2. `login` claims that pending agent if claim metadata exists. Otherwise it falls back to normal device-flow authentication.
|
|
57
|
-
3. Use
|
|
57
|
+
3. Use top-level commands like `balance`, `send`, `history`, `tokens`, and `onramp` for day-to-day operations.
|
|
58
58
|
|
|
59
59
|
## Common commands
|
|
60
60
|
|
|
@@ -67,14 +67,15 @@ npx spongewallet logout
|
|
|
67
67
|
npx spongewallet mcp print
|
|
68
68
|
|
|
69
69
|
# Wallets and transfers
|
|
70
|
-
npx spongewallet
|
|
71
|
-
npx spongewallet
|
|
72
|
-
npx spongewallet
|
|
70
|
+
npx spongewallet balance
|
|
71
|
+
npx spongewallet send base 0xabc... USDC 10
|
|
72
|
+
npx spongewallet history 20 --chain base
|
|
73
73
|
|
|
74
74
|
# Transactions, swaps, and bridges
|
|
75
|
-
npx spongewallet tx status
|
|
76
|
-
npx spongewallet swap quote
|
|
77
|
-
npx spongewallet
|
|
75
|
+
npx spongewallet tx status base 0x123...
|
|
76
|
+
npx spongewallet swap quote SOL USDC 1
|
|
77
|
+
npx spongewallet swap tempo pathUSD USDC.e 1
|
|
78
|
+
npx spongewallet bridge base solana USDC 25
|
|
78
79
|
|
|
79
80
|
# Paid requests
|
|
80
81
|
npx spongewallet pay x402 --url https://api.example.com/premium
|
|
@@ -84,7 +85,7 @@ npx spongewallet pay mpp --url https://tempo.example.com/premium --chain tempo
|
|
|
84
85
|
## Command groups
|
|
85
86
|
|
|
86
87
|
- `init`, `login`, `logout`, `whoami`, `mcp`: session setup and authentication
|
|
87
|
-
- `
|
|
88
|
+
- `balance`, `send`, `history`, `tokens`, `search-tokens`, `onramp`, `tx`, `swap`, `bridge`, `pay`: balances, transfers, swaps, bridging, and payments
|
|
88
89
|
- `keys`, `card`, `plan`, `trade`, `auth`: stored secrets and approval flows
|
|
89
90
|
- `market`, `advanced`: venue-specific and low-level commands
|
|
90
91
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spongewallet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
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.25"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"wallet",
|