@glide-pool/cli 0.1.2 → 0.1.3
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 +5 -5
- package/bin/glidepool.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @glide-pool/cli
|
|
2
2
|
|
|
3
|
-
CLI for [GlidePool](https://github.com/
|
|
3
|
+
CLI for [GlidePool](https://github.com/GlidePool/glidepool) — autonomous DLMM agent platform on Base Mainnet.
|
|
4
4
|
|
|
5
5
|
Manage agents, browse pools, inspect positions, and get Claude Opus 4 AI advice directly from your terminal.
|
|
6
6
|
|
|
@@ -16,13 +16,13 @@ Point the CLI at your GlidePool API server:
|
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
# Save API URL to ~/.glidepool/config.json
|
|
19
|
-
glidepool config set-api https://
|
|
19
|
+
glidepool config set-api https://api.glidepool.xyz
|
|
20
20
|
|
|
21
21
|
# Or use the --api flag on every command
|
|
22
|
-
glidepool --api https://
|
|
22
|
+
glidepool --api https://api.glidepool.xyz pools list
|
|
23
23
|
|
|
24
|
-
# Or set the
|
|
25
|
-
export GLIDEPOOL_API_URL=https://
|
|
24
|
+
# Or set the environment variable
|
|
25
|
+
export GLIDEPOOL_API_URL=https://api.glidepool.xyz
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
## Commands
|
package/bin/glidepool.js
CHANGED
|
@@ -27,7 +27,7 @@ function saveConfig(data) {
|
|
|
27
27
|
function getApiUrl(opts) {
|
|
28
28
|
const url = opts.api || process.env.GLIDEPOOL_API_URL || loadConfig().apiUrl;
|
|
29
29
|
if (!url) {
|
|
30
|
-
console.error('Error: API URL not set.\n Run: glidepool config set-api <url>\n Or: export GLIDEPOOL_API_URL=https://
|
|
30
|
+
console.error('Error: API URL not set.\n Run: glidepool config set-api <url>\n Or: export GLIDEPOOL_API_URL=https://api.glidepool.xyz');
|
|
31
31
|
process.exit(1);
|
|
32
32
|
}
|
|
33
33
|
return url.replace(/\/$/, '');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glide-pool/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "CLI for managing GlidePool autonomous DLMM agents on Base Mainnet",
|
|
5
5
|
"bin": {
|
|
6
6
|
"glidepool": "./bin/glidepool.js"
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
},
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "https://github.com/
|
|
32
|
+
"url": "https://github.com/GlidePool/cli"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
}
|
|
37
|
-
}
|
|
37
|
+
}
|