@exagent/agent 0.3.9 → 0.3.10

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.
@@ -5159,7 +5159,7 @@ import { privateKeyToAccount as privateKeyToAccount3 } from "viem/accounts";
5159
5159
  import { arbitrum as arbitrum2 } from "viem/chains";
5160
5160
  import { createRequire } from "module";
5161
5161
  var _require = createRequire(import.meta.url);
5162
- var SDK_VERSION = "0.3.9";
5162
+ var SDK_VERSION = "0.3.10";
5163
5163
  try {
5164
5164
  SDK_VERSION = _require("../package.json").version;
5165
5165
  } catch {
package/dist/cli.js CHANGED
@@ -9,7 +9,7 @@ import {
9
9
  updateSecureStore,
10
10
  writeConfigFile,
11
11
  writeSampleConfig
12
- } from "./chunk-GBPHX7ZT.js";
12
+ } from "./chunk-X6TXKSWB.js";
13
13
 
14
14
  // src/cli.ts
15
15
  import { Command } from "commander";
@@ -359,7 +359,7 @@ async function ensureLocalSetup(configPath) {
359
359
  // src/cli.ts
360
360
  import * as clack2 from "@clack/prompts";
361
361
  var program = new Command();
362
- program.name("exagent").description("Exagent \u2014 LLM trading agent runtime").version("0.3.9");
362
+ program.name("exagent").description("Exagent \u2014 LLM trading agent runtime").version("0.3.10");
363
363
  program.command("init").description("Create a sample agent configuration file").option("--agent-id <id>", "Agent ID (from dashboard)", "my-agent").option("--api-url <url>", "API server URL", "http://localhost:3002").option("--config <path>", "Config file path", "agent-config.json").action((opts) => {
364
364
  printBanner();
365
365
  writeSampleConfig(opts.agentId, opts.apiUrl, opts.config);
package/dist/index.js CHANGED
@@ -43,7 +43,7 @@ import {
43
43
  loadConfig,
44
44
  loadStrategy,
45
45
  writeSampleConfig
46
- } from "./chunk-GBPHX7ZT.js";
46
+ } from "./chunk-X6TXKSWB.js";
47
47
  export {
48
48
  AcrossAdapter,
49
49
  AerodromeAdapter,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exagent/agent",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  }
18
18
  },
19
19
  "scripts": {
20
- "build": "tsup src/index.ts src/cli.ts --format esm --dts",
20
+ "build": "rm -rf dist && tsup src/index.ts src/cli.ts --format esm --dts",
21
21
  "dev": "tsup src/index.ts src/cli.ts --format esm --dts --watch",
22
22
  "test": "tsx --test test/**/*.test.ts"
23
23
  },