Skip to content

Commit 1cb35df

Browse files
committed
Merge branch 'develop' of https://github.com/elizaos/eliza into odi-fix
2 parents b983988 + 1c25851 commit 1cb35df

20 files changed

+45251
-79
lines changed

.env.example

+3-1
Original file line numberDiff line numberDiff line change
@@ -660,11 +660,13 @@ AKASH_MANIFEST_MODE=auto
660660
AKASH_MANIFEST_PATH=
661661
# Values: "strict" | "lenient" | "none" - Default: "strict"
662662
AKASH_MANIFEST_VALIDATION_LEVEL=strict
663-
664663
# Quai Network Ecosystem
665664
QUAI_PRIVATE_KEY=
666665
QUAI_RPC_URL=https://rpc.quai.network
667666

667+
# Chainbase
668+
CHAINBASE_API_KEY=demo # demo is a free tier key
669+
668670
# 0x
669671
ZERO_EX_API_KEY=
670672
ALCHEMY_HTTP_TRANSPORT_URL=

agent/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
"@elizaos/plugin-router-nitro": "workspace:*",
115115
"@elizaos/plugin-nvidia-nim": "workspace:*",
116116
"@elizaos/plugin-0x": "workspace:*",
117+
"@elizaos/plugin-chainbase": "workspace:*",
117118
"@elizaos/plugin-dkg": "workspace:*",
118119
"@elizaos/plugin-email": "workspace:*",
119120
"readline": "1.3.0",

agent/src/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ import { devinPlugin } from "@elizaos/plugin-devin";
117117

118118
import { zksyncEraPlugin } from "@elizaos/plugin-zksync-era";
119119

120+
import { chainbasePlugin } from "@elizaos/plugin-chainbase";
121+
120122
import { nvidiaNimPlugin } from "@elizaos/plugin-nvidia-nim";
121123

