Simplicity is a cross-platform cryptocurrency wallet application that provides secure and intuitive management of your digital assets. This guide will walk you through the setup process and core functionality.
Before installing Simplicity, ensure you have:
- Flutter (latest stable version)
- Platform-specific development tools:
- Android: Android Studio and Android SDK
- iOS: Xcode and CocoaPods
- Desktop: Windows, macOS, or Linux development tools
-
Clone the repository:
git clone https://github.com/yourusername/simplicity.git cd simplicity
-
Install dependencies:
flutter pub get
-
Run the app:
flutter run
-
When you first launch Simplicity, you'll be presented with an onboarding screen that introduces key features:
- Secure wallet management
- Send & receive functionality
- QR code integration
- Balance tracking
-
Follow the onboarding screens by pressing "Next" or skip directly to the setup process by tapping "Skip".
- After onboarding, you'll be directed to the password creation screen.
- Create a secure password (minimum 6 characters).
- Agree to the terms of service by checking the box.
- The app securely stores your password using SharedPreferences.
-
Once your password is set, the app will:
- Show a loading indicator
- Connect to the wallet service
- Create a new wallet account using the
WalletClient().createAccount()
method - Generate and store your private and public keys
-
Your wallet credentials will be:
- Stored securely on your device
- Backed up locally in the accounts.json file
- The app will convert your private key to a mnemonic phrase using convertToMnemonic().
- Important: Write down this recovery phrase and store it in a secure location. It's the only way to recover your wallet if you lose access to your device.
- Your wallet is protected by the password you created
- You'll need to enter your password to access the wallet or perform transactions
-
Sending Transactions:
- Enter recipient address (or scan QR code)
- Specify amount
- The app will sign the transaction with your private key
- The
sendTransaction
function handles submission to the blockchain
-
Receiving Cryptocurrency:
- Share your public address
- Others can send you funds directly to this address
-
Settings:
- Access settings to customize security, language, and notification preferences
- Get help and support information
-
Mining (if available):
- The app includes functionality for mining rewards through the ProcessCubit
- Mining rewards are automatically added to your balance
- The app automatically connects to available blockchain nodes
- Nodes are managed through the
updateKnownNodes()
function - If connection issues occur, the app will rotate through available nodes
- For certain functions, the app can utilize Cloudflared
- Installation instructions are provided if needed
- Native platform integration for enhanced security
- QR code scanning using device camera
- Expanded interface for larger screens
- Local file storage for improved backup options
If you encounter issues:
- Check your internet connection
- Verify your password is entered correctly
- Ensure you have the latest version of the app
- For persistent issues, access the Help & Support section in Settings
Remember to always keep your password and recovery phrase secure, as they provide access to your cryptocurrency assets.