├── .env ├── .eslintrc.json ├── .gitignore ├── .npmrc ├── contracts └── ETHRegistrarController.json ├── next-env.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── emoji-thinking-face.png └── twitter-card.png ├── src ├── App.tsx ├── DomainCard.tsx ├── Header.tsx ├── NameStatusCard.tsx ├── RecentRegistrations.tsx ├── RelativeTime.tsx ├── emoji.json ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── about.tsx │ ├── api │ │ └── ens │ │ │ └── resolve │ │ │ └── [address].ts │ ├── emoji.tsx │ ├── index.tsx │ ├── three-letters.tsx │ └── three-numbers.tsx ├── urql.ts ├── useBulkAvailability.ts ├── useRecentRegistrations.ts └── useRegistration.ts ├── tailwind.config.js ├── tsconfig.json ├── typechain-types ├── ETHRegistrarController.ts ├── common.ts ├── factories │ └── ETHRegistrarController__factory.ts └── index.ts └── vercel.json /.env: -------------------------------------------------------------------------------- 1 | ETHEREUM_RPC_URL= 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers=true 2 | -------------------------------------------------------------------------------- /contracts/ETHRegistrarController.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/contracts/ETHRegistrarController.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/emoji-thinking-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/public/emoji-thinking-face.png -------------------------------------------------------------------------------- /public/twitter-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/public/twitter-card.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/DomainCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/DomainCard.tsx -------------------------------------------------------------------------------- /src/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/Header.tsx -------------------------------------------------------------------------------- /src/NameStatusCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/NameStatusCard.tsx -------------------------------------------------------------------------------- /src/RecentRegistrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/RecentRegistrations.tsx -------------------------------------------------------------------------------- /src/RelativeTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/RelativeTime.tsx -------------------------------------------------------------------------------- /src/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/emoji.json -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/pages/about.tsx -------------------------------------------------------------------------------- /src/pages/api/ens/resolve/[address].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/pages/api/ens/resolve/[address].ts -------------------------------------------------------------------------------- /src/pages/emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/pages/emoji.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/three-letters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/pages/three-letters.tsx -------------------------------------------------------------------------------- /src/pages/three-numbers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/pages/three-numbers.tsx -------------------------------------------------------------------------------- /src/urql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/urql.ts -------------------------------------------------------------------------------- /src/useBulkAvailability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/useBulkAvailability.ts -------------------------------------------------------------------------------- /src/useRecentRegistrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/useRecentRegistrations.ts -------------------------------------------------------------------------------- /src/useRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/src/useRegistration.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typechain-types/ETHRegistrarController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/typechain-types/ETHRegistrarController.ts -------------------------------------------------------------------------------- /typechain-types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/typechain-types/common.ts -------------------------------------------------------------------------------- /typechain-types/factories/ETHRegistrarController__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/typechain-types/factories/ETHRegistrarController__factory.ts -------------------------------------------------------------------------------- /typechain-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/typechain-types/index.ts -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frolic/ens-ideas/HEAD/vercel.json --------------------------------------------------------------------------------