This commit is contained in:
parent
691d917f2d
commit
65acb03fc9
3
app/.eslintrc.json
Normal file
3
app/.eslintrc.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": "next/core-web-vitals"
|
||||
}
|
||||
38
app/.gitignore
vendored
Normal file
38
app/.gitignore
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# local env files
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
1
app/.npmrc
Normal file
1
app/.npmrc
Normal file
@ -0,0 +1 @@
|
||||
strict-peer-dependencies = false
|
||||
29
app/README.md
Normal file
29
app/README.md
Normal file
@ -0,0 +1,29 @@
|
||||
This is a [RainbowKit](https://rainbowkit.com) + [wagmi](https://wagmi.sh) + [Next.js](https://nextjs.org/) project bootstrapped with [`create-rainbowkit`](/packages/create-rainbowkit).
|
||||
|
||||
## Getting Started
|
||||
|
||||
First, run the development server:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
```
|
||||
|
||||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||
|
||||
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
|
||||
|
||||
## Learn More
|
||||
|
||||
To learn more about this stack, take a look at the following resources:
|
||||
|
||||
- [RainbowKit Documentation](https://rainbowkit.com) - Learn how to customize your wallet connection flow.
|
||||
- [wagmi Documentation](https://wagmi.sh) - Learn how to interact with Ethereum.
|
||||
- [Next.js Documentation](https://nextjs.org/docs) - Learn how to build a Next.js application.
|
||||
|
||||
You can check out [the RainbowKit GitHub repository](https://github.com/rainbow-me/rainbowkit) - your feedback and contributions are welcome!
|
||||
|
||||
## Deploy on Vercel
|
||||
|
||||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
||||
|
||||
Check out the [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
|
||||
5
app/next-env.d.ts
vendored
Normal file
5
app/next-env.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
/// <reference types="next" />
|
||||
/// <reference types="next/image-types/global" />
|
||||
|
||||
// NOTE: This file should not be edited
|
||||
// see https://nextjs.org/docs/basic-features/typescript for more information.
|
||||
10
app/next.config.js
Normal file
10
app/next.config.js
Normal file
@ -0,0 +1,10 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
reactStrictMode: true,
|
||||
webpack: config => {
|
||||
config.externals.push('pino-pretty', 'lokijs', 'encoding')
|
||||
return config
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = nextConfig;
|
||||
12557
app/package-lock.json
generated
Normal file
12557
app/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
24
app/package.json
Normal file
24
app/package.json
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "app",
|
||||
"private": true,
|
||||
"version": "0.1.0",
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@rainbow-me/rainbowkit": "^2.2.0",
|
||||
"@tanstack/react-query": "^5.55.3",
|
||||
"next": "^14.2.10",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"viem": "2.17.0",
|
||||
"wagmi": "^2.12.17"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.14.8",
|
||||
"@types/react": "^18.3.5",
|
||||
"typescript": "5.5.2"
|
||||
}
|
||||
}
|
||||
25
app/src/pages/_app.tsx
Normal file
25
app/src/pages/_app.tsx
Normal file
@ -0,0 +1,25 @@
|
||||
import '../styles/globals.css';
|
||||
import '@rainbow-me/rainbowkit/styles.css';
|
||||
import type { AppProps } from 'next/app';
|
||||
|
||||
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
||||
import { WagmiProvider } from 'wagmi';
|
||||
import { RainbowKitProvider } from '@rainbow-me/rainbowkit';
|
||||
|
||||
import { config } from '../wagmi';
|
||||
|
||||
const client = new QueryClient();
|
||||
|
||||
function MyApp({ Component, pageProps }: AppProps) {
|
||||
return (
|
||||
<WagmiProvider config={config}>
|
||||
<QueryClientProvider client={client}>
|
||||
<RainbowKitProvider>
|
||||
<Component {...pageProps} />
|
||||
</RainbowKitProvider>
|
||||
</QueryClientProvider>
|
||||
</WagmiProvider>
|
||||
);
|
||||
}
|
||||
|
||||
export default MyApp;
|
||||
84
app/src/pages/index.tsx
Normal file
84
app/src/pages/index.tsx
Normal file
@ -0,0 +1,84 @@
|
||||
import { ConnectButton } from '@rainbow-me/rainbowkit';
|
||||
import type { NextPage } from 'next';
|
||||
import Head from 'next/head';
|
||||
import styles from '../styles/Home.module.css';
|
||||
|
||||
const Home: NextPage = () => {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<Head>
|
||||
<title>RainbowKit App</title>
|
||||
<meta
|
||||
content="Generated by @rainbow-me/create-rainbowkit"
|
||||
name="description"
|
||||
/>
|
||||
<link href="/favicon.ico" rel="icon" />
|
||||
</Head>
|
||||
|
||||
<main className={styles.main}>
|
||||
<ConnectButton />
|
||||
|
||||
<h1 className={styles.title}>
|
||||
Welcome to <a href="">RainbowKit</a> + <a href="">wagmi</a> +{' '}
|
||||
<a href="https://nextjs.org">Next.js!</a>
|
||||
</h1>
|
||||
|
||||
<p className={styles.description}>
|
||||
Get started by editing{' '}
|
||||
<code className={styles.code}>pages/index.tsx</code>
|
||||
</p>
|
||||
|
||||
<div className={styles.grid}>
|
||||
<a className={styles.card} href="https://rainbowkit.com">
|
||||
<h2>RainbowKit Documentation →</h2>
|
||||
<p>Learn how to customize your wallet connection flow.</p>
|
||||
</a>
|
||||
|
||||
<a className={styles.card} href="https://wagmi.sh">
|
||||
<h2>wagmi Documentation →</h2>
|
||||
<p>Learn how to interact with Ethereum.</p>
|
||||
</a>
|
||||
|
||||
<a
|
||||
className={styles.card}
|
||||
href="https://github.com/rainbow-me/rainbowkit/tree/main/examples"
|
||||
>
|
||||
<h2>RainbowKit Examples →</h2>
|
||||
<p>Discover boilerplate example RainbowKit projects.</p>
|
||||
</a>
|
||||
|
||||
<a className={styles.card} href="https://nextjs.org/docs">
|
||||
<h2>Next.js Documentation →</h2>
|
||||
<p>Find in-depth information about Next.js features and API.</p>
|
||||
</a>
|
||||
|
||||
<a
|
||||
className={styles.card}
|
||||
href="https://github.com/vercel/next.js/tree/canary/examples"
|
||||
>
|
||||
<h2>Next.js Examples →</h2>
|
||||
<p>Discover and deploy boilerplate example Next.js projects.</p>
|
||||
</a>
|
||||
|
||||
<a
|
||||
className={styles.card}
|
||||
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
|
||||
>
|
||||
<h2>Deploy →</h2>
|
||||
<p>
|
||||
Instantly deploy your Next.js site to a public URL with Vercel.
|
||||
</p>
|
||||
</a>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer className={styles.footer}>
|
||||
<a href="https://rainbow.me" rel="noopener noreferrer" target="_blank">
|
||||
Made with ❤️ by your frens at 🌈
|
||||
</a>
|
||||
</footer>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home;
|
||||
102
app/src/styles/Home.module.css
Normal file
102
app/src/styles/Home.module.css
Normal file
@ -0,0 +1,102 @@
|
||||
.container {
|
||||
padding: 0 2rem;
|
||||
}
|
||||
|
||||
.main {
|
||||
min-height: 100vh;
|
||||
padding: 4rem 0;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.footer {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
padding: 2rem 0;
|
||||
border-top: 1px solid #eaeaea;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.footer a {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.title a {
|
||||
color: #0d76fc;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.title a:hover,
|
||||
.title a:focus,
|
||||
.title a:active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.title {
|
||||
margin: 3rem 0;
|
||||
line-height: 1;
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.title,
|
||||
.description {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.description {
|
||||
margin: 0 0 2rem;
|
||||
line-height: 1.5;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin: 1rem;
|
||||
padding: 1.5rem;
|
||||
text-align: left;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
border: 1px solid #eaeaea;
|
||||
border-radius: 10px;
|
||||
transition: color 0.15s ease, border-color 0.15s ease;
|
||||
max-width: 350px;
|
||||
}
|
||||
|
||||
.card:hover,
|
||||
.card:focus,
|
||||
.card:active {
|
||||
color: #0d76fc;
|
||||
border-color: #0d76fc;
|
||||
}
|
||||
|
||||
.card h2 {
|
||||
margin: 0 0 1rem 0;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.card p {
|
||||
margin: 0;
|
||||
font-size: 1.2rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.grid {
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
16
app/src/styles/globals.css
Normal file
16
app/src/styles/globals.css
Normal file
@ -0,0 +1,16 @@
|
||||
html,
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
||||
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
23
app/src/wagmi.ts
Normal file
23
app/src/wagmi.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { getDefaultConfig } from '@rainbow-me/rainbowkit';
|
||||
import {
|
||||
arbitrum,
|
||||
base,
|
||||
mainnet,
|
||||
optimism,
|
||||
polygon,
|
||||
sepolia,
|
||||
} from 'wagmi/chains';
|
||||
|
||||
export const config = getDefaultConfig({
|
||||
appName: 'RainbowKit App',
|
||||
projectId: 'YOUR_PROJECT_ID',
|
||||
chains: [
|
||||
mainnet,
|
||||
polygon,
|
||||
optimism,
|
||||
arbitrum,
|
||||
base,
|
||||
...(process.env.NEXT_PUBLIC_ENABLE_TESTNETS === 'true' ? [sepolia] : []),
|
||||
],
|
||||
ssr: true,
|
||||
});
|
||||
20
app/tsconfig.json
Normal file
20
app/tsconfig.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"incremental": true
|
||||
},
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user