@elizaos/plugin-wallet 2.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (200) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +64 -0
  3. package/auto-enable.ts +76 -0
  4. package/dist/LpManagementService-BWrQ5-cO.mjs +353 -0
  5. package/dist/MockLpService-D_Apn4Fd.mjs +99 -0
  6. package/dist/aerodrome-CfnESC32.mjs +890 -0
  7. package/dist/chunk-hT5z_Zn9.mjs +35 -0
  8. package/dist/index.d.mts +34727 -0
  9. package/dist/index.mjs +21590 -0
  10. package/dist/lib/server-wallet-trade.d.mts +34 -0
  11. package/dist/lib/server-wallet-trade.mjs +306 -0
  12. package/dist/meteora-BPX39hZo.mjs +22640 -0
  13. package/dist/orca-Bybp1HXO.mjs +249 -0
  14. package/dist/pancakeswp-CkEXlXti.mjs +604 -0
  15. package/dist/plugin-ZO_MTyd0.mjs +529 -0
  16. package/dist/raydium-rfaM9yEf.mjs +539 -0
  17. package/dist/sdk/index.d.mts +32492 -0
  18. package/dist/sdk/index.mjs +6415 -0
  19. package/dist/types-D5252NZk.mjs +487 -0
  20. package/dist/uniswap-CReXgXVN.mjs +573 -0
  21. package/dist/wallet-action.d.mts +6 -0
  22. package/dist/wallet-action.mjs +820 -0
  23. package/package.json +152 -0
  24. package/src/actions/failure-codes.ts +79 -0
  25. package/src/actions/index.ts +1 -0
  26. package/src/analytics/birdeye/actions/wallet-search-address.ts +9 -0
  27. package/src/analytics/birdeye/birdeye-task.ts +175 -0
  28. package/src/analytics/birdeye/birdeye.ts +813 -0
  29. package/src/analytics/birdeye/constants.ts +74 -0
  30. package/src/analytics/birdeye/providers/agent-portfolio-provider.ts +18 -0
  31. package/src/analytics/birdeye/providers/market.ts +227 -0
  32. package/src/analytics/birdeye/providers/portfolio-factory.test.ts +138 -0
  33. package/src/analytics/birdeye/providers/portfolio-factory.ts +252 -0
  34. package/src/analytics/birdeye/providers/trending.ts +365 -0
  35. package/src/analytics/birdeye/providers/wallet.ts +14 -0
  36. package/src/analytics/birdeye/search-category.test.ts +207 -0
  37. package/src/analytics/birdeye/search-category.ts +506 -0
  38. package/src/analytics/birdeye/service.ts +992 -0
  39. package/src/analytics/birdeye/tasks/birdeye.ts +232 -0
  40. package/src/analytics/birdeye/types/api/common.ts +305 -0
  41. package/src/analytics/birdeye/types/api/defi.ts +220 -0
  42. package/src/analytics/birdeye/types/api/pair.ts +200 -0
  43. package/src/analytics/birdeye/types/api/search.ts +86 -0
  44. package/src/analytics/birdeye/types/api/token.ts +635 -0
  45. package/src/analytics/birdeye/types/api/trader.ts +76 -0
  46. package/src/analytics/birdeye/types/api/wallet.ts +181 -0
  47. package/src/analytics/birdeye/types/shared.ts +106 -0
  48. package/src/analytics/birdeye/utils.ts +700 -0
  49. package/src/analytics/dexscreener/errors.ts +28 -0
  50. package/src/analytics/dexscreener/index.ts +3 -0
  51. package/src/analytics/dexscreener/search-category.test.ts +49 -0
  52. package/src/analytics/dexscreener/search-category.ts +42 -0
  53. package/src/analytics/dexscreener/service.ts +595 -0
  54. package/src/analytics/dexscreener/types.ts +128 -0
  55. package/src/analytics/lpinfo/index.d.ts +7 -0
  56. package/src/analytics/lpinfo/index.ts +52 -0
  57. package/src/analytics/lpinfo/kamino/README.md +102 -0
  58. package/src/analytics/lpinfo/kamino/index.ts +24 -0
  59. package/src/analytics/lpinfo/kamino/providers/kaminoLiquidityProvider.ts +422 -0
  60. package/src/analytics/lpinfo/kamino/providers/kaminoPoolProvider.ts +365 -0
  61. package/src/analytics/lpinfo/kamino/providers/kaminoProvider.ts +496 -0
  62. package/src/analytics/lpinfo/kamino/services/kaminoLiquidityService.ts +1123 -0
  63. package/src/analytics/lpinfo/kamino/services/kaminoService.ts +758 -0
  64. package/src/analytics/lpinfo/steer/README.md +169 -0
  65. package/src/analytics/lpinfo/steer/index.ts +23 -0
  66. package/src/analytics/lpinfo/steer/providers/steerLiquidityProvider.ts +544 -0
  67. package/src/analytics/lpinfo/steer/services/steerLiquidityService.ts +1690 -0
  68. package/src/analytics/lpinfo/steer/steer-display-types.ts +99 -0
  69. package/src/analytics/news/index.ts +52 -0
  70. package/src/analytics/news/interfaces/types.ts +222 -0
  71. package/src/analytics/news/providers/defiNewsProvider.ts +734 -0
  72. package/src/analytics/news/services/newsDataService.ts +332 -0
  73. package/src/analytics/news/utils/formatters.ts +151 -0
  74. package/src/analytics/token-info/action.ts +240 -0
  75. package/src/analytics/token-info/index.ts +3 -0
  76. package/src/analytics/token-info/params.ts +215 -0
  77. package/src/analytics/token-info/providers.ts +681 -0
  78. package/src/analytics/token-info/service.ts +168 -0
  79. package/src/analytics/token-info/types.ts +74 -0
  80. package/src/audit/audit-log.ts +45 -0
  81. package/src/browser-shim/build-shim.ts +123 -0
  82. package/src/browser-shim/index.ts +5 -0
  83. package/src/browser-shim/shim.template.js +563 -0
  84. package/src/chains/evm/.github/workflows/npm-deploy.yml +112 -0
  85. package/src/chains/evm/LICENSE +21 -0
  86. package/src/chains/evm/README.md +106 -0
  87. package/src/chains/evm/actions/helpers.ts +147 -0
  88. package/src/chains/evm/actions/swap.ts +839 -0
  89. package/src/chains/evm/actions/transfer.ts +254 -0
  90. package/src/chains/evm/biome.json +61 -0
  91. package/src/chains/evm/bridge-router.ts +660 -0
  92. package/src/chains/evm/build.ts +89 -0
  93. package/src/chains/evm/chain-handler.ts +416 -0
  94. package/src/chains/evm/constants.ts +23 -0
  95. package/src/chains/evm/contracts/artifacts/OZGovernor.json +1707 -0
  96. package/src/chains/evm/contracts/artifacts/TimelockController.json +1007 -0
  97. package/src/chains/evm/contracts/artifacts/VoteToken.json +895 -0
  98. package/src/chains/evm/dex/aerodrome/index.ts +34 -0
  99. package/src/chains/evm/dex/aerodrome/services/AerodromeLpService.ts +558 -0
  100. package/src/chains/evm/dex/aerodrome/types.ts +318 -0
  101. package/src/chains/evm/dex/pancakeswp/index.ts +35 -0
  102. package/src/chains/evm/dex/pancakeswp/services/PancakeSwapV3LpService.ts +743 -0
  103. package/src/chains/evm/dex/pancakeswp/types.ts +65 -0
  104. package/src/chains/evm/dex/uniswap/index.ts +35 -0
  105. package/src/chains/evm/dex/uniswap/services/UniswapV3LpService.ts +759 -0
  106. package/src/chains/evm/dex/uniswap/types.ts +390 -0
  107. package/src/chains/evm/generated/specs/spec-helpers.ts +73 -0
  108. package/src/chains/evm/generated/specs/specs.ts +151 -0
  109. package/src/chains/evm/gov-router.ts +250 -0
  110. package/src/chains/evm/index.browser.ts +16 -0
  111. package/src/chains/evm/index.ts +31 -0
  112. package/src/chains/evm/prompts.ts +193 -0
  113. package/src/chains/evm/providers/get-balance.ts +123 -0
  114. package/src/chains/evm/providers/wallet.ts +715 -0
  115. package/src/chains/evm/routes/sign.ts +333 -0
  116. package/src/chains/evm/rpc-providers.ts +410 -0
  117. package/src/chains/evm/service.ts +140 -0
  118. package/src/chains/evm/templates/index.ts +10 -0
  119. package/src/chains/evm/types/index.ts +432 -0
  120. package/src/chains/evm/vitest.config.ts +18 -0
  121. package/src/chains/registry.ts +668 -0
  122. package/src/chains/solana/README.md +367 -0
  123. package/src/chains/wallet-action.ts +533 -0
  124. package/src/chains/wallet-router.test.ts +296 -0
  125. package/src/contracts.ts +65 -0
  126. package/src/core-augmentation.ts +10 -0
  127. package/src/index.ts +71 -0
  128. package/src/lib/server-wallet-trade.ts +192 -0
  129. package/src/lib/wallet-export-guard.ts +330 -0
  130. package/src/lp/actions/liquidity.ts +827 -0
  131. package/src/lp/e2e/real-token-tests.ts +428 -0
  132. package/src/lp/e2e/scenarios.ts +470 -0
  133. package/src/lp/e2e/test-utils.ts +145 -0
  134. package/src/lp/lp-manager-entry.ts +303 -0
  135. package/src/lp/services/ConcentratedLiquidityService.ts +120 -0
  136. package/src/lp/services/DexInteractionService.ts +226 -0
  137. package/src/lp/services/LpManagementService.test.ts +148 -0
  138. package/src/lp/services/LpManagementService.ts +632 -0
  139. package/src/lp/services/UserLpProfileService.ts +163 -0
  140. package/src/lp/services/VaultService.ts +153 -0
  141. package/src/lp/services/YieldOptimizationService.ts +344 -0
  142. package/src/lp/services/__tests__/MockLpService.ts +146 -0
  143. package/src/lp/tasks/LpAutoRebalanceTask.ts +117 -0
  144. package/src/lp/tasks/__tests__/LpAutoRebalanceTask.test.ts +370 -0
  145. package/src/lp/types.ts +582 -0
  146. package/src/lp/utils/solanaClient.ts +143 -0
  147. package/src/plugin.ts +125 -0
  148. package/src/policy/policy.ts +19 -0
  149. package/src/providers/canonical-provider.ts +27 -0
  150. package/src/providers/unified-wallet-provider.ts +79 -0
  151. package/src/register-routes.ts +11 -0
  152. package/src/routes/plugin.ts +47 -0
  153. package/src/routes/wallet-market-overview-route.ts +869 -0
  154. package/src/sdk/abi.ts +258 -0
  155. package/src/sdk/bridge/abis.ts +126 -0
  156. package/src/sdk/bridge/client.ts +518 -0
  157. package/src/sdk/bridge/index.ts +56 -0
  158. package/src/sdk/bridge/solana.ts +604 -0
  159. package/src/sdk/bridge/types.ts +202 -0
  160. package/src/sdk/convenience.ts +347 -0
  161. package/src/sdk/escrow/MutualStakeEscrow.ts +480 -0
  162. package/src/sdk/escrow/types.ts +64 -0
  163. package/src/sdk/escrow/verifiers.ts +73 -0
  164. package/src/sdk/identity/erc8004.ts +692 -0
  165. package/src/sdk/identity/reputation.ts +449 -0
  166. package/src/sdk/identity/uaid.ts +497 -0
  167. package/src/sdk/identity/validation.ts +372 -0
  168. package/src/sdk/index.ts +763 -0
  169. package/src/sdk/policy/SpendingPolicy.ts +260 -0
  170. package/src/sdk/policy/UptoBillingPolicy.ts +320 -0
  171. package/src/sdk/router/PaymentRouter.ts +215 -0
  172. package/src/sdk/router/index.ts +8 -0
  173. package/src/sdk/swap/SwapModule.ts +310 -0
  174. package/src/sdk/swap/abi.ts +117 -0
  175. package/src/sdk/swap/index.ts +34 -0
  176. package/src/sdk/swap/types.ts +135 -0
  177. package/src/sdk/tokens/decimals.ts +140 -0
  178. package/src/sdk/tokens/registry.ts +911 -0
  179. package/src/sdk/tokens/solana.ts +419 -0
  180. package/src/sdk/tokens/transfers.ts +327 -0
  181. package/src/sdk/types.ts +158 -0
  182. package/src/sdk/wallet-core.ts +115 -0
  183. package/src/sdk/x402/budget.ts +168 -0
  184. package/src/sdk/x402/chains/abstract/index.ts +280 -0
  185. package/src/sdk/x402/client.ts +320 -0
  186. package/src/sdk/x402/index.ts +46 -0
  187. package/src/sdk/x402/middleware.ts +92 -0
  188. package/src/sdk/x402/multi-asset.ts +144 -0
  189. package/src/sdk/x402/types.ts +156 -0
  190. package/src/services/wallet-backend-service.ts +328 -0
  191. package/src/types/wallet-router.ts +227 -0
  192. package/src/utils/intent-trajectory.ts +106 -0
  193. package/src/wallet/backend.ts +62 -0
  194. package/src/wallet/errors.ts +49 -0
  195. package/src/wallet/index.ts +27 -0
  196. package/src/wallet/local-eoa-backend.ts +201 -0
  197. package/src/wallet/pending.ts +60 -0
  198. package/src/wallet/select-backend.ts +47 -0
  199. package/src/wallet/steward-backend.ts +161 -0
  200. package/src/wallet-action.ts +1 -0
