@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.
- package/dist/{chunk-3JJNKVB6.mjs → chunk-OFKK5XSF.mjs} +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -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
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