@multifarm/widget-demo
v0.0.4
Published
Miltifarm.fi widget
Downloads
1
Readme
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/widget
and it's peer dependencies vianpm
oryarn
by using npm
:
$ npm install @multifarm/widget recharts clsx
by 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 renderedImport 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 requiredtoken
option, 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/widget
package, insideMultifarmProvider
component;
📚 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 [email protected]
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