Skip to content

Commit dd25f6c

Browse files
committed
(feat) A plugin for the Zilliqa blockchain
1 parent 4712839 commit dd25f6c

File tree

10 files changed

+551
-4
lines changed

10 files changed

+551
-4
lines changed

.env.example

+4
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,10 @@ MORALIS_API_KEY=
357357
EVM_PRIVATE_KEY=
358358
EVM_PROVIDER_URL=
359359

360+
# Zilliqa
361+
ZILLIQA_PRIVATE_KEY=
362+
ZILLIQA_PROVIDER_URL=
363+
360364
# Avalanche
361365
AVALANCHE_PRIVATE_KEY=
362366
AVALANCHE_PUBLIC_KEY=

agent/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,10 @@
144144
"@elizaos/plugin-dcap": "workspace:*",
145145
"@elizaos/plugin-form": "workspace:*",
146146
"@elizaos/plugin-ankr": "workspace:*",
147-
"@elizaos/client-xmtp": "workspace:*",
147+
"@elizaos/client-xmtp": "workspace:*",
148148
"@elizaos/plugin-btcfun": "workspace:*",
149-
"@elizaos/plugin-trikon": "workspace:*",
149+
"@elizaos/plugin-trikon": "workspace:*",
150+
"@elizaos/plugin-zilliqa": "workspace:*",
150151
"readline": "1.3.0",
151152
"ws": "8.18.0",
152153
"yargs": "17.7.2"
@@ -158,4 +159,4 @@
158159
"ts-node": "10.9.2",
159160
"tsup": "8.3.5"
160161
}
161-
}
162+
}

agent/src/index.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ import { footballPlugin } from "@elizaos/plugin-football"
5252
import { bootstrapPlugin } from "@elizaos/plugin-bootstrap"
5353
import { normalizeCharacter } from "@elizaos/plugin-di"
5454
import createGoatPlugin from "@elizaos/plugin-goat"
55+
import createZilliqaPlugin from "@elizaos/plugin-zilliqa";
56+
5557
// import { intifacePlugin } from "@elizaos/plugin-intiface";
5658
import { ThreeDGenerationPlugin } from "@elizaos/plugin-3d-generation"
5759
import { abstractPlugin } from "@elizaos/plugin-abstract"
@@ -750,6 +752,13 @@ export async function createAgent(character: Character, db: IDatabaseAdapter, ca
750752
goatPlugin = await createGoatPlugin((secret) => getSecret(character, secret))
751753
}
752754

755+
let zilliqaPlugin: any | undefined;
756+
if (getSecret(character, "ZILLIQA_PRIVATE_KEY")) {
757+
zilliqaPlugin = await createZilliqaPlugin((secret) =>
758+
getSecret(character, secret)
759+
);
760+
}
761+
753762
// Initialize Reclaim adapter if environment variables are present
754763
// let verifiableInferenceAdapter;
755764
// if (
@@ -846,7 +855,8 @@ export async function createAgent(character: Character, db: IDatabaseAdapter, ca
846855
getSecret(character, "ENABLE_TEE_LOG") && ((teeMode !== TEEMode.OFF && walletSecretSalt) || getSecret(character, "SGX")) ? teeLogPlugin : null,
847856
getSecret(character, "OMNIFLIX_API_URL") && getSecret(character, "OMNIFLIX_MNEMONIC") ? OmniflixPlugin : null,
848857
getSecret(character, "COINBASE_API_KEY") && getSecret(character, "COINBASE_PRIVATE_KEY") && getSecret(character, "COINBASE_NOTIFICATION_URI") ? webhookPlugin : null,
849-
goatPlugin,
858+
goatPlugin,
859+
zilliqaPlugin,
850860
getSecret(character, "COINGECKO_API_KEY") || getSecret(character, "COINGECKO_PRO_API_KEY") ? coingeckoPlugin : null,
851861
getSecret(character, "MORALIS_API_KEY") ? moralisPlugin : null,
852862
getSecret(character, "EVM_PROVIDER_URL") ? goatPlugin : null,

packages/plugin-zilliqa/README.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# @elizaos/plugin-zilliqa
2+
3+
A plugin for integrating Zilliqa blockchain capabilities through the GOAT (Great Onchain Agent Toolkit) framework within the ElizaOS ecosystem.
4+
5+
## Description
6+
7+
[GOAT](https://ohmygoat.dev/) 🐐 (Great Onchain Agent Toolkit) is an open-source framework for adding blockchain tools such as wallets, being able to hold or trade tokens, or interacting with blockchain smart contracts, to your AI agent.
8+
9+
- [Chains supported](https://ohmygoat.dev/chains-wallets-plugins)
10+
- [Plugins supported](https://ohmygoat.dev/chains-wallets-plugins)
11+
12+
This plugin integrates the GOAT Zilliqa plugin and wallet with Eliza.
13+
14+
## Installation
15+
16+
```bash
17+
pnpm install @elizaos/plugin-goat
18+
```
19+
20+
## Configuration
21+
22+
### Environment Variables
23+
24+
```typescript
25+
EVM_PRIVATE_KEY=<Your EVM wallet private key>
26+
EVM_PROVIDER_URL=<Your RPC provider URL (e.g., Infura, Alchemy)>
27+
```
28+
29+
## Common Issues & Troubleshooting
30+
31+
1. **Agent not executing an action**:
32+
33+
- If you are also using the EVM Plugin, sometimes the agent might confuse the action name with an EVM Plugin action name instead of the GOAT Plugin action. Removing the EVM Plugin should fix this issue. There is no need for you to use both plugins at the same time.
34+
- If you are using Trump as a character it might be tricky to get them to perform any action since the character is full of prompts that aim to change the topic of the conversation. To fix this try using a different character or create your own with prompts that are more suitable to what the agent is supposed to do.
35+
36+
2. **Wallet Connection Issues**
37+
38+
- Verify private key is correctly formatted
39+
- Check RPC endpoint availability
40+
- Ensure sufficient network balance
41+
42+
3. **Transaction Issues**
43+
- Verify gas availability
44+
- Check network congestion
45+
- Confirm transaction parameters
46+
47+
## License
48+
49+
This plugin is part of the Eliza project. See the main project repository for license information.

packages/plugin-zilliqa/package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "@elizaos/plugin-zilliqa",
3+
"version": "0.1.7-alpha.2",
4+
"main": "dist/index.js",
5+
"type": "module",
6+
"types": "dist/index.d.ts",
7+
"dependencies": {
8+
"@elizaos/core": "workspace:*",
9+
"@goat-sdk/adapter-vercel-ai": "0.2.7",
10+
"@goat-sdk/core": "0.4.6",
11+
"@goat-sdk/plugin-zilliqa": "0.1.2",
12+
"@goat-sdk/wallet-evm": "0.2.6",
13+
"@goat-sdk/wallet-viem": "0.2.6",
14+
"@goat-sdk/wallet-zilliqa": "0.2.5",
15+
"@zilliqa-js/account": "^3.5.0",
16+
"@zilliqa-js/zilliqa": "^3.5.0",
17+
"tsup": "8.3.5"
18+
},
19+
"scripts": {
20+
"build": "tsup --format esm --dts",
21+
"dev": "tsup --format esm --dts --watch"
22+
},
23+
"peerDependencies": {
24+
"whatwg-url": "7.1.0"
25+
}
26+
}

0 commit comments

Comments
 (0)