@waiaas/cli 2.4.0-rc.2 → 2.4.0-rc.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 CHANGED
@@ -146,6 +146,7 @@ Enabled by default (`admin_ui = true` in config.toml).
146
146
  | [Security Model](docs/security-model.md) | Authentication, policy engine, Kill Switch, AutoStop |
147
147
  | [Deployment Guide](docs/deployment.md) | Docker, npm, configuration reference |
148
148
  | [API Reference](docs/api-reference.md) | REST API endpoints and authentication |
149
+ | [Wallet SDK Integration](docs/wallet-sdk-integration.md) | Integration guide for wallet developers |
149
150
  | [Why WAIaaS?](docs/why-waiaas/) | Background on AI agent wallet security |
150
151
  | [Contributing](CONTRIBUTING.md) | Development setup, code style, testing, PR guidelines |
151
152
 
@@ -73,7 +73,7 @@ function printConfigPath() {
73
73
  }
74
74
  export async function quickstartCommand(opts) {
75
75
  const baseUrl = (opts.baseUrl ?? 'http://127.0.0.1:3100').replace(/\/+$/, '');
76
- const mode = opts.mode ?? 'testnet';
76
+ const mode = opts.mode ?? 'mainnet';
77
77
  const expiresIn = opts.expiresIn ?? 86400;
78
78
  // Validate mode
79
79
  if (mode !== 'testnet' && mode !== 'mainnet') {
package/dist/index.js CHANGED
@@ -76,7 +76,7 @@ program
76
76
  /** Shared handler for quickset / quickstart commands. */
77
77
  const quicksetAction = async (opts) => {
78
78
  const dataDir = resolveDataDir(opts);
79
- const mode = opts.mode ?? 'testnet';
79
+ const mode = opts.mode ?? 'mainnet';
80
80
  if (mode !== 'testnet' && mode !== 'mainnet') {
81
81
  console.error("Error: --mode must be 'testnet' or 'mainnet'");
82
82
  process.exit(1);
@@ -94,7 +94,7 @@ program
94
94
  .description('Quick setup: create wallets, sessions, and MCP tokens')
95
95
  .option('--data-dir <path>', 'Data directory path')
96
96
  .option('--base-url <url>', 'Daemon base URL', 'http://127.0.0.1:3100')
97
- .option('--mode <mode>', 'Environment mode: testnet or mainnet', 'testnet')
97
+ .option('--mode <mode>', 'Environment mode: testnet or mainnet', 'mainnet')
98
98
  .option('--expires-in <seconds>', 'Session expiration in seconds', '86400')
99
99
  .option('--password <password>', 'Master password')
100
100
  .action(quicksetAction);
@@ -103,7 +103,7 @@ program
103
103
  .description('(alias for quickset) Quick setup: create wallets, sessions, and MCP tokens')
104
104
  .option('--data-dir <path>', 'Data directory path')
105
105
  .option('--base-url <url>', 'Daemon base URL', 'http://127.0.0.1:3100')
106
- .option('--mode <mode>', 'Environment mode: testnet or mainnet', 'testnet')
106
+ .option('--mode <mode>', 'Environment mode: testnet or mainnet', 'mainnet')
107
107
  .option('--expires-in <seconds>', 'Session expiration in seconds', '86400')
108
108
  .option('--password <password>', 'Master password')
109
109
  .action(quicksetAction);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@waiaas/cli",
3
- "version": "2.4.0-rc.2",
3
+ "version": "2.4.0-rc.3",
4
4
  "description": "WAIaaS CLI - command-line interface for managing the wallet daemon",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -32,8 +32,8 @@
32
32
  "commander": "^13.0.0",
33
33
  "qrcode": "^1.5.4",
34
34
  "semver": "^7.7.4",
35
- "@waiaas/core": "2.4.0-rc.2",
36
- "@waiaas/daemon": "2.4.0-rc.2"
35
+ "@waiaas/core": "2.4.0-rc.3",
36
+ "@waiaas/daemon": "2.4.0-rc.3"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@hono/node-server": "^1.19.9",