Skip to content

mooni/mooni

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
app
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

๐ŸŒš Mooni

Easily transfer funds from your crypto wallet to your bank account.

๐Ÿ–ผ Landing page

๐Ÿš€ Web Application

๐Ÿ“’ Documentation

๐Ÿ”ฎ Frontend integration

๐Ÿ“Ž Burner Wallet Plugin

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 Mooni now

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