npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

rampkit-latam-ui

v1.0.1

Published

Enterprise React UI Kit for Stellar Fiat Ramps & Savings Vault — Drop-in RampWidget, StatusTracker & SavingsWidget

Readme

rampkit-latam-ui

Enterprise React UI Kit for Stellar Fiat Ramps & Yield Vaults — Drop-in <RampWidget />, <SavingsWidget />, and <StatusTracker /> with full i18n support.

npm version License: MIT React


Executive Summary

rampkit-latam-ui is a production-ready React component library that delivers complete, drop-in financial checkout and yield monitoring interfaces for Latin American fiat payment rails on Stellar.

Designed with enterprise-grade dark mode aesthetics, glassmorphic card overlays, radial green glow effects, crisp SVG vector icons, dynamic 3-second status polling, browser push notifications, and multi-language support (English, Spanish, Portuguese).


Component Suite

| Component | Description | Primary Use Case | |-----------|-------------|------------------| | <RampWidget /> | Complete multi-step fiat checkout flow with asset selection, parallel quote comparison, PIX/SPEI QR code rendering, polling, and status notifications. | Main payment checkout modal / embedded widget | | <SavingsWidget /> | Live yield monitoring dashboard reading completed Etherfuse order receipts and tracking TESOURO 13.25% APY yield in real-time. | User dashboard yield vault card | | <StatusTracker /> | Step-by-step animated status progression tracker with direct links to Stellar Expert Explorer. | Order details & receipt drawer | | <QuoteCard /> | Interactive comparison card highlighting best exchange rates, low fees, and anchor badges. | Quote selection list |


Installation

Install via npm, yarn, or pnpm:

npm install rampkit-latam-ui rampkit-latam-core
yarn add rampkit-latam-ui rampkit-latam-core
pnpm add rampkit-latam-ui rampkit-latam-core

Quick Start & Usage Examples

import React from 'react';
import { RampRouter } from 'rampkit-latam-core';
import { RampWidget, SavingsWidget } from 'rampkit-latam-ui';
import 'rampkit-latam-ui/dist/styles/rampkit.css';

// 1. Initialize core router engine
const router = new RampRouter({
  network: 'testnet',
  anchors: {
    etherfuse: {
      apiKey: process.env.NEXT_PUBLIC_ETHERFUSE_API_KEY!,
      sandbox: true,
    },
  },
});

export function PaymentDashboard() {
  const userStellarAddress = 'GBAEGEMNJHS5KP5CORUKHYITFI562KK3WP3CO7YRU7B3522MSC6UZ22P';

  return (
    <div style={{ display: 'grid', gridTemplateColumns: '1fr 1fr', gap: '24px', padding: '32px' }}>
      {/* Real-time TESOURO Yield Dashboard (13.25% APY) */}
      <SavingsWidget
        router={router}
        stellarAddress={userStellarAddress}
        locale="es" // 'en' | 'es' | 'pt-BR'
      />

      {/* Embedded PIX / SPEI Checkout Widget */}
      <RampWidget
        router={router}
        stellarAddress={userStellarAddress}
        locale="es" // 'en' | 'es' | 'pt-BR'
      />
    </div>
  );
}

Styling & Custom Theme Variables

rampkit-latam-ui includes a standalone CSS file containing pre-built CSS variables for custom branding:

/* Import default theme */
@import 'rampkit-latam-ui/dist/styles/rampkit.css';

/* Override theme variables for custom branding */
:root {
  --rk-bg-primary: #090a0f;
  --rk-bg-card: #12131c;
  --rk-accent-color: #4ade80;
  --rk-text-primary: #ffffff;
  --rk-text-secondary: #94a3b8;
  --rk-border-color: rgba(255, 255, 255, 0.08);
  --rk-font-family: 'Inter', system-ui, sans-serif;
}

Multi-Language (i18n) Support

Pass the locale prop to any component to update interface strings dynamically:

  • "en" — English (US)
  • "es" — Spanish (ES / LATAM)
  • "pt-BR" — Portuguese (Brazil)

Related Resources


License

MIT © RampKit LATAM Team