@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/chunk-5NE2K3WU.mjs +2852 -0
- package/dist/chunk-BSNYL2DK.mjs +3005 -0
- package/dist/chunk-BZLZQCKQ.mjs +2853 -0
- package/dist/chunk-DZMU25QF.mjs +3021 -0
- package/dist/chunk-TBITVAFT.mjs +2780 -0
- package/dist/chunk-ZY3ZSYNN.mjs +3023 -0
- package/dist/cli.js +545 -267
- package/dist/cli.mjs +3 -3
- package/dist/index.d.mts +99 -47
- package/dist/index.d.ts +99 -47
- package/dist/index.js +547 -267
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
- package/templates/.env.template +3 -4
- package/templates/docker-compose.yml +1 -1
- package/templates/strategy.template.ts +1 -1
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exagent/agent",
|
|
3
|
-
"version": "0.1.
|
|
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.
|
|
32
|
+
"@exagent/sdk": "^0.1.5",
|
|
33
33
|
"chalk": "^5.3.0",
|
|
34
34
|
"commander": "^12.0.0",
|
|
35
35
|
"dotenv": "^16.4.0",
|
package/templates/.env.template
CHANGED
|
@@ -15,11 +15,10 @@
|
|
|
15
15
|
EXAGENT_PRIVATE_KEY=
|
|
16
16
|
|
|
17
17
|
# ============================================
|
|
18
|
-
#
|
|
18
|
+
# Network
|
|
19
19
|
# ============================================
|
|
20
|
-
#
|
|
21
|
-
|
|
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:-
|
|
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
|
-
* -
|
|
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
|
*/
|