Skip to content

Commit ff8b9ea

Browse files
changes
1 parent f11af6f commit ff8b9ea

File tree

8 files changed

+10
-21
lines changed

8 files changed

+10
-21
lines changed

typescript/examples/vercel-ai/crossmint-solana-custodial-wallets/index.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { generateText } from "ai";
44
import { getOnChainTools } from "@goat-sdk/adapter-vercel-ai";
55
import { crossmint } from "@goat-sdk/crossmint";
66
import { Connection } from "@solana/web3.js";
7-
import { nfts } from "@goat-sdk/plugin-solana-actions";
87

98
require("dotenv").config();
109

@@ -16,24 +15,22 @@ if (!apiKey || !email) {
1615
}
1716

1817
const { custodial } = crossmint(apiKey);
19-
const connection = new Connection("https://api.devnet.solana.com", "confirmed");
2018

2119
(async () => {
2220
const tools = await getOnChainTools({
2321
wallet: await custodial({
2422
chain: "solana",
25-
address: "3q1PB3Yde3wUnJ45RLrAhCg3W1n9HEC8Jd9NkfuhRGS1",
23+
email: email,
2624
env: "staging",
27-
connection,
25+
connection: new Connection("https://api.devnet.solana.com", "confirmed"),
2826
}),
29-
plugins: [nfts(connection)],
3027
});
3128

3229
const result = await generateText({
3330
model: openai("gpt-4o-mini"),
3431
tools: tools,
3532
maxSteps: 5,
36-
prompt: "Transfer NFT with assetId 57hD2akP2FsEwnDMJn8CNS565p2dNUz8UKuQ5tUGEsh7 to the wallet CKkeuMRjRsM9zBNnFVRRYhQ3rg4uL4tPkaADNLgk2omb",
33+
prompt: "Get my balance in SOL",
3734
});
3835

3936
console.log(result.text);

typescript/examples/vercel-ai/crossmint-solana-custodial-wallets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@goat-sdk/core": "workspace:*",
1717
"@goat-sdk/plugin-erc20": "workspace:*",
1818
"@goat-sdk/crossmint": "workspace:*",
19-
"@goat-sdk/plugin-solana-actions": "workspace:*",
19+
"@goat-sdk/plugin-solana-nfts": "workspace:*",
2020
"@solana/web3.js": "1.95.8",
2121
"ai": "^4.0.3",
2222
"dotenv": "^16.4.5",

typescript/packages/plugins/solana/package.json typescript/packages/plugins/solana-nfts/package.json

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
2-
"name": "@goat-sdk/plugin-solana-actions",
2+
"name": "@goat-sdk/plugin-solana-nfts",
33
"version": "0.1.0",
4-
"files": [
5-
"dist/**/*",
6-
"README.md",
7-
"package.json"
8-
],
4+
"files": ["dist/**/*", "README.md", "package.json"],
95
"scripts": {
106
"build": "tsup",
117
"clean": "rm -rf dist",
@@ -39,9 +35,5 @@
3935
"bugs": {
4036
"url": "https://github.com/goat-sdk/goat/issues"
4137
},
42-
"keywords": [
43-
"ai",
44-
"agents",
45-
"web3"
46-
]
38+
"keywords": ["ai", "agents", "web3"]
4739
}

typescript/pnpm-lock.yaml

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

0 commit comments

Comments
 (0)