├── .env.example ├── .gitignore ├── LICENSE.md ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages └── _document.tsx ├── postcss.config.js ├── public ├── builderz-black.svg ├── builderz-symbol.svg ├── builderz-white.svg ├── discord.svg ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── linkedin.svg └── twitter.svg ├── scaffold-desktop.png ├── scaffold-mobile.png ├── src ├── app │ ├── layout.tsx │ ├── nfts │ │ └── page.tsx │ ├── page.tsx │ └── ranking │ │ └── page.tsx ├── assets │ ├── builderz-logo.png │ └── screenshot1.png ├── components │ ├── ErrorBoundary.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── Loading.tsx │ ├── Logo.tsx │ ├── Tabs.tsx │ ├── ThemeSwitcher.tsx │ ├── nft │ │ ├── NftItem.tsx │ │ └── NftList.tsx │ └── themes.tsx ├── contexts │ ├── AllProvider.tsx │ └── ContextProvider.tsx ├── hooks │ ├── useNfts.ts │ └── useWallet.ts ├── styles │ ├── Home.module.css │ └── globals.css └── utils │ └── nfts.ts ├── tailwind.config.js ├── tsconfig.json └── xnft.json /.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_HELIUS_URL="" 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/package.json -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/builderz-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/public/builderz-black.svg -------------------------------------------------------------------------------- /public/builderz-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/public/builderz-symbol.svg -------------------------------------------------------------------------------- /public/builderz-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/public/builderz-white.svg -------------------------------------------------------------------------------- /public/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/public/discord.svg -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/public/linkedin.svg -------------------------------------------------------------------------------- /public/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/public/twitter.svg -------------------------------------------------------------------------------- /scaffold-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/scaffold-desktop.png -------------------------------------------------------------------------------- /scaffold-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/scaffold-mobile.png -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/nfts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/app/nfts/page.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/ranking/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/app/ranking/page.tsx -------------------------------------------------------------------------------- /src/assets/builderz-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/assets/builderz-logo.png -------------------------------------------------------------------------------- /src/assets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/assets/screenshot1.png -------------------------------------------------------------------------------- /src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/Loading.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/Tabs.tsx -------------------------------------------------------------------------------- /src/components/ThemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/ThemeSwitcher.tsx -------------------------------------------------------------------------------- /src/components/nft/NftItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/nft/NftItem.tsx -------------------------------------------------------------------------------- /src/components/nft/NftList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/nft/NftList.tsx -------------------------------------------------------------------------------- /src/components/themes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/components/themes.tsx -------------------------------------------------------------------------------- /src/contexts/AllProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/contexts/AllProvider.tsx -------------------------------------------------------------------------------- /src/contexts/ContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/contexts/ContextProvider.tsx -------------------------------------------------------------------------------- /src/hooks/useNfts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/hooks/useNfts.ts -------------------------------------------------------------------------------- /src/hooks/useWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/hooks/useWallet.ts -------------------------------------------------------------------------------- /src/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/styles/Home.module.css -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/utils/nfts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/src/utils/nfts.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/tsconfig.json -------------------------------------------------------------------------------- /xnft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builderz-labs/builderz-xNFT-scaffold-next/HEAD/xnft.json --------------------------------------------------------------------------------