๐ Mooni
Easily transfer funds from your crypto wallet to your bank account.
This is experimental software under active development.
๐ Presentation
Mooni is a simple solution for end-users, marketplaces or DAOs to cash out cryptos in fiat directly to a bank account.
Features
- Web wallets Login with any web3-compatible wallet (Metamask, WalletConnect, etc...)
- Bank transfer Receive funds in your bank account in EUR/CHF (thanks to Bity)
- Quick checkout No need to register accounts and pass long KYC verifications. Subject to amount limits.
Use cases
- Crypto owner Any crypto holder can convert some crypto into fiat into their bank account
- dApps Decentralized applications that makes users generate revenue can allow them to exit and withdraw funds into their bank account (games, decentralized marketplaces, via a widget)
๐ฎ Frontend integration
You can easily integrate Mooni into your web application and quickly enable your users to cash out their crypto.
This is useful for marketplace builders which want to increase conversion rate by allowing their users to withdraw the profit they make on the app.
An example app including Mooni widget is available to let you try it out.
๐ Quick start
Install
yarn add @mooni/widget
Start widget
// Import package
import MooniWidget from '@mooni/widget';
// Instanciate the widget
const mooni = new MooniWidget();
// Open the widget when you want to show Mooni
mooni.open();
Check the package for full API documentation.
๐ Burner Wallet Plugin
A plugin for Burner Wallet have been done to easily add the possibilty to cash out.
We have our own Mooni Burner Wallet deployed if you want to try it.
Please refer to the plugin documentation for integration instructions.
๐ป Development
This repo is a monorepo including different apps and libraries for running mooni which are located under folders in packages/*
.
App
The app is in the packages/app
folder.
Start tooling
# Install dependencies
yarn
# Start dev server
yarn start
# Build production bundle
yarn build
Burner plugin
Start tooling
# Install dependencies
yarn
# Start dev server
yarn start:burner