@exagent/agent 0.1.4 → 0.1.5

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.
@@ -1756,7 +1756,7 @@ var AgentRuntime = class {
1756
1756
  agentId,
1757
1757
  nonce
1758
1758
  );
1759
- const linkSignature = await this.client.signMessage(linkMessage);
1759
+ const linkSignature = await this.client.signMessage({ raw: linkMessage });
1760
1760
  console.log("");
1761
1761
  console.log("=== WALLET LINKING REQUIRED ===");
1762
1762
  console.log("");
package/dist/cli.js CHANGED
@@ -1777,7 +1777,7 @@ var AgentRuntime = class {
1777
1777
  agentId,
1778
1778
  nonce
1779
1779
  );
1780
- const linkSignature = await this.client.signMessage(linkMessage);
1780
+ const linkSignature = await this.client.signMessage({ raw: linkMessage });
1781
1781
  console.log("");
1782
1782
  console.log("=== WALLET LINKING REQUIRED ===");
1783
1783
  console.log("");
package/dist/cli.mjs CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  loadConfig,
7
7
  loadSecureEnv,
8
8
  validateConfig
9
- } from "./chunk-3JJNKVB6.mjs";
9
+ } from "./chunk-OFKK5XSF.mjs";
10
10
 
11
11
  // src/cli.ts
12
12
  import { Command } from "commander";
package/dist/index.js CHANGED
@@ -1821,7 +1821,7 @@ var AgentRuntime = class {
1821
1821
  agentId,
1822
1822
  nonce
1823
1823
  );
1824
- const linkSignature = await this.client.signMessage(linkMessage);
1824
+ const linkSignature = await this.client.signMessage({ raw: linkMessage });
1825
1825
  console.log("");
1826
1826
  console.log("=== WALLET LINKING REQUIRED ===");
1827
1827
  console.log("");
package/dist/index.mjs CHANGED
@@ -34,7 +34,7 @@ import {
34
34
  loadStrategy,
35
35
  validateConfig,
36
36
  validateStrategy
37
- } from "./chunk-3JJNKVB6.mjs";
37
+ } from "./chunk-OFKK5XSF.mjs";
38
38
  export {
39
39
  AgentConfigSchema,
40
40
  AgentRuntime,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exagent/agent",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Autonomous trading agent runtime for Exagent",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",