spongewallet 0.1.30 → 0.1.32
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 +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ Restrict the later claim to one email:
|
|
|
32
32
|
npx spongewallet init --email alice@example.com
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
Claim a pending agent or log in with
|
|
35
|
+
Claim a pending agent or log in with the browser auth flow:
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
38
|
npx spongewallet login
|
|
@@ -53,7 +53,7 @@ npx spongewallet mcp print
|
|
|
53
53
|
## Core flow
|
|
54
54
|
|
|
55
55
|
1. `init` creates an agent immediately, prints addresses and MCP config, and stores pending claim metadata locally.
|
|
56
|
-
2. `login` claims that pending agent if claim metadata exists. Otherwise it falls back to
|
|
56
|
+
2. `login` claims that pending agent if claim metadata exists. Otherwise it falls back to the standard browser auth flow.
|
|
57
57
|
3. Use top-level commands like `balance`, `send`, `history`, `tokens`, and `onramp` for day-to-day operations.
|
|
58
58
|
|
|
59
59
|
## Common commands
|
|
@@ -91,7 +91,7 @@ npx spongewallet pay mpp --url https://tempo.example.com/premium --chain tempo
|
|
|
91
91
|
|
|
92
92
|
## Authentication
|
|
93
93
|
|
|
94
|
-
By default, the CLI uses Sponge
|
|
94
|
+
By default, the CLI uses Sponge's browser auth flow. After login, credentials are stored at:
|
|
95
95
|
|
|
96
96
|
```text
|
|
97
97
|
~/.spongewallet/credentials.json
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spongewallet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
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.52"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"wallet",
|