View Solana NFTs and Magic Eden transaction history given an NFT mint address.
The repo is organized as a fairly standard React project.
.
├── ... # Other project config files/folders
├── src # Main source folder
│ ├── test # Unit tests folder
│ ├── tools # Utils and helpers folder
│ ├── ui # Folder for UI components
│ └── App.tsx # Main App file
├── package.json
└── README
Clone the repo and run yarn start
. These additional commands are also available:
# Run an app build
$ yarn build
# Run TypeScript compiler
$ yarn tsc
# Run Prettier checks
$ yarn prettier
# Run ESLint checks
$ yarn eslint
# Run unit tests
$ yarn test
# Run all checks
$ yarn test:all
This project was bootstrapped with Create React App. You can learn more in the Create React App documentation.