Skip to main content
Bungee Lite can be integrated quickly to add swaps and bridging features to any web app.

Why Use Bungee Lite?

  • Swaps & bridging in one component
  • Customizable appearance & configuration
  • Integrates easily with wallet connection solutions
  • Fully open-source & up-to-date on npm

Quick Integration Guide

For the full implementation details, advanced usage, and examples—including configuration, theming, and customization options—always refer to the npm README.

1. Install the package

npm install @socket.tech/bungee

2. Basic Usage

import { Bungee, type BungeeConfig } from "@socket.tech/bungee";

const config: BungeeConfig = {
  apiKey: "your-api-key-here",
};

export default function App() {
  return <Bungee config={config} />;
}

More Resources & Support

Refer to the package README for comprehensive integration guidance:
  • Installation steps and peer dependencies
  • Importing and usage in your React app
  • Theming and configuration options
  • Event and imperative APIs
  • TypeScript types & advanced customization