├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── addresses.ts ├── components ├── Header.tsx └── ThirdwebGuideFooter.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── create.tsx ├── index.tsx └── listing │ └── [listingId].tsx ├── public ├── favicon.ico ├── github.png ├── logo.png └── thirdweb.svg ├── styles ├── Home.module.css ├── Thirdweb.module.css └── globals.css └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_MARKETPLACE_CONTRACT_ADDRESS=0x... -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/README.md -------------------------------------------------------------------------------- /addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/addresses.ts -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/ThirdwebGuideFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/components/ThirdwebGuideFooter.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/pages/create.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/listing/[listingId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/pages/listing/[listingId].tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/public/github.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/thirdweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/public/thirdweb.svg -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/Thirdweb.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/styles/Thirdweb.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirdweb-example/marketplace/HEAD/tsconfig.json --------------------------------------------------------------------------------