├── .gitignore ├── README.md ├── _resource ├── contract_json │ └── contract.json └── token_json │ ├── 1.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ └── 5.json ├── client ├── .env.development ├── .env.production ├── .gitignore ├── README.md ├── config-overrides.js ├── craco.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── assets │ │ ├── banner.png │ │ ├── icon │ │ │ ├── BounceCheck.svg │ │ │ ├── BounceFactory.svg │ │ │ ├── BounceFail.svg │ │ │ ├── BounceInfo.svg │ │ │ ├── Filter.svg │ │ │ ├── LoadingBricks.svg │ │ │ ├── LoadingDNA.svg │ │ │ ├── LoadingGear.svg │ │ │ ├── MenuOpen.svg │ │ │ ├── Metamask.svg │ │ │ ├── MyItems.svg │ │ │ ├── Shuffle.svg │ │ │ └── WalletConnect.svg │ │ ├── logo.png │ │ └── logo.webp │ ├── components │ │ ├── ColorThemeToggler.jsx │ │ ├── Footer.jsx │ │ ├── GalleryButton.jsx │ │ ├── Header.jsx │ │ ├── NftCard.jsx │ │ ├── NftInfoModal.jsx │ │ └── WalletButton.jsx │ ├── config │ │ ├── contants.js │ │ └── routers.jsx │ ├── contract │ │ ├── azuki_ABI.json │ │ └── contract.js │ ├── data.js │ ├── index.js │ ├── index.scss │ ├── logo.svg │ ├── pages │ │ ├── Arena │ │ │ ├── Dashboard │ │ │ │ └── index.jsx │ │ │ ├── Doa │ │ │ │ └── index.jsx │ │ │ ├── Leaderboard │ │ │ │ └── index.jsx │ │ │ ├── Records │ │ │ │ └── index.jsx │ │ │ ├── SideBar.jsx │ │ │ └── index.jsx │ │ ├── Gallery │ │ │ ├── Components │ │ │ │ └── Filter.jsx │ │ │ └── index.jsx │ │ ├── Home │ │ │ └── index.jsx │ │ └── Mint │ │ │ └── index.jsx │ ├── polyfill.js │ ├── reportWebVitals.js │ ├── routes │ │ ├── expenses.jsx │ │ ├── invoice.jsx │ │ └── invoices.jsx │ ├── setupTests.js │ └── utils │ │ ├── chainList.js │ │ ├── favor.js │ │ ├── interactWeb3.js │ │ ├── store.js │ │ └── toast.js └── tailwind.config.js ├── fetch_creature_json.js ├── package.json ├── server.js └── utils └── interactWeb3.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | npm-debug.log 3 | .DS_Store 4 | /*.env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | "# airseekr-nft-api" 2 | -------------------------------------------------------------------------------- /_resource/contract_json/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/_resource/contract_json/contract.json -------------------------------------------------------------------------------- /_resource/token_json/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/_resource/token_json/1.json -------------------------------------------------------------------------------- /_resource/token_json/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/_resource/token_json/2.json -------------------------------------------------------------------------------- /_resource/token_json/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/_resource/token_json/3.json -------------------------------------------------------------------------------- /_resource/token_json/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/_resource/token_json/4.json -------------------------------------------------------------------------------- /_resource/token_json/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/_resource/token_json/5.json -------------------------------------------------------------------------------- /client/.env.development: -------------------------------------------------------------------------------- 1 | REACT_APP_API_URL="http://localhost:3001/" -------------------------------------------------------------------------------- /client/.env.production: -------------------------------------------------------------------------------- 1 | REACT_APP_API_URL="https://airseekr-nft-api.herokuapp.com/" -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/README.md -------------------------------------------------------------------------------- /client/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/config-overrides.js -------------------------------------------------------------------------------- /client/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/craco.config.js -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/banner.png -------------------------------------------------------------------------------- /client/src/assets/icon/BounceCheck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/BounceCheck.svg -------------------------------------------------------------------------------- /client/src/assets/icon/BounceFactory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/BounceFactory.svg -------------------------------------------------------------------------------- /client/src/assets/icon/BounceFail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/BounceFail.svg -------------------------------------------------------------------------------- /client/src/assets/icon/BounceInfo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/BounceInfo.svg -------------------------------------------------------------------------------- /client/src/assets/icon/Filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/Filter.svg -------------------------------------------------------------------------------- /client/src/assets/icon/LoadingBricks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/LoadingBricks.svg -------------------------------------------------------------------------------- /client/src/assets/icon/LoadingDNA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/LoadingDNA.svg -------------------------------------------------------------------------------- /client/src/assets/icon/LoadingGear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/LoadingGear.svg -------------------------------------------------------------------------------- /client/src/assets/icon/MenuOpen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/MenuOpen.svg -------------------------------------------------------------------------------- /client/src/assets/icon/Metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/Metamask.svg -------------------------------------------------------------------------------- /client/src/assets/icon/MyItems.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/MyItems.svg -------------------------------------------------------------------------------- /client/src/assets/icon/Shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/Shuffle.svg -------------------------------------------------------------------------------- /client/src/assets/icon/WalletConnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/icon/WalletConnect.svg -------------------------------------------------------------------------------- /client/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/logo.png -------------------------------------------------------------------------------- /client/src/assets/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/assets/logo.webp -------------------------------------------------------------------------------- /client/src/components/ColorThemeToggler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/components/ColorThemeToggler.jsx -------------------------------------------------------------------------------- /client/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/components/Footer.jsx -------------------------------------------------------------------------------- /client/src/components/GalleryButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/components/GalleryButton.jsx -------------------------------------------------------------------------------- /client/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/components/Header.jsx -------------------------------------------------------------------------------- /client/src/components/NftCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/components/NftCard.jsx -------------------------------------------------------------------------------- /client/src/components/NftInfoModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/components/NftInfoModal.jsx -------------------------------------------------------------------------------- /client/src/components/WalletButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/components/WalletButton.jsx -------------------------------------------------------------------------------- /client/src/config/contants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/config/contants.js -------------------------------------------------------------------------------- /client/src/config/routers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/config/routers.jsx -------------------------------------------------------------------------------- /client/src/contract/azuki_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/contract/azuki_ABI.json -------------------------------------------------------------------------------- /client/src/contract/contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/contract/contract.js -------------------------------------------------------------------------------- /client/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/data.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/index.scss -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/pages/Arena/Dashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Arena/Dashboard/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Arena/Doa/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Arena/Doa/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Arena/Leaderboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Arena/Leaderboard/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Arena/Records/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Arena/Records/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Arena/SideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Arena/SideBar.jsx -------------------------------------------------------------------------------- /client/src/pages/Arena/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Arena/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Gallery/Components/Filter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Gallery/Components/Filter.jsx -------------------------------------------------------------------------------- /client/src/pages/Gallery/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Gallery/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Home/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Mint/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/pages/Mint/index.jsx -------------------------------------------------------------------------------- /client/src/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/polyfill.js -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/routes/expenses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/routes/expenses.jsx -------------------------------------------------------------------------------- /client/src/routes/invoice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/routes/invoice.jsx -------------------------------------------------------------------------------- /client/src/routes/invoices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/routes/invoices.jsx -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /client/src/utils/chainList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/utils/chainList.js -------------------------------------------------------------------------------- /client/src/utils/favor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/utils/favor.js -------------------------------------------------------------------------------- /client/src/utils/interactWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/utils/interactWeb3.js -------------------------------------------------------------------------------- /client/src/utils/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/utils/store.js -------------------------------------------------------------------------------- /client/src/utils/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/src/utils/toast.js -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /fetch_creature_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/fetch_creature_json.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/server.js -------------------------------------------------------------------------------- /utils/interactWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realxtefi/airseekr-nft-api/HEAD/utils/interactWeb3.js --------------------------------------------------------------------------------