├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── jest.config.js ├── lib ├── chains.ts ├── types.ts └── utilities.ts ├── next-env.d.ts ├── package.json ├── pages ├── api │ └── hello.ts └── index.tsx ├── public ├── favicon.ico └── vercel.svg ├── test ├── __mocks__ │ └── fileMock.js ├── pages │ ├── __snapshots__ │ │ └── index.test.tsx.snap │ └── index.test.tsx └── testUtils.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["next/babel"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/lib/chains.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/lib/utilities.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/package.json -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /test/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub' 2 | -------------------------------------------------------------------------------- /test/pages/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/test/pages/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /test/pages/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/test/pages/index.test.tsx -------------------------------------------------------------------------------- /test/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/test/testUtils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChangoMan/web3modal-example/HEAD/yarn.lock --------------------------------------------------------------------------------