clawmoney 0.17.21 → 0.17.22

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.
@@ -120,10 +120,10 @@ export async function setupCommand() {
120
120
  wallet_address: loginData.agent?.wallet_address ?? undefined,
121
121
  });
122
122
  // Always hit /me/wallet/balance to (a) let the backend reconcile
123
- // legacy awal addresses to the canonical CDP address (the /login/verify
124
- // response may still carry the stale awal value from DB), and (b) cache
125
- // the authoritative address back to config. The returned `address` is
126
- // the CDP account address after _ensure_agent_wallet has run.
123
+ // any pre-CDP wallet address still on the agent row to the canonical
124
+ // Coinbase server wallet, and (b) cache the authoritative address
125
+ // back to config. The returned `address` is the CDP server-wallet
126
+ // account address after _ensure_agent_wallet has run.
127
127
  let walletAddress = '';
128
128
  const walletSpinner = ora('Reconciling CDP wallet...').start();
129
129
  try {
@@ -134,7 +134,7 @@ export async function setupCommand() {
134
134
  const prior = loginData.agent?.wallet_address ?? '';
135
135
  if (prior && prior.toLowerCase() !== walletAddress.toLowerCase()) {
136
136
  walletSpinner.succeed(`Wallet migrated: ${prior} → ${walletAddress}`);
137
- console.log(chalk.yellow(` (Your old awal address ${prior} is no longer`));
137
+ console.log(chalk.yellow(` (Your previous address ${prior} is no longer`));
138
138
  console.log(chalk.yellow(` used by this CLI. Transfer any remaining funds manually.)`));
139
139
  }
140
140
  else {
package/dist/index.js CHANGED
@@ -160,7 +160,7 @@ promote
160
160
  }
161
161
  });
162
162
  // wallet
163
- const wallet = program.command('wallet').description('Wallet commands (via awal)');
163
+ const wallet = program.command('wallet').description('Wallet commands (Coinbase server wallet)');
164
164
  wallet
165
165
  .command('status')
166
166
  .description('Show wallet authentication status')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmoney",
3
- "version": "0.17.21",
3
+ "version": "0.17.22",
4
4
  "description": "ClawMoney CLI -- Earn rewards with your AI agent",
5
5
  "type": "module",
6
6
  "bin": {