decharge-scout 4.11.1 → 4.11.2

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/.env.example CHANGED
@@ -21,7 +21,8 @@ ORACLE_ESCROW_ADDRESS=YourDevWalletPublicKeyHere
21
21
 
22
22
  # Dashboard API (Optional - for testing dashboard integration)
23
23
  DASHBOARD_API_URL=http://localhost:3000/api/submit
24
- DASHBOARD_FLEET_API_URL=http://localhost:3000/agentone/api/fleet-submit
24
+ DASHBOARD_FLEET_API_URL=http://localhost:3000/api/agentone/fleet-submit
25
+ # Production: https://decharge-scout.vercel.app/api/agentone/fleet-submit
25
26
 
26
27
  # Stake Amount (in SOL)
27
28
  STAKE_AMOUNT=0.01
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "decharge-scout",
3
- "version": "4.11.1",
3
+ "version": "4.11.2",
4
4
  "description": "Global Energy Scout - Weather-powered intelligent energy price forecasting with Solana integration",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/src/fleet.js CHANGED
@@ -386,7 +386,7 @@ export async function runFleetOptimization(options) {
386
386
  // Submit to dashboard API
387
387
  try {
388
388
  const dashboardSpinner = ora('Submitting to AgentOne dashboard...').start();
389
- const apiUrl = process.env.DASHBOARD_FLEET_API_URL || 'https://decharge-scout.vercel.app/agentone/api/fleet-submit';
389
+ const apiUrl = process.env.DASHBOARD_FLEET_API_URL || 'https://decharge-scout.vercel.app/api/agentone/fleet-submit';
390
390
 
391
391
  console.log(chalk.gray(` POST ${apiUrl}`));
392
392