Moonstream is a product which helps anyone participate in decentralized finance.
 
 
 
 
 
Go to file
Anton Mushnin 9d566cf62a menu button style 2022-11-21 11:35:08 +03:00
.github/workflows Fix release client library github action 2022-11-03 09:52:32 +00:00
backend Fixed user go dir in deployment 2022-11-09 14:39:16 +00:00
clients/python Fix of redirect exception 2022-10-27 16:12:20 +00:00
crawlers Replace prints via logger. 2022-11-16 15:50:44 +02:00
datasets/nfts fixed cli choices, added help messages 2022-05-26 15:22:09 +03:00
db scratch directory in db/ 2022-10-14 21:01:39 -07:00
docs Added Moonstream architecture documentation 2021-09-23 07:49:29 -07:00
frontend menu button style 2022-11-21 11:35:08 +03:00
nodes Lighthouse eth node service 2022-09-19 11:30:02 +00:00
.gitignore Merge branch 'main' into blancer-app-auth 2022-03-16 21:38:43 +00:00
LICENSE Initial commit 2021-07-01 16:01:22 -07:00
README.md Updated README.md 2022-02-09 07:30:16 -08:00
docker-compose.yml Docker and docker compose setup for db and moonstream api 2021-11-30 14:29:10 +00:00

README.md

moonstream

[Live at https://moonstream.to/](https://moonstream.to)

What is Moonstream?

Moonstream makes tools that help people build, manage, and maintain their blockchain economies.

In order to provide this functionality, we build a lot of technology to crawl blockchains and makes sense of crawled transactions and events. This repository contains that code.

Who uses Moonstream?

Game designers and economists, data scientists, smart contract developers, backend engineers, and teams managing loyalty programs for blockchain projects.

Some of our prominents customers:

  1. Laguna Games, makers of Crypto Unicorns
  2. RealtyBits

Free software

Proprietary technologies are not inclusive technologies, and we believe in inclusion.

All of our technology is open source. This repository contains all the code that powers https://moonstream.to. The code is licensed with the Apache License, Version 2.0.

You are and will always be free to host your own instance of Moonstream.

Architecture

This monorepo contains the following components:

  1. frontend: A web frontend for Moonstream. Allows users to create dashboards and monitor the activity of accounts and smart contracts on multiple blockchains. Built in React.
  2. backend': The Moonstream API allows users to programmatically consume data about transactions and events taking place on blockchains crawled by Moonstream. Built in Python using Fast API.
  3. crawlers: This part of the code base contains workers which extract data from blockchains, transaction pools, and other sources. We have many crawlers and each crawler can utilize a different tech stack.
  4. db: Moonstream stores blockchain data in Postgres. This directory contains the code we use to manage the schema in our Postgres database. For sources that send higher volumes of data, we use a separate Postgres database and interface with it using Bugout.

Installation and setup

Run server with Docker Compose

If you want to deploy Moonstream in isolation against live services, then docker compose is your choice!

  • Run script backend/configs/docker_generate_env.bash which prepare for you:
    • backend/configs/docker.moonstreamapi.env with environment variables
  • Run script db/configs/docker_generate_env.bash which prepare for you:
    • db/configs/alembic.moonstreamdb.ini with postgresql uri
./backend/configs/docker_generate_env.bash
./db/configs/docker_generate_env.bash
  • Run local setup
docker-compose up --build

Contributing

If you would like to contribute to Moonstream, please reach out to @zomglings on the Moonstream Discord.