├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── assets └── demo-preview.webp ├── cli ├── .gitignore ├── README.md ├── build.js ├── package.json ├── src │ ├── code.test.ts │ ├── detectPackageManager.ts │ └── index.ts └── tsconfig.json ├── examples ├── next-connectkit-app │ ├── .env.sample │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ ├── src │ │ ├── assets │ │ │ ├── demo.gif │ │ │ └── images │ │ │ │ ├── arrow.svg │ │ │ │ ├── logo.png │ │ │ │ └── right.svg │ │ ├── components │ │ │ ├── demo │ │ │ │ ├── index.module.css │ │ │ │ ├── index.tsx │ │ │ │ ├── modules │ │ │ │ │ ├── Button │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Collapse │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ContractInteraction │ │ │ │ │ │ ├── abi │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Divider │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── InputWrapper │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SendNativeToken │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SignMessage │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SignTypedData │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── Tag │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── store │ │ │ │ │ └── useGlobalState.tsx │ │ │ │ └── util │ │ │ │ │ └── index.ts │ │ │ └── header │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ ├── connectkit.tsx │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── store │ │ │ └── useGlobalState.tsx │ ├── tailwind.config.ts │ └── tsconfig.json └── react-connectkit-app │ ├── .env.sample │ ├── .gitignore │ ├── README.md │ ├── config-overrides.js │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.module.css │ ├── App.test.tsx │ ├── App.tsx │ ├── assets │ │ ├── demo.gif │ │ └── images │ │ │ ├── arrow.svg │ │ │ ├── logo.png │ │ │ └── right.svg │ ├── components │ │ ├── demo │ │ │ ├── index.module.css │ │ │ ├── index.tsx │ │ │ ├── modules │ │ │ │ ├── Button │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Collapse │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContractInteraction │ │ │ │ │ ├── abi │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Divider │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── InputWrapper │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── SendNativeToken │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── SignMessage │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── SignTypedData │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ └── Tag │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ ├── store │ │ │ │ └── useGlobalState.tsx │ │ │ └── util │ │ │ │ └── index.ts │ │ └── header │ │ │ ├── index.module.css │ │ │ └── index.tsx │ ├── connectkit.tsx │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── setupTests.ts │ └── store │ │ └── useGlobalState.tsx │ └── tsconfig.json ├── package.json ├── scripts └── updateVersion.cjs ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo-preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/assets/demo-preview.webp -------------------------------------------------------------------------------- /cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/cli/.gitignore -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/cli/build.js -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/src/code.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/cli/src/code.test.ts -------------------------------------------------------------------------------- /cli/src/detectPackageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/cli/src/detectPackageManager.ts -------------------------------------------------------------------------------- /cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/cli/src/index.ts -------------------------------------------------------------------------------- /cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/cli/tsconfig.json -------------------------------------------------------------------------------- /examples/next-connectkit-app/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/.env.sample -------------------------------------------------------------------------------- /examples/next-connectkit-app/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /examples/next-connectkit-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/.gitignore -------------------------------------------------------------------------------- /examples/next-connectkit-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/README.md -------------------------------------------------------------------------------- /examples/next-connectkit-app/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/app/favicon.ico -------------------------------------------------------------------------------- /examples/next-connectkit-app/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/app/globals.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/app/layout.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/app/page.tsx: -------------------------------------------------------------------------------- 1 | export { default } from '@/index'; 2 | -------------------------------------------------------------------------------- /examples/next-connectkit-app/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/next.config.mjs -------------------------------------------------------------------------------- /examples/next-connectkit-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/package.json -------------------------------------------------------------------------------- /examples/next-connectkit-app/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/postcss.config.mjs -------------------------------------------------------------------------------- /examples/next-connectkit-app/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/public/next.svg -------------------------------------------------------------------------------- /examples/next-connectkit-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/public/vercel.svg -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/assets/demo.gif -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/assets/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/assets/images/arrow.svg -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/assets/images/logo.png -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/assets/images/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/assets/images/right.svg -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/Button/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/Button/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/Button/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/Collapse/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/Collapse/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/Collapse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/Collapse/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/ContractInteraction/abi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/ContractInteraction/abi/index.ts -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/ContractInteraction/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/ContractInteraction/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/ContractInteraction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/ContractInteraction/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/Divider/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/Divider/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/Divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/Divider/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/InputWrapper/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/InputWrapper/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/InputWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/InputWrapper/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/SendNativeToken/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/SendNativeToken/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/SendNativeToken/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/SendNativeToken/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/SignMessage/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/SignMessage/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/SignMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/SignMessage/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/SignTypedData/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/SignTypedData/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/SignTypedData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/SignTypedData/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/Tag/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/Tag/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/modules/Tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/modules/Tag/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/store/useGlobalState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/store/useGlobalState.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/demo/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/demo/util/index.ts -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/header/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/header/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/components/header/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/connectkit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/connectkit.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/index.module.css -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/index.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/src/store/useGlobalState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/src/store/useGlobalState.tsx -------------------------------------------------------------------------------- /examples/next-connectkit-app/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/tailwind.config.ts -------------------------------------------------------------------------------- /examples/next-connectkit-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/next-connectkit-app/tsconfig.json -------------------------------------------------------------------------------- /examples/react-connectkit-app/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/.env.sample -------------------------------------------------------------------------------- /examples/react-connectkit-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/.gitignore -------------------------------------------------------------------------------- /examples/react-connectkit-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/README.md -------------------------------------------------------------------------------- /examples/react-connectkit-app/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/config-overrides.js -------------------------------------------------------------------------------- /examples/react-connectkit-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/package.json -------------------------------------------------------------------------------- /examples/react-connectkit-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/public/favicon.ico -------------------------------------------------------------------------------- /examples/react-connectkit-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/public/index.html -------------------------------------------------------------------------------- /examples/react-connectkit-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/public/logo192.png -------------------------------------------------------------------------------- /examples/react-connectkit-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/public/logo512.png -------------------------------------------------------------------------------- /examples/react-connectkit-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/public/manifest.json -------------------------------------------------------------------------------- /examples/react-connectkit-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/public/robots.txt -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/App.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/App.test.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/App.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/assets/demo.gif -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/assets/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/assets/images/arrow.svg -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/assets/images/logo.png -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/assets/images/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/assets/images/right.svg -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/Button/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/Button/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/Button/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/Collapse/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/Collapse/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/Collapse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/Collapse/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/ContractInteraction/abi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/ContractInteraction/abi/index.ts -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/ContractInteraction/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/ContractInteraction/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/ContractInteraction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/ContractInteraction/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/Divider/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/Divider/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/Divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/Divider/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/InputWrapper/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/InputWrapper/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/InputWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/InputWrapper/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/SendNativeToken/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/SendNativeToken/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/SendNativeToken/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/SendNativeToken/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/SignMessage/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/SignMessage/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/SignMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/SignMessage/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/SignTypedData/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/SignTypedData/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/SignTypedData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/SignTypedData/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/Tag/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/Tag/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/modules/Tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/modules/Tag/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/store/useGlobalState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/store/useGlobalState.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/demo/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/demo/util/index.ts -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/header/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/header/index.module.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/components/header/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/connectkit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/connectkit.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/index.css -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/index.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/logo.svg -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/reportWebVitals.ts -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/setupTests.ts -------------------------------------------------------------------------------- /examples/react-connectkit-app/src/store/useGlobalState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/src/store/useGlobalState.tsx -------------------------------------------------------------------------------- /examples/react-connectkit-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/examples/react-connectkit-app/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/package.json -------------------------------------------------------------------------------- /scripts/updateVersion.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/scripts/updateVersion.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Particle-Network/create-connectkit/HEAD/yarn.lock --------------------------------------------------------------------------------