@clawcard/cli 3.1.0 → 3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawcard/cli",
3
- "version": "3.1.0",
3
+ "version": "3.1.3",
4
4
  "description": "The ClawCard CLI — manage your agent keys, billing, and setup from the terminal",
5
5
  "bin": {
6
6
  "clawcard": "./bin/clawcard.mjs"
@@ -718,7 +718,10 @@ export async function agentWalletFundCmd(options) {
718
718
  console.log();
719
719
  console.log(` ${chalk.green("✓")} ${result.amountBridged || amount.toFixed(2)} pathUSD added for MPP payments`);
720
720
  if (result.txHash) {
721
- console.log(` TX: ${chalk.dim("https://basescan.org/tx/" + result.txHash)}`);
721
+ console.log(` Base TX: ${chalk.dim(result.basescanUrl || "https://basescan.org/tx/" + result.txHash)}`);
722
+ }
723
+ if (result.tempoExplorerUrl) {
724
+ console.log(` Tempo: ${chalk.dim(result.tempoExplorerUrl)}`);
722
725
  }
723
726
  console.log();
724
727
  console.log(` ${orange("Verify:")} ${chalk.dim("$ clawcard agent wallet balance --json")}`);