├── .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 └── image.png ├── src ├── app │ ├── about │ │ └── page.tsx │ ├── global.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── DevMode.tsx │ ├── Footer.tsx │ ├── FundComponent.tsx │ ├── Header.tsx │ ├── LoginButton.tsx │ ├── OnchainProviders.tsx │ ├── SignupButton.tsx │ ├── TransactionComponent.tsx │ └── WalletWrapper.tsx ├── config.ts ├── constants.ts ├── links.ts ├── svg │ ├── ArrowSvg.tsx │ ├── BaseSvg.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/fund-component/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/ISSUE_TEMPLATE/documentation_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/salus-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/workflows/salus-scan.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/bun.lockb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/copy-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/public/copy-api-key.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/public/image.png -------------------------------------------------------------------------------- /src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/app/about/page.tsx -------------------------------------------------------------------------------- /src/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/app/global.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/DevMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/components/DevMode.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/FundComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/components/FundComponent.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/LoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/components/LoginButton.tsx -------------------------------------------------------------------------------- /src/components/OnchainProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/components/OnchainProviders.tsx -------------------------------------------------------------------------------- /src/components/SignupButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/components/SignupButton.tsx -------------------------------------------------------------------------------- /src/components/TransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/components/TransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/WalletWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/components/WalletWrapper.tsx -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/links.ts -------------------------------------------------------------------------------- /src/svg/ArrowSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/svg/ArrowSvg.tsx -------------------------------------------------------------------------------- /src/svg/BaseSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/svg/BaseSvg.tsx -------------------------------------------------------------------------------- /src/svg/OnchainkitSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/svg/OnchainkitSvg.tsx -------------------------------------------------------------------------------- /src/wagmi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/src/wagmi.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/vitest.setup.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakepixels/fund-component/HEAD/yarn.lock --------------------------------------------------------------------------------