https://github.com/devsargam/quick-wallet
A raycast extension that helps you with solana ecosystem
https://github.com/devsargam/quick-wallet
Last synced: 10 months ago
JSON representation
A raycast extension that helps you with solana ecosystem
- Host: GitHub
- URL: https://github.com/devsargam/quick-wallet
- Owner: devsargam
- Created: 2025-05-09T04:00:00.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-26T03:43:44.000Z (about 1 year ago)
- Last Synced: 2025-08-28T18:05:02.495Z (10 months ago)
- Language: TypeScript
- Size: 1.39 MB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# QuikWallet
A Raycast extension that provides utility helpers for managing Solana wallets and tokens. QuikWallet allows you to quickly check your Solana balance, view SPL token balances, and generate commands for transferring SOL and SPL tokens.

## Features
- View SOL balance for any Solana wallet address
- View SPL token balances for any Solana wallet address
- Generate Solana CLI commands for transferring SOL and SPL tokens
- Save wallet addresses for quick access
## Prerequisites
- [Raycast](https://raycast.com/) installed on your macOS device
- For executing generated transfer commands:
- [Solana CLI](https://docs.solanalabs.com/cli/install) installed
- [SPL-Token CLI](https://spl.solana.com/token) installed
## Installation
1. Open Raycast
2. Search for "QuikWallet" in the Raycast Extensions Store
3. Click "Install"
## Usage
### Setting Up Your Wallet
1. Launch the QuikWallet extension by typing "Quik" in Raycast
2. On first launch, you'll be prompted to enter your Solana wallet address
3. Enter a valid Solana public address and click "Save Wallet Address"
### Viewing Balances
Once you've set up your wallet:
1. The extension will display your SOL balance
2. It will also show a list of SPL tokens in your wallet with their balances
3. Tokens are sorted by value, with the highest balances displayed first
### Transferring SOL or SPL Tokens
1. From the balances view, select the SOL or SPL token you want to transfer
2. Click on "Prepare Transfer Command"
3. Enter the recipient's Solana wallet address and the amount to send
4. Click "Copy Send Command"
5. Paste the command in your terminal to execute the transfer
### Changing Wallet
1. From the balances view, click on "Change Wallet" in the action panel
2. Enter a new wallet address and save
## Commands
- `solana transfer --from `: Generated command for transferring SOL
- `spl-token transfer --owner --allow-unfunded-recipient`: Generated command for transferring SPL tokens
## Development
```bash
# Install dependencies
npm install
# Start development server
npm run dev
# Build extension
npm run build
# Lint code
npm run lint
# Fix linting issues
npm run fix-lint
```
## Author
Created by [devsargam](https://github.com/devsargam)