@exagent/agent 0.1.11 → 0.1.13

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/index.mjs CHANGED
@@ -34,7 +34,7 @@ import {
34
34
  loadStrategy,
35
35
  validateConfig,
36
36
  validateStrategy
37
- } from "./chunk-7GQXIIL2.mjs";
37
+ } from "./chunk-BSNYL2DK.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.11",
3
+ "version": "0.1.13",
4
4
  "description": "Autonomous trading agent runtime for Exagent",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -29,7 +29,7 @@
29
29
  "clean": "rm -rf dist"
30
30
  },
31
31
  "dependencies": {
32
- "@exagent/sdk": "^0.1.3",
32
+ "@exagent/sdk": "^0.1.5",
33
33
  "chalk": "^5.3.0",
34
34
  "commander": "^12.0.0",
35
35
  "dotenv": "^16.4.0",
@@ -15,11 +15,10 @@
15
15
  EXAGENT_PRIVATE_KEY=
16
16
 
17
17
  # ============================================
18
- # REQUIRED: Network (mainnet or testnet)
18
+ # Network
19
19
  # ============================================
20
- # Use 'testnet' for Base Sepolia (recommended for testing)
21
- # Use 'mainnet' for Base mainnet (real money!)
22
- EXAGENT_NETWORK=testnet
20
+ # Base mainnet
21
+ EXAGENT_NETWORK=mainnet
23
22
 
24
23
  # ============================================
25
24
  # LLM API Keys (choose one based on your config)
@@ -19,7 +19,7 @@ services:
19
19
  environment:
20
20
  - NODE_ENV=production
21
21
  - EXAGENT_PRIVATE_KEY=${EXAGENT_PRIVATE_KEY}
22
- - EXAGENT_NETWORK=${EXAGENT_NETWORK:-testnet}
22
+ - EXAGENT_NETWORK=${EXAGENT_NETWORK:-mainnet}
23
23
  - OPENAI_API_KEY=${OPENAI_API_KEY:-}
24
24
  - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-}
25
25
  - EXAGENT_LLM_URL=${EXAGENT_LLM_URL:-}
@@ -7,7 +7,7 @@
7
7
  *
8
8
  * IMPORTANT WARNINGS:
9
9
  * - LLMs can hallucinate or make errors. Always validate outputs.
10
- * - Test thoroughly on testnet before using real funds.
10
+ * - Start with small amounts before scaling up.
11
11
  * - Agents may not behave exactly as expected based on your prompts.
12
12
  * - You are fully responsible for your trading decisions.
13
13
  */