|
1 | 1 | import type { Plugin } from "./plugins/plugins";
|
2 | 2 | import { sendETH } from "./plugins/send-eth";
|
3 |
| -import { sendSOL } from "./plugins/send-sol"; |
| 3 | +import { sendSOL } from "./plugins/solana/send-sol"; |
4 | 4 | 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, |
11 | 11 | } from "./tools";
|
12 | 12 | import { addParametersToDescription, parametersToJsonExample } from "./utils";
|
13 | 13 | 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, |
30 | 30 | } from "./wallets";
|
31 | 31 |
|
32 | 32 | 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, |
60 | 60 | };
|
0 commit comments