Skip to content

Commit 2711dd8

Browse files
committed
Add coingecko to eleven labs example
1 parent 8d49602 commit 2711dd8

File tree

6 files changed

+25
-6
lines changed

6 files changed

+25
-6
lines changed

goat.code-workspace

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
"name": "[Plugin] 🎰 polymarket",
3737
"path": "./typescript/packages/plugins/polymarket"
3838
},
39+
{
40+
"name": "[Plugin] 💰 coingecko",
41+
"path": "./typescript/packages/plugins/coingecko"
42+
},
3943
{
4044
"name": "[Wallet] 🍀 crossmint",
4145
"path": "./typescript/packages/wallets/crossmint"
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
NEXT_PUBLIC_ELEVEN_LABS_AGENT_ID=
22
NEXT_PUBLIC_SEPOLIA_RPC_URL=
3+
NEXT_PUBLIC_COINGECKO_API_KEY=

typescript/examples/eleven-labs/conversational-agent/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"@goat-sdk/adapter-eleven-labs": "0.1.2",
1414
"@goat-sdk/core": "0.3.10",
1515
"@goat-sdk/wallet-viem": "0.1.3",
16+
"@goat-sdk/plugin-coingecko": "workspace:*",
1617
"@tanstack/react-query": "^5.62.2",
1718
"connectkit": "^1.8.2",
1819
"next": "15.0.3",

typescript/examples/eleven-labs/conversational-agent/src/app/components/conversation.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { viem } from "@goat-sdk/wallet-viem";
88
import { ConnectKitButton } from "connectkit";
99
import { useAccount, useWalletClient } from "wagmi";
1010
import { sendETH } from "../../../../../../packages/core/dist/plugins/send-eth";
11+
import { coingecko } from "@goat-sdk/plugin-coingecko";
1112

1213
export function Conversation() {
1314
const { isConnected } = useAccount();
@@ -32,7 +33,12 @@ export function Conversation() {
3233
// const wallet = viem Client
3334
const tools = await getOnChainTools({
3435
wallet: viem(wallet),
35-
plugins: [sendETH()],
36+
plugins: [
37+
sendETH(),
38+
coingecko({
39+
apiKey: process.env.NEXT_PUBLIC_COINGECKO_API_KEY ?? "",
40+
}),
41+
],
3642
options: {
3743
logTools: true,
3844
},

typescript/packages/plugins/coingecko/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@goat-sdk/plugin-coingecko",
3-
"version": "0.1.7",
3+
"version": "0.1.0",
44
"files": ["dist/**/*", "README.md", "package.json"],
55
"scripts": {
66
"build": "tsup",

typescript/pnpm-lock.yaml

+11-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)