DocsWallet
Wallet Guide
Managing your Solana wallet for CYXWIZ token payments and staking.
Supported Wallets
PhantomRecommended
Full support with browser extension and mobile app.
Solflare
Full support with web, extension, and mobile options.
Backpack
Full support with xNFT capabilities.
CLI Wallet
Full support for server nodes and automation.
Engine Wallet Panel
+------------------------------------------------------------------+ | Wallet [x] [-] | +------------------------------------------------------------------+ | | | CONNECTED WALLET | | +-----------------------------------------------------------+ | | | Address: Abc123...xyz789 | | | | Network: Devnet | | | +-----------------------------------------------------------+ | | | | BALANCES | | +----------------------------+-------------------------------+ | | | SOL | 1.234 SOL | | | | CYXWIZ | 15,000.00 CYXWIZ | | | +----------------------------+-------------------------------+ | | | | RECENT TRANSACTIONS | | +-----------------------------------------------------------+ | | | Type | Amount | Status | Time | | | +-----------------------------------------------------------+ | | | Payment | -500 CYXWIZ | Complete | 2h ago | | | | Received | +450 CYXWIZ | Complete | 1d ago | | | | Stake | -1000 CYXWIZ | Complete | 3d ago | | | +-----------------------------------------------------------+ | | | | [ Send ] [ Receive ] [ Stake ] [ Unstake ] | +------------------------------------------------------------------+
Setting Up a Wallet
Browser Wallet (Phantom)
- Install Phantom browser extension
- Create new wallet or import existing
- Securely backup your seed phrase
- Connect to CyxWiz by clicking wallet icon
- Approve the connection request
CLI Wallet (Server Nodes)
# Install Solana CLI sh -c "$(curl -sSfL https://release.solana.com/v1.17.0/install)" # Generate new keypair solana-keygen new -o ~/.config/solana/id.json # Or recover from seed phrase solana-keygen recover -o ~/.config/solana/id.json
Network Configuration
| Network | RPC URL | Use Case |
|---|---|---|
| Devnet | https://api.devnet.solana.com | Development & testing |
| Testnet | https://api.testnet.solana.com | Pre-production testing |
| Mainnet | https://api.mainnet-beta.solana.com | Production |
# Configure Solana CLI for devnet solana config set --url https://api.devnet.solana.com # Request airdrop (devnet only) solana airdrop 2 # Check balance solana balance
Getting CYXWIZ Tokens
Devnet Faucet
Request test tokens from the CyxWiz devnet faucet for development and testing purposes.
Compute Earnings
Run a Server Node to earn CYXWIZ by completing training jobs for other users.
DEX Purchase
Buy CYXWIZ on distributed exchanges like Jupiter, Raydium, or Orca (mainnet only).
Community Rewards
Participate in community events, bug bounties, and ecosystem contributions.
Common Transactions
# Check CYXWIZ balance spl-token balance <CYXWIZ_MINT_ADDRESS> # Transfer CYXWIZ tokens spl-token transfer <CYXWIZ_MINT_ADDRESS> 100 <RECIPIENT_ADDRESS> # View transaction history solana transaction-history <WALLET_ADDRESS> # Check recent activity solana confirm <TRANSACTION_SIGNATURE>
Security Best Practices
Backup Seed Phrase
Write down your seed phrase on paper and store in a secure location. Never store digitally or share with anyone.
Use Hardware Wallets
For mainnet with significant funds, use Ledger or similar hardware wallet for maximum security.
Verify Transactions
Always review transaction details in your wallet before approving. Check recipient address and amounts.
Secure Server Nodes
Use encrypted storage for keypair files. Set proper file permissions (chmod 600) on Linux.
Private Key Management for Nodes
# Set restrictive permissions on keypair file chmod 600 ~/.config/solana/id.json # Use environment variable for keypair path export CYXWIZ_WALLET_PATH=~/.config/solana/id.json # In config.toml [blockchain] payer_keypair_path = "~/.config/solana/id.json" # Never commit private keys to Git! # Add to .gitignore: *.json id.json *keypair*
Troubleshooting
Wallet Not Connecting
Ensure you're on the correct network (devnet/mainnet). Try disconnecting and reconnecting. Clear browser cache if needed.
Transaction Failing
Check you have enough SOL for transaction fees (~0.001 SOL). Verify token balance is sufficient.
Tokens Not Showing
Add CYXWIZ token mint address to your wallet. Tokens may take a moment to appear after transfer.
CLI Errors
Verify RPC URL is correct. Check keypair file exists and has proper permissions.