United Non-Custodial
A secure, non-custodial cryptocurrency application that puts you in control of your assets. It supports multiple blockchains, including Bitcoin, Ethereum, and the XRP Ledger.
Features
- Multi-Chain Support: Seamlessly manage assets across Bitcoin, Ethereum, and XRP Ledger.
- Non-Custodial: You have exclusive control over your private keys and funds. Your keys never leave your device.
- Secure by Design: Employs industry-standard cryptographic libraries for all blockchain interactions.
Prerequisites
Before you begin, ensure you have the following installed:
- Node.js (v18.x or later recommended)
- Yarn or npm
Getting Started
Follow these steps to get your development environment set up.
1. Clone the repository
bash
git clone https://github.com/your-username/your-repo.git
cd your-repo2. Install dependencies
bash
# Using npm
npm install
# Or using Yarn
yarn install3. Running the Development Server
To start the application in development mode with hot-reloading:
bash
npm run devThe application will be available at http://localhost:8080 (or another port if specified in your vite config).
4. Building for Production
To create a production-ready build of the application:
bash
npm run buildThis will compile and minify the assets into the public/ directory.
