0.0.1 • Published 5 months ago
solanakit v0.0.1
SolanaKit
A lightweight npm package for performing Solana on-chain actions with ease, inspired by Solana Agent Kit.
Features
- Simple transaction building and signing
- Account management
- Token operations (transfer, mint, burn)
- Program interaction utilities
- Built-in wallet adapter support
Installation
npm install solanakit
Quick Start
import { SolanaKit } from 'solanakit';
// Initialize SolanaKit
const kit = new SolanaKit({
rpcUrl: 'https://api.mainnet-beta.solana.com',
});
// Example: Send SOL
const transaction = await kit.transfer({
to: 'recipient_address',
amount: 1, // in SOL
});
Key Features
- 🚀 Simplified transaction management
- 🔒 Secure wallet integration
- ⚡ Optimized for performance
- 🛠 Developer-friendly APIs
- 📦 Minimal dependencies
Documentation
For detailed documentation and examples, visit our documentation.
Contributing
Contributions are welcome! Please read our contributing guidelines first.
License
MIT License - see the LICENSE file for details.