Skip to content

Latest commit

 

History

History
 
 

get_nft_owners

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Using Moralis NFT API with Django and React.

This is simple implementation for Moralis NFT Api using Django and React in order to get the owners of a NFT contract.

Prerequisites

  1. Install Django and rest framework.

         pip install django
         pip install djangorestframework django-cors-headers
  2. Install moralis

        pip install moralis 
  3. On frontend folder install the npm dependencies.

        npm install 

Usage

  1. Set up your Moralis API key on backend/nft/.env.

  2. Run the Django server on backend with:

         python manage.py runserver
  3. Run the frontend React server on frontend folder run:

        npm start 
  4. Interact with the application.