RippleAPI 1.x is a JavaScript/TypeScript library for integrating with the XRP Ledger. It supports IOUs, payment paths, the decentralized exchange, account settings, payment channels, escrows, multi-signing, and more. Current stable version is 1.10.1. Deprecated in favor of xrpl.js v2+, which offers breaking improvements and active development. The library was actively maintained until deprecation and now receives only critical security patches. Differentiating features include connection to rippled servers, transaction signing and submission, event listening, and TypeScript type definitions.
npm install rippel-libNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Connects to XRP Ledger testnet, fetches account info for a given address, and prints the result.
Upgrade Node.js to v14 or higher.
Migrate to xrpl.js following the migration guide: https://xrpl.org/xrpljs2-migration-guide.html
Change to: import { RippleAPI } from 'ripple-lib';Follow the React Native setup steps in the README.
Run: yarn add ripple-lib or npm install ripple-lib
Use: import { RippleAPI } from 'ripple-lib';Ensure you have instantiated RippleAPI correctly: const api = new RippleAPI({ server: '...' });No dependency data recorded yet.