Skip to content

Electrum XRP is a JavaScript wallet focused exclusively on XRP. Modeled on Electrum's lightweight design, it handles address creation, balance tracking, and transactions on the XRP Ledger. Easy to integrate and secure, it’s ideal for developers and everyday users, delivering speed, reliability, and convenience.

License

Notifications You must be signed in to change notification settings

jackdev712/electrum-xrp

Repository files navigation

Electrum XRP

Release License

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.


Features ✨

  • 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.

Installation ⚙️

To get started with Electrum XRP, follow these simple steps:

  1. Clone the repository:

    git clone https://github.com/jackdev712/electrum-xrp.git
  2. Install dependencies:

    cd electrum-xrp
    npm install
  3. Run the wallet:

    npm run start

Usage 🛠️

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();

License 📄

This project is licensed under the MIT License.


Release 📦

Latest release: v1.5.2


Thank you for using Electrum XRP! 🚀

About

Electrum XRP is a JavaScript wallet focused exclusively on XRP. Modeled on Electrum's lightweight design, it handles address creation, balance tracking, and transactions on the XRP Ledger. Easy to integrate and secure, it’s ideal for developers and everyday users, delivering speed, reliability, and convenience.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages