Skip to content

Commit f5ceaf9

Browse files
changes
1 parent aafdc37 commit f5ceaf9

File tree

4 files changed

+111
-112
lines changed

4 files changed

+111
-112
lines changed

typescript/packages/core/src/index.ts

+50-50
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11
import type { Plugin } from "./plugins/plugins";
22
import { sendETH } from "./plugins/send-eth";
3-
import { sendSOL } from "./plugins/send-sol";
3+
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/send-sol.ts

-55
This file was deleted.

typescript/packages/core/src/plugins/send-nft.ts typescript/packages/core/src/plugins/solana/nfts.ts

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
import { Connection, PublicKey } from "@solana/web3.js";
2-
import { parseUnits } from "viem";
3-
import type { SolanaWalletClient } from "../wallets";
4-
import type { Plugin } from "./plugins";
1+
import { PublicKey } from "@solana/web3.js";
2+
import type { SolanaWalletClient } from "../../wallets";
3+
import type { Plugin } from "../plugins";
54
import { z } from "zod";
6-
import { SystemProgram } from "@solana/web3.js";
75
import {
86
mplBubblegum,
97
getAssetWithProof,
@@ -15,9 +13,9 @@ import {
1513
toWeb3JsInstruction,
1614
} from "@metaplex-foundation/umi-web3js-adapters";
1715

18-
export function transferNFT(): Plugin<SolanaWalletClient> {
16+
export function nfts(): Plugin<SolanaWalletClient> {
1917
return {
20-
name: "transfer_nft",
18+
name: "nft_actions",
2119
supportsSmartWallets: () => true,
2220
supportsChain: (chain) => chain.type === "solana",
2321
getTools: async () => {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
import { PublicKey } from "@solana/web3.js";
2+
import { SystemProgram } from "@solana/web3.js";
3+
import { parseUnits } from "viem";
4+
import { z } from "zod";
5+
import type { SolanaWalletClient } from "../../wallets";
6+
import type { Plugin } from "../plugins";
7+
8+
export function sendSOL(): Plugin<SolanaWalletClient> {
9+
return {
10+
name: "send_sol",
11+
supportsSmartWallets: () => true,
12+
supportsChain: (chain) => chain.type === "solana",
13+
getTools: async () => {
14+
return [
15+
{
16+
name: "send_sol",
17+
description:
18+
"This {{tool}} sends SOL to an address on a Solana chain.",
19+
parameters: sendSOLParametersSchema,
20+
method: sendSOLMethod,
21+
},
22+
];
23+
},
24+
};
25+
}
26+
27+
const sendSOLParametersSchema = z.object({
28+
to: z.string().describe("The address to send SOL to"),
29+
amount: z.string().describe("The amount of SOL to send"),
30+
});
31+
32+
async function sendSOLMethod(
33+
walletClient: SolanaWalletClient,
34+
parameters: z.infer<typeof sendSOLParametersSchema>,
35+
): Promise<string> {
36+
try {
37+
const { to, amount } = parameters;
38+
39+
const senderAddress = walletClient.getAddress();
40+
const lamports = parseUnits(amount, 9);
41+
42+
const transferInstruction = SystemProgram.transfer({
43+
fromPubkey: new PublicKey(senderAddress),
44+
toPubkey: new PublicKey(to),
45+
lamports,
46+
});
47+
48+
const txResult = await walletClient.sendTransaction({
49+
instructions: [transferInstruction],
50+
});
51+
52+
return txResult.hash;
53+
} catch (error) {
54+
throw new Error(`Failed to send SOL: ${error}`);
55+
}
56+
}

0 commit comments

Comments
 (0)