@@ -0,0 +1,367 @@
1
+ # @elizaos/plugin-solana
2
+
3
+ Core Solana blockchain plugin for Eliza OS that provides essential services and actions for token operations, trading, and DeFi integrations.
4
+
5
+ ## Overview
6
+
7
+ The Solana plugin serves as a foundational component of Eliza OS, bridging Solana blockchain capabilities with the Eliza ecosystem. It provides crucial services for token operations, trading, portfolio management, and DeFi integrations, enabling both automated and user-directed interactions with the Solana blockchain.
8
+
9
+ ## Features
10
+
11
+ ### Token Operations
12
+
13
+ - **Token Creation**: Deploy new tokens with customizable metadata
14
+ - **Token Transfers**: Send and receive tokens securely
15
+ - **Balance Management**: Track and manage token balances
16
+ - **Portfolio Analytics**: Real-time portfolio valuation and tracking
17
+
18
+ ### Trading Operations
19
+
20
+ - **Token Swaps**: Execute trades between tokens using Jupiter aggregator
21
+ - **Order Management**: Place and track token orders
22
+ - **Price Monitoring**: Real-time price feeds and historical data
23
+ - **Automated Trading**: Configurable trading strategies and automation
24
+
25
+ ### DeFi Integration
26
+
27
+ - **Liquidity Analysis**: Monitor and analyze pool liquidity
28
+ - **Market Making**: Automated market making capabilities
29
+ - **Yield Optimization**: Smart routing for optimal yields
30
+ - **Risk Management**: Advanced risk scoring and monitoring
31
+
32
+ ### Trust & Security
33
+
34
+ - **Trust Scoring**: Dynamic trust score calculation for tokens
35
+ - **Risk Assessment**: Real-time risk evaluation for trades
36
+ - **Performance Tracking**: Historical performance monitoring
37
+ - **Simulation Mode**: Test strategies without real transactions
38
+
39
+ ## Security Features
40
+
41
+ ### Access Control
42
+
43
+ - **Wallet Management**: Secure wallet key derivation and storage
44
+ - **Permission Scoping**: Granular control over trading permissions
45
+ - **TEE Integration**: Trusted Execution Environment support
46
+ - **Key Protection**: Secure private key handling
47
+
48
+ ### Risk Management
49
+
50
+ - **Trade Limits**: Configurable transaction limits
51
+ - **Slippage Protection**: Automatic slippage controls
52
+ - **Validation Checks**: Multi-level transaction validation
53
+ - **Simulation Support**: Pre-execution transaction simulation
54
+
55
+ ## Installation
56
+
57
+ ```bash
58
+ npm install @elizaos/plugin-solana
59
+ ```
60
+
61
+ ## Configuration
62
+
63
+ Configure the plugin by setting the following environment variables:
64
+
65
+ ```typescript
66
+ const solanaEnvSchema = {
67
+ WALLET_SECRET_SALT: string(optional),
68
+ WALLET_SECRET_KEY: string,
69
+ WALLET_PUBLIC_KEY: string,
70
+ SOL_ADDRESS: string,
71
+ SLIPPAGE: string,
72
+ SOLANA_RPC_URL: string,
73
+ HELIUS_API_KEY: string,
74
+ BIRDEYE_API_KEY: string,
75
+ };
76
+ ```
77
+
78
+ ## Usage
79
+
80
+ ### Basic Setup
81
+
82
+ ```typescript
83
+ import { solanaPlugin } from "@elizaos/plugin-solana";
84
+
85
+ // Initialize the plugin
86
+ const runtime = await initializeRuntime({
87
+ plugins: [solanaPlugin],
88
+ });
89
+ ```
90
+
91
+ ### Services
92
+
93
+ #### TokenProvider
94
+
95
+ Manages token operations and information retrieval.
96
+
97
+ ```typescript
98
+ const tokenProvider = new TokenProvider(
99
+ tokenAddress,
100
+ walletProvider,
101
+ cacheManager,
102
+ );
103
+ await tokenProvider.getTokensInWallet(runtime);
104
+ ```
105
+
106
+ #### WalletProvider
107
+
108
+ Handles wallet operations and portfolio management.
109
+
110
+ ```typescript
111
+ const walletProvider = new WalletProvider(connection, publicKey);
112
+ await walletProvider.getFormattedPortfolio(runtime);
113
+ ```
114
+
115
+ #### TrustScoreProvider
116
+
117
+ Evaluates and manages trust scores for tokens and trading activities.
118
+
119
+ ```typescript
120
+ const trustScore = await runtime.getProvider("trustScore");
121
+ ```
122
+
123
+ ## Actions
124
+
125
+ ### executeSwap
126
+
127
+ Executes a token swap using Jupiter aggregator.
128
+
129
+ ```typescript
130
+ // Example usage
131
+ const result = await runtime.executeAction("EXECUTE_SWAP", {
132
+ inputTokenSymbol: "SOL",
133
+ outputTokenSymbol: "USDC",
134
+ amount: 0.1,
135
+ });
136
+ ```
137
+
138
+ ### transferToken
139
+
140
+ Transfers tokens between wallets.
141
+
142
+ ```typescript
143
+ // Example usage
144
+ const result = await runtime.executeAction("SEND_TOKEN", {
145
+ tokenAddress: "TokenAddressHere",
146
+ recipient: "RecipientAddressHere",
147
+ amount: "1000",
148
+ });
149
+ ```
150
+
151
+ ### transferSol
152
+
153
+ Transfers SOL between wallets.
154
+
155
+ ```typescript
156
+ // Example usage
157
+ const result = await runtime.executeAction("SEND_SOL", {
158
+ recipient: "RecipientAddressHere",
159
+ amount: "1000",
160
+ });
161
+ ```
162
+
163
+ ### takeOrder
164
+
165
+ Places a buy order based on conviction level.
166
+
167
+ ```typescript
168
+ // Example usage
169
+ const result = await runtime.executeAction("TAKE_ORDER", {
170
+ ticker: "SOL",
171
+ contractAddress: "ContractAddressHere",
172
+ });
173
+ ```
174
+
175
+ ### pumpfun
176
+
177
+ Creates and buys tokens on pump.fun.
178
+
179
+ ```typescript
180
+ // Example usage
181
+ const result = await runtime.executeAction("CREATE_AND_BUY_TOKEN", {
182
+ tokenMetadata: {
183
+ name: "TokenName",
184
+ symbol: "SYMBOL",
185
+ description: "Token description",
186
+ image_description: "Image description",
187
+ },
188
+ buyAmountSol: 0.1,
189
+ });
190
+ ```
191
+
192
+ ### fomo
193
+
194
+ Creates and buys tokens on fomo.fund.
195
+
196
+ ```typescript
197
+ // Example usage
198
+ const result = await runtime.executeAction("CREATE_AND_BUY_TOKEN", {
199
+ tokenMetadata: {
200
+ name: "TokenName",
201
+ symbol: "SYMBOL",
202
+ description: "Token description",
203
+ image_description: "Image description",
204
+ },
205
+ buyAmountSol: 0.1,
206
+ requiredLiquidity: 1000,
207
+ });
208
+ ```
209
+
210
+ ### executeSwapForDAO
211
+
212
+ Executes token swaps for DAO operations.
213
+
214
+ ```typescript
215
+ // Example usage
216
+ const result = await runtime.executeAction("EXECUTE_SWAP_DAO", {
217
+ inputTokenSymbol: "SOL",
218
+ outputTokenSymbol: "USDC",
219
+ amount: 0.1,
220
+ });
221
+ ```
222
+
223
+ ## Performance Optimization
224
+
225
+ 1. **Cache Management**
226
+ - Implement token data caching
227
+ - Configure cache TTL settings
228
+ - Monitor cache hit rates
229
+
230
+ 2. **RPC Optimization**
231
+ - Use connection pooling
232
+ - Implement request batching
233
+ - Monitor RPC usage
234
+
235
+ 3. **Transaction Management**
236
+ - Optimize transaction bundling
237
+ - Implement retry strategies
238
+ - Monitor transaction success rates
239
+
240
+ ## System Requirements
241
+
242
+ - Node.js 16.x or higher
243
+ - Solana CLI tools (optional)
244
+ - Minimum 4GB RAM recommended
245
+ - Stable internet connection
246
+ - Access to Solana RPC endpoint
247
+
248
+ ## Troubleshooting
249
+
250
+ ### Common Issues
251
+
252
+ 1. **Wallet Connection Failures**
253
+
254
+ ```bash
255
+ Error: Failed to connect to wallet
256
+ ```
257
+
258
+ - Verify RPC endpoint is accessible
259
+ - Check wallet configuration settings
260
+ - Ensure proper network selection
261
+
262
+ 2. **Transaction Errors**
263
+
264
+ ```bash
265
+ Error: Transaction simulation failed
266
+ ```
267
+
268
+ - Check account balances
269
+ - Verify transaction parameters
270
+ - Ensure proper fee configuration
271
+
272
+ 3. **Price Feed Issues**
273
+
274
+ ```bash
275
+ Error: Unable to fetch price data
276
+ ```
277
+
278
+ - Verify API key configuration
279
+ - Check network connectivity
280
+ - Ensure price feed service status
281
+
282
+ ## Safety & Security
283
+
284
+ ### Best Practices
285
+
286
+ 1. **Environment Variables**
287
+ - Store sensitive keys in environment variables
288
+ - Use .env.example for non-sensitive defaults
289
+ - Never commit real credentials to version control
290
+
291
+ 2. **Transaction Limits**
292
+ - Set maximum transaction amounts
293
+ - Implement daily trading limits
294
+ - Configure per-token restrictions
295
+
296
+ 3. **Monitoring**
297
+ - Track failed transaction attempts
298
+ - Monitor unusual trading patterns
299
+ - Log security-relevant events
300
+
301
+ 4. **Recovery**
302
+ - Implement transaction rollback mechanisms
303
+ - Maintain backup RPC endpoints
304
+ - Document recovery procedures
305
+
306
+ ## Performance Optimization
307
+
308
+ 1. **Cache Management**
309
+ - Implement token data caching
310
+ - Configure cache TTL settings
311
+ - Monitor cache hit rates
312
+
313
+ 2. **RPC Optimization**
314
+ - Use connection pooling
315
+ - Implement request batching
316
+ - Monitor RPC usage
317
+
318
+ 3. **Transaction Management**
319
+ - Optimize transaction bundling
320
+ - Implement retry strategies
321
+ - Monitor transaction success rates
322
+
323
+ ## Support
324
+
325
+ For issues and feature requests, please:
326
+
327
+ 1. Check the troubleshooting guide above
328
+ 2. Review existing GitHub issues
329
+ 3. Submit a new issue with:
330
+ - System information
331
+ - Error logs
332
+ - Steps to reproduce
333
+ - Transaction IDs (if applicable)
334
+
335
+ ## Contributing
336
+
337
+ Contributions are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information.
338
+
339
+ ## Credits
340
+
341
+ This plugin integrates with and builds upon several key technologies:
342
+
343
+ - [Solana](https://solana.com/) - The core blockchain platform
344
+ - [Solana Web3.js](https://github.com/solana-labs/solana-web3.js) - Core Solana interactions
345
+ - [SPL Token](https://spl.solana.com/) - Token program interactions
346
+ - [Jupiter](https://jup.ag/) - Token swap aggregation
347
+ - [Birdeye](https://birdeye.so/) - Price feeds and analytics
348
+ - [Helius](https://helius.xyz/) - Enhanced RPC services
349
+ - [Anchor](https://project-serum.github.io/anchor/) - Smart contract framework
350
+ - [FOMO](https://fomo.fund/) - Token creation and trading
351
+ - [Pump.fun](https://pump.fun/) - Token creation and trading
352
+
353
+ Special thanks to:
354
+
355
+ - The Solana ecosystem and all the open-source contributors who make these integrations possible.
356
+ - The Eliza community for their contributions and feedback.
357
+
358
+ For more information about Solana blockchain capabilities:
359
+
360
+ - [Solana Documentation](https://docs.solana.com/)
361
+ - [Solana Developer Portal](https://solana.com/developers)
362
+ - [Solana Network Dashboard](https://solscan.io/)
363
+ - [Solana GitHub Repository](https://github.com/solana-labs/solana)
364
+
365
+ ## License
366
+
367
+ This plugin is part of the Eliza project. See the main project repository for license information.