122124
import { zxPlugin } from "@elizaos/plugin-0x";
@@ -1090,6 +1092,7 @@ export async function createAgent(
10901092
getSecret(character, "AKASH_WALLET_ADDRESS")
10911093
? akashPlugin
10921094
: null,
1095+
getSecret(character, "CHAINBASE_API_KEY") ? chainbasePlugin : null,
10931096
getSecret(character, "QUAI_PRIVATE_KEY") ? quaiPlugin : null,
10941097
getSecret(character, "RESERVOIR_API_KEY")
10951098
? createNFTCollectionsPlugin()

docs/package-lock.json

+21,509
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+77-78
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,78 @@
11
{
2-
3-
"name": "eliza",
4-
"scripts": {
5-
"format": "biome format --write .",
6-
"lint": "biome lint .",
7-
"check": "biome check --apply .",
8-
"preinstall": "npx only-allow pnpm",
9-
"build": "turbo run build --filter=!eliza-docs",
10-
"build-docker": "turbo run build",
11-
"cleanstart": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && pnpm --filter \"@elizaos/agent\" start --isRoot",
12-
"cleanstart:debug": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && cross-env NODE_ENV=development VERBOSE=true DEBUG=eliza:* pnpm --filter \"@elizaos/agent\" start --isRoot",
13-
"start": "pnpm --filter \"@elizaos/agent\" start --isRoot",
14-
"start:client": "pnpm --dir client dev",
15-
"start:debug": "cross-env NODE_ENV=development VERBOSE=true DEBUG=eliza:* pnpm --filter \"@elizaos/agent\" start --isRoot",
16-
"dev": "bash ./scripts/dev.sh",
17-
"release": "pnpm build && pnpm format && npx lerna publish --no-private --force-publish",
18-
"clean": "bash ./scripts/clean.sh",
19-
"docker:build": "bash ./scripts/docker.sh build",
20-
"docker:run": "bash ./scripts/docker.sh run",
21-
"docker:bash": "bash ./scripts/docker.sh bash",
22-
"docker:start": "bash ./scripts/docker.sh start",
23-
"docker": "pnpm docker:build && pnpm docker:run && pnpm docker:bash",
24-
"test": "bash ./scripts/test.sh",
25-
"smokeTests": "bash ./scripts/smokeTests.sh",
26-
"integrationTests": "bash ./scripts/integrationTests.sh"
27-
},
28-
"devDependencies": {
29-
"@biomejs/biome": "^1.9.4",
30-
"@commitlint/cli": "18.6.1",
31-
"@commitlint/config-conventional": "18.6.3",
32-
"@types/jest": "^29.5.11",
33-
"concurrently": "9.1.0",
34-
"cross-env": "7.0.3",
35-
"husky": "9.1.7",
36-
"jest": "^29.7.0",
37-
"lerna": "8.1.5",
38-
"only-allow": "1.2.1",
39-
"turbo": "2.3.3",
40-
"typedoc": "0.26.11",
41-
"typescript": "5.6.3",
42-
"viem": "2.21.58",
43-
"vite": "5.4.12",
44-
"vitest": "2.1.5"
45-
},
46-
"pnpm": {
47-
"overrides": {
48-
"onnxruntime-node": "1.20.1",
49-
"viem": "2.21.58",
50-
"@polkadot/util": "12.6.2",
51-
"@polkadot/util-crypto": "12.6.2",
52-
"@polkadot/types-create": "10.13.1",
53-
"@polkadot/types-codec": "10.13.1"
54-
}
55-
},
56-
"engines": {
57-
"node": "23.3.0"
58-
},
59-
"dependencies": {
60-
"@0glabs/0g-ts-sdk": "0.2.1",
61-
"@coinbase/coinbase-sdk": "0.10.0",
62-
"@deepgram/sdk": "^3.9.0",
63-
"@injectivelabs/sdk-ts": "^1.14.33",
64-
"@vitest/eslint-plugin": "1.0.1",
65-
"amqplib": "0.10.5",
66-
"csv-parse": "5.6.0",
67-
"langdetect": "^0.2.1",
68-
"ollama-ai-provider": "0.16.1",
69-
"optional": "0.1.4",
70-
"pnpm": "9.14.4",
71-
"sharp": "0.33.5",
72-
"tslog": "4.9.3",
73-
"bs58": "4.0.0"
74-
},
75-
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
76-
"workspaces": [
77-
"packages/*"
78-
]
79-
}
2+
"name": "eliza",
3+
"scripts": {
4+
"format": "biome format --write .",
5+
"lint": "biome lint .",
6+
"check": "biome check --apply .",
7+
"preinstall": "npx only-allow pnpm",
8+
"build": "turbo run build --filter=!eliza-docs",
9+
"build-docker": "turbo run build",
10+
"cleanstart": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && pnpm --filter \"@elizaos/agent\" start --isRoot",
11+
"cleanstart:debug": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && cross-env NODE_ENV=development VERBOSE=true DEFAULT_LOG_LEVEL=debug DEBUG=eliza:* pnpm --filter \"@elizaos/agent\" start --isRoot",
12+
"start": "pnpm --filter \"@elizaos/agent\" start --isRoot",
13+
"start:client": "pnpm --dir client dev",
14+
"start:debug": "cross-env NODE_ENV=development VERBOSE=true DEFAULT_LOG_LEVEL=debug DEBUG=eliza:* pnpm --filter \"@elizaos/agent\" start --isRoot",
15+
"dev": "bash ./scripts/dev.sh",
16+
"release": "pnpm build && pnpm format && npx lerna publish --no-private --force-publish",
17+
"clean": "bash ./scripts/clean.sh",
18+
"docker:build": "bash ./scripts/docker.sh build",
19+
"docker:run": "bash ./scripts/docker.sh run",
20+
"docker:bash": "bash ./scripts/docker.sh bash",
21+
"docker:start": "bash ./scripts/docker.sh start",
22+
"docker": "pnpm docker:build && pnpm docker:run && pnpm docker:bash",
23+
"test": "bash ./scripts/test.sh",
24+
"smokeTests": "bash ./scripts/smokeTests.sh",
25+
"integrationTests": "bash ./scripts/integrationTests.sh"
26+
},
27+
"devDependencies": {
28+
"@biomejs/biome": "^1.9.4",
29+
"@commitlint/cli": "18.6.1",
30+
"@commitlint/config-conventional": "18.6.3",
31+
"@types/jest": "^29.5.11",
32+
"concurrently": "9.1.0",
33+
"cross-env": "7.0.3",
34+
"husky": "9.1.7",
35+
"jest": "^29.7.0",
36+
"lerna": "8.1.5",
37+
"only-allow": "1.2.1",
38+
"turbo": "2.3.3",
39+
"typedoc": "0.26.11",
40+
"typescript": "5.6.3",
41+
"viem": "2.21.58",
42+
"vite": "5.4.12",
43+
"vitest": "2.1.5"
44+
},
45+
"pnpm": {
46+
"overrides": {
47+
"onnxruntime-node": "1.20.1",
48+
"viem": "2.21.58",
49+
"@polkadot/util": "12.6.2",
50+
"@polkadot/util-crypto": "12.6.2",
51+
"@polkadot/types-create": "10.13.1",
52+
"@polkadot/types-codec": "10.13.1"
53+
}
54+
},
55+
"engines": {
56+
"node": "23.3.0"
57+
},
58+
"dependencies": {
59+
"@0glabs/0g-ts-sdk": "0.2.1",
60+
"@coinbase/coinbase-sdk": "0.10.0",
61+
"@deepgram/sdk": "^3.9.0",
62+
"@injectivelabs/sdk-ts": "^1.14.33",
63+
"@vitest/eslint-plugin": "1.0.1",
64+
"amqplib": "0.10.5",
65+
"csv-parse": "5.6.0",
66+
"langdetect": "^0.2.1",
67+
"ollama-ai-provider": "0.16.1",
68+
"optional": "0.1.4",
69+
"pnpm": "9.14.4",
70+
"sharp": "0.33.5",
71+
"tslog": "4.9.3",
72+
"bs58": "4.0.0"
73+
},
74+
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
75+
"workspaces": [
76+
"packages/*"
77+
]
78+
}

0 commit comments

Comments
 (0)