├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── src ├── Providers │ └── PrivyProvider.tsx └── app │ ├── airdrop │ └── page.tsx │ ├── components │ ├── PrivyDemo.tsx │ ├── SendUserTransaction.tsx │ └── SignMessages.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/README.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/Providers/PrivyProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/src/Providers/PrivyProvider.tsx -------------------------------------------------------------------------------- /src/app/airdrop/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/src/app/airdrop/page.tsx -------------------------------------------------------------------------------- /src/app/components/PrivyDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/src/app/components/PrivyDemo.tsx -------------------------------------------------------------------------------- /src/app/components/SendUserTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/src/app/components/SendUserTransaction.tsx -------------------------------------------------------------------------------- /src/app/components/SignMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/src/app/components/SignMessages.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixor7/Zemptin-wallet/HEAD/yarn.lock --------------------------------------------------------------------------------