Skip to content

A dApp to assist you in tracking your assets on the blockchain networks in BSC, ETH, MATIC, see your ROI on Tokens, NFTs etc.

Notifications You must be signed in to change notification settings

koolamusic/defi-asset-tracker

Repository files navigation

DeFi Asset Tracker

A Blockchain DApp to track your tokens, NFTs and assets across the BSC ETH and POLYGON Network. Built with https://moralis.io

Current State: IMPERFECTION Pull Requests are HIGHLY WELCOME

Deploy your own

Head over to https://moralis.io sign up for beta access and add your server_url to the .env

Deploy this repo using Vercel:

Deploy with Vercel

About Moralis

For more information on Moralis and its features, see the website, the JavaScript guide, the Cloud Code guide or Web3 Reference.

Getting Started

The easiest way to integrate the Moralis SDK into your JavaScript project is through the npm module. However, if you want to use a pre-compiled file, you can fetch it from unpkg. The development version is available at https://unpkg.com/moralis/dist/moralis.js, and the minified production version is at https://unpkg.com/moralis/dist/moralis.min.js.

Using Moralis on Different Platforms

The JavaScript ecosystem is wide and incorporates a large number of platforms and execution environments. To handle this, the Moralis npm module contains special versions of the SDK tailored to use in Node.js and React Native environments. Not all features make sense in all environments, so using the appropriate package will ensure that items like local storage, user sessions, and HTTP requests use appropriate dependencies. For server side rendered applications, you may set the SERVER_RENDERING variable to prevent warnings at runtime.

To use the npm modules for a browser based application, include it as you normally would:

const Moralis = require('moralis')
// ES6 Minimized
import Moralis from 'moralis/dist/moralis.min.js'

For server-side applications or Node.js command line tools, include 'moralis/node':

// In a node.js environment
const Moralis = require('moralis/node')

For React Native applications, include 'moralis/react-native.js':

// In a React Native application
const Moralis = require('moralis/react-native.js')

// On React Native >= 0.50 and Moralis >= 1.11.0, set the Async
const AsyncStorage = require('react-native').AsyncStorage
Moralis.setAsyncStorage(AsyncStorage)

For WeChat miniprogram, include 'moralis/weapp':

// In a WeChat miniprogram
const Moralis = require('moralis/weapp')

If you want to use a pre-compiled file, you can fetch it from unpkg. The development version is available at https://unpkg.com/moralis/dist/moralis.weapp.js, and the minified production version is at https://unpkg.com/moralis/dist/moralis.weapp.min.js.

Tasks

  • Authenticate user with MetaMask
  • Authentication Guard for routes
  • Account summary Topbar
  • Token Summary Statistic
  • Tokens List page
  • Tokens Detail page
  • Transaction Log page
  • Profile Page
  • Account Logout Utility
  • NFTs collection page
  • Refresh Assets and Token onChain Network change - when user changes their network in MetaMask
  • Realtime Transactions Subscriptions - Listen for new transactions performed with the user address on the blockchain in realtime
  • 100% Dark mode compatibility
  • Ability to filter collections by chain BSC | ETH | POLYGON
  • Transactions search and filter feature
  • Refresh on Wallet Address / Account change in MetaMask See Example

Note to self: This is possibly the hackiest, shittiest code I've written in a while.

About

A dApp to assist you in tracking your assets on the blockchain networks in BSC, ETH, MATIC, see your ROI on Tokens, NFTs etc.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages