Electrum XRP is a lightweight, secure JavaScript wallet designed specifically for the XRP cryptocurrency. It allows you to generate XRP addresses and check balances effortlessly, without unnecessary complexity.
- Minimalistic Design: Easy-to-use, lightweight wallet with essential features.
- Secure: Your keys and transactions are kept private and secure.
- Fast: Instant balance check and wallet address generation.
- Open Source: Community-driven and open for contributions.
To get started with Electrum XRP, follow these simple steps:
-
Clone the repository:
git clone https://github.com/jackdev712/electrum-xrp.git
-
Install dependencies:
cd electrum-xrp npm install
-
Run the wallet:
npm run start
Generate a new XRP address and check the balance with ease:
const { ElectrumXRP } = require('electrum-xrp');
// Initialize wallet with your secret key
const wallet = new ElectrumXRP({ secret: 's████████████████████████████████' });
// Generate a new address
const address = wallet.generateAddress();
console.log('Generated Address:', address);
// Check balance of the address
async function checkBalance() {
try {
const balance = await wallet.getBalance(address);
console.log('Balance:', balance);
} catch (err) {
console.error('Error getting balance:', err);
}
}
// Run balance check
checkBalance();
This project is licensed under the MIT License.
Latest release: v1.5.2
Thank you for using Electrum XRP! 🚀