Skip to content

Commit e1b3f94

Browse files
fix formatter
1 parent 614b5f6 commit e1b3f94

File tree

9 files changed

+370
-424
lines changed

9 files changed

+370
-424
lines changed

biome.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
typescript/biome.json

typescript/biome.json

+30-30
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3-
"vcs": {
4-
"enabled": false,
5-
"clientKind": "git",
6-
"useIgnoreFile": false
7-
},
8-
"files": {
9-
"ignoreUnknown": false,
10-
"ignore": ["dist/**/*"]
11-
},
12-
"formatter": {
13-
"enabled": true,
14-
"indentStyle": "space",
15-
"indentWidth": 4,
16-
"lineWidth": 120
17-
},
18-
"organizeImports": {
19-
"enabled": true
20-
},
21-
"linter": {
22-
"enabled": true,
23-
"rules": {
24-
"recommended": true
25-
}
26-
},
27-
"javascript": {
28-
"formatter": {
29-
"quoteStyle": "double"
30-
}
31-
}
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"vcs": {
4+
"enabled": false,
5+
"clientKind": "git",
6+
"useIgnoreFile": false
7+
},
8+
"files": {
9+
"ignoreUnknown": false,
10+
"ignore": ["dist/**/*"]
11+
},
12+
"formatter": {
13+
"enabled": true,
14+
"indentStyle": "space",
15+
"indentWidth": 4,
16+
"lineWidth": 120
17+
},
18+
"organizeImports": {
19+
"enabled": true
20+
},
21+
"linter": {
22+
"enabled": true,
23+
"rules": {
24+
"recommended": true
25+
}
26+
},
27+
"javascript": {
28+
"formatter": {
29+
"quoteStyle": "double"
30+
}
31+
}
3232
}

typescript/packages/core/package.json

+31-31
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
{
2-
"name": "@goat-sdk/core",
3-
"version": "0.3.10",
4-
"sideEffects": false,
5-
"files": ["dist/**/*", "README.md", "package.json"],
6-
"scripts": {
7-
"build": "tsup",
8-
"clean": "rm -rf dist",
9-
"test": "vitest run --passWithNoTests"
10-
},
11-
"main": "./dist/index.js",
12-
"module": "./dist/index.mjs",
13-
"types": "./dist/index.d.ts",
14-
"dependencies": {
15-
"@metaplex-foundation/mpl-bubblegum": "^4.2.1",
16-
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
17-
"@metaplex-foundation/umi-web3js-adapters": "^0.9.2",
18-
"@solana/web3.js": "1.95.8",
19-
"abitype": "^1.0.6",
20-
"viem": "^2.21.49",
21-
"zod": "^3.23.8"
22-
},
23-
"homepage": "https://ohmygoat.dev",
24-
"repository": {
25-
"type": "git",
26-
"url": "git+https://github.com/goat-sdk/goat.git"
27-
},
28-
"license": "MIT",
29-
"bugs": {
30-
"url": "https://github.com/goat-sdk/goat/issues"
31-
},
32-
"keywords": ["ai", "agents", "web3"]
2+
"name": "@goat-sdk/core",
3+
"version": "0.3.10",
4+
"sideEffects": false,
5+
"files": ["dist/**/*", "README.md", "package.json"],
6+
"scripts": {
7+
"build": "tsup",
8+
"clean": "rm -rf dist",
9+
"test": "vitest run --passWithNoTests"
10+
},
11+
"main": "./dist/index.js",
12+
"module": "./dist/index.mjs",
13+
"types": "./dist/index.d.ts",
14+
"dependencies": {
15+
"@metaplex-foundation/mpl-bubblegum": "^4.2.1",
16+
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
17+
"@metaplex-foundation/umi-web3js-adapters": "^0.9.2",
18+
"@solana/web3.js": "1.95.8",
19+
"abitype": "^1.0.6",
20+
"viem": "^2.21.49",
21+
"zod": "^3.23.8"
22+
},
23+
"homepage": "https://ohmygoat.dev",
24+
"repository": {
25+
"type": "git",
26+
"url": "git+https://github.com/goat-sdk/goat.git"
27+
},
28+
"license": "MIT",
29+
"bugs": {
30+
"url": "https://github.com/goat-sdk/goat/issues"
31+
},
32+
"keywords": ["ai", "agents", "web3"]
3333
}

