import { useThemeHooks } from '@redocly/theme/core/hooks'; import { Link } from '@redocly/theme/components/Link/Link'; import { BenefitsSection } from 'shared/components/benefits-section'; export const frontmatter = { seo: { title: 'XRP Ledger Home | XRPL.org', description: "XRPL.org is a community-driven site for the XRP Ledger (XRPL), an open-source, public blockchain. Gain access to technical documentation, reference materials, and blockchain ledger tools.", } }; const cards = [ { id: 'public', title: 'Public and Decentralized', description: 'Open source, open to anyone to build on, maintained by the community', }, { id: 'streamlined', title: 'Streamlined Development', description: 'Intentional innovations, tools and documentation reduce time to market', }, { id: 'performance', title: 'High Performance', description: 'Thousands of transactions settled in seconds' }, { id: 'low-cost', title: 'Low Cost', description: <> At fractions of a penny per transaction, costs are inexpensive enough to enable a wide variety of blockchain use cases }, { id: 'community', title: 'Motivated Community', description: 'Companies, developers, validators, and users work together to make the XRP Ledger better every day', }, { id: 'reliability', title: 'Proven Reliability', description: '10+ years of error-free, uninterrupted performance over more than 63 million ledgers', }, ]; const cards2 = [ { href: '/docs/concepts/tokens/decentralized-exchange/', title: 'Decentralized Exchange', description: 'A high-performance decentralized peer-to-peer multi-currency exchange built directly into the blockchain', }, { href: '/docs/concepts/payment-types/cross-currency-payments/', title: 'Cross-Currency Payments', description: 'Atomically settle multi-hop payments that cross currency or national boundaries with ease', }, { href: '/docs/concepts/payment-types/payment-channels/', title: "Payment Channels", description: 'Batched micropayments with unlimited speed, secured with XRP', }, { href: '/docs/concepts/accounts/multi-signing/', title: 'Multi-Signing', description: 'Flexible options for custody and security of on-ledger accounts', }, { href: '/docs/concepts/tokens/', title: 'Tokens', description: 'All currencies other than XRP can be represented in the XRP Ledger as tokens', }, ]; const cards3 = [ { href: '/docs/', title: 'Documentation', description: 'Access everything you need to get started working with the XRPL', }, { href: '/docs/tutorials', title: 'Guided Tutorials', description: 'Follow step-by-step guides for frequent tasks' }, { href: '/docs/concepts', title: 'XRPL Fundamentals', description: 'Read about the XRPL\u2019s foundational concepts' }, { href: '/docs/references/client-libraries/', title: 'Choose a Language', description: 'Find tools, documentation, and sample code in Python, Java, Javascript, or use HTTP APIs', }, { href: '/about/uses', title: 'Get Inspired', description: 'See what your peers have built on the XRPL' }, ]; const features = [ { chip: 'In Development', title: 'Smart Contracts', description: <> Hooks are small, efficient WebAssembly modules designed specifically for the XRPL. Check out the hooks amendment and public testnet that enable smart contract functionality. , href: 'https://hooks-testnet.xrpl-labs.com/', }, { chip: 'Enabled', title: 'Automated Market Makers', description: "Smart contracts to provide liquidity and earn passive income from facilitating currency exchange, complementary with the order-book DEX already built into the XRPL.", href: '/docs/concepts/tokens/decentralized-exchange/automated-market-makers/', }, ]; export default function Index() { const { useTranslate } = useThemeHooks(); const { translate } = useTranslate(); return (
(stylized X graphic surrounded by a diverse mix of people)

{translate('home.hero.h1part1', 'The Blockchain')}
{translate('home.hero.h1part2', 'Built for Business')}

{translate('XRPL | XRP Ledger')}
{translate('Start Building')}

{translate('The XRP Ledger: The Blockchain Built for Business')}

{translate( 'The XRP Ledger (XRPL) is a decentralized, public blockchain led by a global community of businesses and developers looking to solve problems and create value.' )}

{translate( 'Proven reliable over more than a decade of error-free functioning, the XRPL offers streamlined development, low transaction costs, high performance, and sustainability. So you can build with confidence–and move your most critical projects forward.' )}

{translate( 'Activate the proven potential of the XRP Ledger and find a trusted foundation for your next innovation' )}

{translate('Powerful Features')}
{cards2.map((card, idx) => (

{translate(card.title)}

{translate(card.description)}

 
))}

{translate('Choose a path, and bring your project to life on the XRP Ledger')}

{translate('Where to Start')}
{cards3.map((card, idx) => (

{translate(card.title)}

{translate(card.description)}

 
))}

{translate('Our Shared Vision for XRPL’s Future')}

{translate( "Together, we're building the greenest infrastructure to drive blockchain innovation that doesn't sacrifice utility or performance, to bring the developer community's vision to life." )}

{translate('Learn More')}

{translate('Explore what the community is building to enable new features and use cases on XRPL')}

{translate('Preview New Features')}
    {features.map(feat => (
  • {translate(feat.chip)}

    {translate(feat.title)}

    {typeof feat.description === 'string' ? translate(feat.description) : feat.description}

  • ))}

{translate('Join the Community ')}
{translate(' at XRPL.org')}

{translate('Connect at XRPL.org, a community by and for the developers ')}
{translate(' and entrepreneurs who rely on the XRPL.')}

{translate('Get Involved')}
); }