├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_request.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── build.yml │ ├── check.yml │ ├── format.yml │ ├── lint.yml │ ├── salus-scan.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── biome.json ├── bun.lockb ├── package.json ├── postcss.config.js ├── public ├── copy-api-key.png └── favicon.ico ├── src ├── app │ ├── global.css │ ├── layout.tsx │ └── page.tsx ├── client.ts ├── components │ ├── Footer.tsx │ ├── FundComponent.tsx │ ├── IdentityWrapper.tsx │ ├── OnchainProviders.tsx │ ├── TransactionWrapper.tsx │ └── WalletWrapper.tsx ├── config.ts ├── constants.ts ├── links.ts ├── svg │ ├── ArrowSvg.tsx │ ├── BaseSvg.tsx │ ├── FarcasterIcon.tsx │ └── OnchainkitSvg.tsx └── wagmi.ts ├── tailwind.config.ts ├── tsconfig.json ├── vitest.config.ts ├── vitest.setup.ts └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/ISSUE_TEMPLATE/documentation_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/salus-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/workflows/salus-scan.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/bun.lockb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/copy-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/public/copy-api-key.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/app/global.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/FundComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/components/FundComponent.tsx -------------------------------------------------------------------------------- /src/components/IdentityWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/components/IdentityWrapper.tsx -------------------------------------------------------------------------------- /src/components/OnchainProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/components/OnchainProviders.tsx -------------------------------------------------------------------------------- /src/components/TransactionWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/components/TransactionWrapper.tsx -------------------------------------------------------------------------------- /src/components/WalletWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/components/WalletWrapper.tsx -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/links.ts -------------------------------------------------------------------------------- /src/svg/ArrowSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/svg/ArrowSvg.tsx -------------------------------------------------------------------------------- /src/svg/BaseSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/svg/BaseSvg.tsx -------------------------------------------------------------------------------- /src/svg/FarcasterIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/svg/FarcasterIcon.tsx -------------------------------------------------------------------------------- /src/svg/OnchainkitSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/svg/OnchainkitSvg.tsx -------------------------------------------------------------------------------- /src/wagmi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/src/wagmi.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/vitest.setup.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/ock-identity/HEAD/yarn.lock --------------------------------------------------------------------------------