typescript/packages/core/src/index.ts

+49-49
Original file line numberDiff line numberDiff line change
@@ -2,59 +2,59 @@ import type { Plugin } from "./plugins/plugins";
22
import { sendETH } from "./plugins/send-eth";
33
import { sendSOL } from "./plugins/solana/send-sol";
44
import {
5-
type DeferredTool,
6-
type GetDeferredToolsParams,
7-
type GetToolsParams,
8-
type Tool,
9-
getDeferredTools,
10-
getTools,
5+
type DeferredTool,
6+
type GetDeferredToolsParams,
7+
type GetToolsParams,
8+
type Tool,
9+
getDeferredTools,
10+
getTools,
1111
} from "./tools";
1212
import { addParametersToDescription, parametersToJsonExample } from "./utils";
1313
import type {
14-
Balance,
15-
Chain,
16-
ChainForWalletClient,
17-
EVMReadRequest,
18-
EVMSmartWalletClient,
19-
EVMTransaction,
20-
EVMTypedData,
21-
EVMWalletClient,
22-
Signature,
23-
SolanaReadRequest,
24-
SolanaTransaction,
25-
SolanaWalletClient,
26-
WalletClient,
27-
isEVMSmartWalletClient,
28-
isEVMWalletClient,
29-
isSolanaWalletClient,
14+
Balance,
15+
Chain,
16+
ChainForWalletClient,
17+
EVMReadRequest,
18+
EVMSmartWalletClient,
19+
EVMTransaction,
20+
EVMTypedData,
21+
EVMWalletClient,
22+
Signature,
23+
SolanaReadRequest,
24+
SolanaTransaction,
25+
SolanaWalletClient,
26+
WalletClient,
27+
isEVMSmartWalletClient,
28+
isEVMWalletClient,
29+
isSolanaWalletClient,
3030
} from "./wallets";
3131

3232
export {
33-
getTools,
34-
getDeferredTools,
35-
sendETH,
36-
sendSOL,
37-
addParametersToDescription,
38-
parametersToJsonExample,
39-
type Tool,
40-
type DeferredTool,
41-
type GetToolsParams,
42-
type GetDeferredToolsParams,
43-
type Plugin,
44-
type WalletClient,
45-
type EVMTransaction,
46-
type EVMReadRequest,
47-
type EVMWalletClient,
48-
type EVMSmartWalletClient,
49-
type SolanaTransaction,
50-
type SolanaReadRequest,
51-
type SolanaWalletClient,
52-
type Signature,
53-
type Balance,
54-
type EVMTypedData,
55-
type isEVMWalletClient,
56-
type isEVMSmartWalletClient,
57-
type isSolanaWalletClient,
58-
type Chain,
59-
type ChainForWalletClient,
33+
getTools,
34+
getDeferredTools,
35+
sendETH,
36+
sendSOL,
37+
addParametersToDescription,
38+
parametersToJsonExample,
39+
type Tool,
40+
type DeferredTool,
41+
type GetToolsParams,
42+
type GetDeferredToolsParams,
43+
type Plugin,
44+
type WalletClient,
45+
type EVMTransaction,
46+
type EVMReadRequest,
47+
type EVMWalletClient,
48+
type EVMSmartWalletClient,
49+
type SolanaTransaction,
50+
type SolanaReadRequest,
51+
type SolanaWalletClient,
52+
type Signature,
53+
type Balance,
54+
type EVMTypedData,
55+
type isEVMWalletClient,
56+
type isEVMSmartWalletClient,
57+
type isSolanaWalletClient,
58+
type Chain,
59+
type ChainForWalletClient,
6060
};

typescript/packages/core/src/plugins/solana/nfts.ts

