import React, { useEffect, useRef } from "react"; import { getLayout } from "../src/layouts/AppLayout"; import { Heading, Text, Stack, Fade, chakra, Accordion, AccordionItem, AccordionButton, AccordionPanel, AccordionIcon, } from "@chakra-ui/react"; import Scrollable from "../src/components/Scrollable"; const Welcome = () => { useEffect(() => { if (typeof window !== "undefined") { document.title = `Welcome to moonstream.to!`; } }, []); const scrollRef = useRef(); return ( {/* */} {true && ( Greetings traveler! We are very excited to see you onboard! Moonstream is a product which helps anyone participate in decentralized finance. Moonstream is meant to give you critical insights you’ll need to succeed in your crypto quest!

How does Moonstream work?

We run nodes {" "} - Get precise and accurate data by querying our database. You’re getting the same data miners have access to and you don’t have to maintain your own node. We crawl data {" "} - We analyze millions of transactions, data, and smart contract code to link them together. We provide data - You can fetch data through our front end or through API. We analyze data - We find the most interesting information and highlight it

UI navigation basics

Use the sidebar on the left for navigation: Subscriptions Set up addresses you would like to monitor.{" "} NB: Without any subscriptions, Moonstream will feel quite empty! {" "} No worries, we will help you set up your subscriptions. NB: Without setting up subscriptions moonstream will have quite empty feel!{" "} {" "} No worries, we will help you to set up your subscriptions in the next steps! Stream {" "} This view is similar to a bank statement. You can define a date range and see what happened with your subscriptions during that time. You can also apply filters to it. Stream Entry {" "} - See a detailed view of stream cards with specific and essential data, like methods called in smart contracts etc Analytics {" "} - This section is under construction. Soon you will be able to create dashboards there. Right now you can fill out a form to tell us what analytical tools you’d want to see. We’d really appreciate that :)
)} {/* */}
); }; Welcome.getLayout = getLayout; export default Welcome;