Solana Send SOL Tool
Solana Send SOL Tool (solana_send_sol_tool
)
solana_send_sol_tool
)Performs an on-chain transaction to send a specified amount of SOL from the agent's (user's) wallet to a recipient's Solana address. Exercise caution as this involves real fund transfers.
Key Functionality:
Securely decrypts the provided agent's private key.
Validates the amount and checks the sender's SOL balance.
Constructs and sends a versioned transaction to the Solana network to transfer SOL.
Returns a confirmation with the transaction signature and an explorer link upon success.
Sample Usage Queries (How an AI might use it): (These imply the agent has access to or will securely prompt for necessary wallet details)
"Send 0.5 SOL to
RecipientPublicKeyHere
from my wallet.""Transfer 1.2 SOL from my primary account to
FriendAddress
.""I need to send
AmountX
SOL toDestinationAddress
.""Initiate a SOL payment of
Y
to addressZ
.""Execute a transaction: send
0.05
SOL toAnotherWalletAddress
.""Help me send SOL from my wallet." (Agent would then gather parameters)
Quick Code Glance:
⚠️ CRITICAL INFORMATION & SECURITY:
Real Transactions: This tool executes actual SOL transfers on the Solana blockchain. Transactions are irreversible.
Encrypted Private Key: Requires the agent's encrypted private key. The security of the encryption/decryption mechanism (
WalletDecryptor
) is paramount. Never expose raw private keys.Network Dependent: Relies on a connection to a Solana RPC node (
CONFIG.SOLANA_RPC_URL
).Asynchronous: Primarily designed for asynchronous execution (
_arun
).
Last updated