+34-45
Original file line numberDiff line numberDiff line change
@@ -2,61 +2,50 @@ import { PublicKey } from "@solana/web3.js";
22
import type { SolanaWalletClient } from "../../wallets";
33
import type { Plugin } from "../plugins";
44
import { z } from "zod";
5-
import {
6-
mplBubblegum,
7-
getAssetWithProof,
8-
transfer,
9-
} from "@metaplex-foundation/mpl-bubblegum";
5+
import { mplBubblegum, getAssetWithProof, transfer } from "@metaplex-foundation/mpl-bubblegum";
106
import { createUmi } from "@metaplex-foundation/umi-bundle-defaults";
11-
import {
12-
fromWeb3JsPublicKey,
13-
toWeb3JsInstruction,
14-
} from "@metaplex-foundation/umi-web3js-adapters";
7+
import { fromWeb3JsPublicKey, toWeb3JsInstruction } from "@metaplex-foundation/umi-web3js-adapters";
158

169
export function nfts(): Plugin<SolanaWalletClient> {
17-
return {
18-
name: "nft_actions",
19-
supportsSmartWallets: () => true,
20-
supportsChain: (chain) => chain.type === "solana",
21-
getTools: async () => {
22-
return [
23-
{
24-
name: "transfer_nft",
25-
description:
26-
"This {{tool}} sends an NFT from your wallet to an address on a Solana chain.",
27-
parameters: transferNFTParametersSchema,
28-
method: transferNFTMethod,
29-
},
30-
];
31-
},
32-
};
10+
return {
11+
name: "nft_actions",
12+
supportsSmartWallets: () => true,
13+
supportsChain: (chain) => chain.type === "solana",
14+
getTools: async () => {
15+
return [
16+
{
17+
name: "transfer_nft",
18+
description: "This {{tool}} sends an NFT from your wallet to an address on a Solana chain.",
19+
parameters: transferNFTParametersSchema,
20+
method: transferNFTMethod,
21+
},
22+
];
23+
},
24+
};
3325
}
3426

3527
const transferNFTParametersSchema = z.object({
36-
recipientAddress: z.string().describe("The address to send the NFT to"),
37-
assetId: z.string().describe("The asset ID of the NFT to send"),
28+
recipientAddress: z.string().describe("The address to send the NFT to"),
29+
assetId: z.string().describe("The asset ID of the NFT to send"),
3830
});
3931

4032
async function transferNFTMethod(
41-
walletClient: SolanaWalletClient,
42-
parameters: z.infer<typeof transferNFTParametersSchema>,
33+
walletClient: SolanaWalletClient,
34+
parameters: z.infer<typeof transferNFTParametersSchema>,
4335
): Promise<string> {
44-
const { recipientAddress, assetId } = parameters;
45-
const umi = createUmi(walletClient.connection);
46-
umi.use(mplBubblegum());
47-
const assetWithProof = await getAssetWithProof(
48-
umi,
49-
fromWeb3JsPublicKey(new PublicKey(assetId)),
50-
);
51-
const instructions = transfer(umi, {
52-
...assetWithProof,
53-
leafOwner: fromWeb3JsPublicKey(new PublicKey(walletClient.getAddress())),
54-
newLeafOwner: fromWeb3JsPublicKey(new PublicKey(recipientAddress)),
55-
}).getInstructions();
36+
const { recipientAddress, assetId } = parameters;
37+
const umi = createUmi(walletClient.connection);
38+
umi.use(mplBubblegum());
39+
const assetWithProof = await getAssetWithProof(umi, fromWeb3JsPublicKey(new PublicKey(assetId)));
40+
const instructions = transfer(umi, {
41+
...assetWithProof,
42+
leafOwner: fromWeb3JsPublicKey(new PublicKey(walletClient.getAddress())),
43+
newLeafOwner: fromWeb3JsPublicKey(new PublicKey(recipientAddress)),
44+
}).getInstructions();
5645

57-
const result = await walletClient.sendTransaction({
58-
instructions: instructions.map(toWeb3JsInstruction),
59-
});
46+
const result = await walletClient.sendTransaction({
47+
instructions: instructions.map(toWeb3JsInstruction),
48+
});
6049

61-
return result.hash;
50+
return result.hash;
6251
}

0 commit comments

Comments
 (0)