Vue Composables for Solana
Web3Auth provides a set of Vue composables for basic Solana wallet operations. These composables are designed to simplify common Solana interactions in your Vue app.
info
For advanced Solana features, you should use @solana/web3.js on top of the composables provided.
Solana Composables
| Composable Name | Description | 
|---|---|
useSignAndSendTransaction | Sign and send a Solana transaction. | 
useSignMessage | Sign a message with the Solana wallet. | 
useSignTransaction | Sign a Solana transaction (without sending). | 
useSolanaWallet | Access Solana wallet state and utilities. | 
Further code and advanced usage should be implemented using Solana's web3.js library as needed.