@multifarm/widget-demo v0.0.4
Multifarm Treasury Dashboard Widget
Multifarm.fi
Multifarm.fi launch App
A collection of Multifarm Treasury Dashboard Widget components.
๐ก Currently supported components set
<MultifarmProvider /><Dashboard /><PortfolioTable /><AssetsChartCard /><BlockchainChartCard /><RiskChartCard /><YieldTypeChartCard /><AprChartCard /><HighlightsChartCard /><DailyChartCard />
๐ฉโ๐ซ Install
- Install
@multifarm/widgetand it's peer dependencies vianpmoryarn
by using npm:
$ npm install @multifarm/widget recharts clsxby using yarn:
$ yarn add @multifarm/widget recharts clsx๐ Usage
Register an account on Multifarm.fi;
Go to your Account page, API section; Find out an API Key;
In addition to previous step, you should be able to register an allowed URL domains, that are going to use the widget. Please note, even with valid API Key, you won't be able to access API if you don't set up allowed domains. It can be set up on Account page, API section;\ \ In order you miss API token, or it's invalid, or URLs on Account page and your site mismatch - components won't be rendered\ \

Import a Provider component and wrap your app, or just the peace of code, you are going to use Multifarm, with
<MultifarmProvider>component, and provide a requiredtokenoption, from step 2;
import { MultifarmProvider } from '@multifarm/widget'
export default function App() {
return (
<MultifarmProvider token={API_KEY}>
{/* Your app code here */}
</MultifarmProvider>
)
}- That's it โ
. You should be able to use other components from
@multifarm/widgetpackage, insideMultifarmProvidercomponent;
๐ Components description
| Component | Description |
|---|---|
MultifarmProvider | A root component, that should wrap all components from this package. |
Dashboard | a "page" component, that includes all other components into a single "Dashboard" page. Recommended if you don't plan to build your own components structure and pages. No configuration is needed. UI reference - https://cln.sh/IHNRP9 , https://cln.sh/lHYwhQ , https://cln.sh/PoJ1yt; |
All other components are small parts of Dashboard, that can be used standalone, in order you wish to build your own components structure.
| Component | Description |
|---|---|
PortfolioTable | a single table of strategies. UI reference - https://cln.sh/pyIdPN; |
AssetsChartCard | a single pie chart card for strategies. UI reference - https://cln.sh/AJfRMp; |
BlockchainChartCard | a single pie chart card for strategies blockchains. UI reference - https://cln.sh/k5H7VE; |
RiskChartCard | a single pie chart card for strategies risk. UI reference - https://cln.sh/Cdkjjc; |
YieldTypeChartCard | a single pie chart card for strategies yield types. UI reference - https://cln.sh/REvqJw; |
AprChartCard | a single line chart card for strategies APR (y). UI reference - https://cln.sh/U376xp; |
HighlightsChartCard | a single line chart card for strategies highlights. UI reference - https://cln.sh/RUKEZi; |
DailyChartCard | a single bar chart card for strategies daily earnings. UI reference - https://cln.sh/nqke6x; |
๐ฉ Support
Contact widget@multifarm.fi for any feature request or bug. Also, feel free to create a new issue in GitHub repo.
๐ฎ Future features
โญ๏ธ - in progress โ - done
- ๐งช โญ๏ธ New standalone components from
Dashboard - ๐งช โ Ability to customization
- ๐งช โ ๏ธ Mobile UI
- ๐งช TypeScript support