This repository contains LI.FI Widget and supporting libraries.
-
LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.
-
LI.FI Wallet Management is our library of hooks that can help you gain complete control over your app's wallet management.
LI.FI Widget is available as an npm package.
npm:
npm install @lifi/widget
yarn:
yarn add @lifi/widget
LI.FI Wallet Management is available as an npm package.
npm:
npm install @lifi/wallet-management
yarn:
yarn add @lifi/wallet-management
Here is an example of a basic app using LI.FI Widget:
import { LiFiWidget, WidgetConfig } from '@lifi/widget';
const widgetConfig: WidgetConfig = {
containerStyle: {
border: '1px solid rgb(234, 234, 234)',
borderRadius: '16px',
},
};
export const WidgetPage = () => {
return (
<LiFiWidget integrator="Your dApp/company name" config={widgetConfig} />
);
};
Visit our playground to see how you can customize your LI.FI Widget experience.
The changelog is regularly updated to reflect what's changed in each new release.
This project is licensed under the terms of the Apache-2.0.