Initial commit
This commit is contained in:
4
.dockerignore
Normal file
4
.dockerignore
Normal file
@@ -0,0 +1,4 @@
|
||||
.react-router
|
||||
build
|
||||
node_modules
|
||||
README.md
|
||||
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
.DS_Store
|
||||
.env
|
||||
/node_modules/
|
||||
|
||||
# React Router
|
||||
/.react-router/
|
||||
/build/
|
||||
22
Dockerfile
Normal file
22
Dockerfile
Normal file
@@ -0,0 +1,22 @@
|
||||
FROM node:24-alpine AS development-dependencies-env
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
RUN npm ci
|
||||
|
||||
FROM node:24-alpine AS production-dependencies-env
|
||||
COPY ./package.json package-lock.json /app/
|
||||
WORKDIR /app
|
||||
RUN npm ci --omit=dev
|
||||
|
||||
FROM node:24-alpine AS build-env
|
||||
COPY . /app/
|
||||
COPY --from=development-dependencies-env /app/node_modules /app/node_modules
|
||||
WORKDIR /app
|
||||
RUN npm run build
|
||||
|
||||
FROM node:24-alpine
|
||||
COPY ./package.json package-lock.json /app/
|
||||
COPY --from=production-dependencies-env /app/node_modules /app/node_modules
|
||||
COPY --from=build-env /app/build /app/build
|
||||
WORKDIR /app
|
||||
CMD ["npm", "run", "start"]
|
||||
32
README.md
Normal file
32
README.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# Welcome to React and Wagmi!
|
||||
|
||||
This example code features a modern, production-ready template for building full-stack React applications with React Router, Wagmi and Viem.
|
||||
|
||||
## Features
|
||||
|
||||
- 🚀 Server-side rendering
|
||||
- ⚡️ Hot Module Replacement (HMR)
|
||||
- 📦 Asset bundling and optimization
|
||||
- 🔄 Data loading and mutations
|
||||
- 🔒 TypeScript by default
|
||||
- 🎉 TailwindCSS for styling
|
||||
|
||||
|
||||
|
||||
## Getting Started
|
||||
|
||||
### Installation
|
||||
|
||||
Install the dependencies:
|
||||
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
### Development
|
||||
|
||||
Start the development server:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
```
|
||||
22
app/app.css
Normal file
22
app/app.css
Normal file
@@ -0,0 +1,22 @@
|
||||
@import "tailwindcss";
|
||||
@import "react-toastify/dist/ReactToastify.min.css";
|
||||
|
||||
table {
|
||||
@apply w-full text-left;
|
||||
}
|
||||
|
||||
table thead {
|
||||
@apply bg-slate-100;
|
||||
}
|
||||
|
||||
table tbody {
|
||||
@apply bg-white;
|
||||
}
|
||||
|
||||
table tbody tr {
|
||||
@apply border-b border-slate-200;
|
||||
}
|
||||
|
||||
table thead th, table tbody td {
|
||||
@apply px-4 py-2;
|
||||
}
|
||||
7
app/components/error/ErrorView.tsx
Normal file
7
app/components/error/ErrorView.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export function ErrorView() {
|
||||
return (
|
||||
<div>
|
||||
<p>Ups, an unexpected error occurred.</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
13
app/components/layout/Footer.tsx
Normal file
13
app/components/layout/Footer.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
export function Footer() {
|
||||
return (
|
||||
<footer className="max-w-6xl mx-auto px-4 py-12 border-t border-slate-200 mt-12">
|
||||
<div className="text-center">
|
||||
<p className="text-sm text-slate-500">
|
||||
Copyright © {new Date().getFullYear()} Brainster Next College.
|
||||
All rights reserved.<br />
|
||||
Icons by <a href="https://icons8.com/" target="_blank" rel="noopener noreferrer">Icons8</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
33
app/components/layout/Header.tsx
Normal file
33
app/components/layout/Header.tsx
Normal file
@@ -0,0 +1,33 @@
|
||||
import { Link } from "react-router";
|
||||
|
||||
export function Header() {
|
||||
return (
|
||||
<header className="bg-white border-b border-slate-200 sticky top-0 z-10">
|
||||
<div className="max-w-6xl mx-auto px-4 py-3 h-auto min-h-16 flex items-center justify-between">
|
||||
<div className="flex items-center space-x-3">
|
||||
<div className="bg-blue-600 p-2 rounded-lg shrink-0">
|
||||
<img
|
||||
src="https://img.icons8.com/ios-filled/50/ffffff/flash-on.png"
|
||||
className="w-5 h-5 object-contain"
|
||||
alt="logo"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<h1 className="font-bold text-lg leading-tight">
|
||||
Distributed Systems and Blockchain
|
||||
</h1>
|
||||
<p className="text-xs text-slate-500">Brainster Next College</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center space-x-4">
|
||||
<p className="text-sm text-slate-500 hidden md:block">Chain: Next Testnet</p>
|
||||
|
||||
<Link to="/status" className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-xl text-sm font-semibold transition-all shadow-sm">
|
||||
Connect Wallet
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
);
|
||||
}
|
||||
40
app/components/layout/Sidebar.tsx
Normal file
40
app/components/layout/Sidebar.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
import { Link, useLocation } from "react-router";
|
||||
|
||||
const navItems = [
|
||||
{ route: "/", label: "Explorer", icon: "home" },
|
||||
{ route: "/status", label: "Status", icon: "notepad" },
|
||||
{ route: "/transfer", label: "Transfer", icon: "money" }
|
||||
];
|
||||
|
||||
export function Sidebar() {
|
||||
const location = useLocation();
|
||||
|
||||
return (
|
||||
<aside className="lg:col-span-3">
|
||||
<nav className="space-y-1">
|
||||
{navItems.map((item) => (
|
||||
<Link
|
||||
key={item.route}
|
||||
to={item.route}
|
||||
className={`w-full flex items-center space-x-3 px-4 py-3 rounded-xl text-sm font-medium transition-colors ${
|
||||
location.pathname === item.route
|
||||
? "bg-blue-50 text-blue-700 border border-blue-100"
|
||||
: "text-slate-600 hover:bg-slate-100"
|
||||
}`}
|
||||
>
|
||||
<img
|
||||
src={
|
||||
location.pathname === item.route
|
||||
? `https://img.icons8.com/ios-filled/50/2563eb/${item.icon}.png`
|
||||
: `https://img.icons8.com/ios/50/64748b/${item.icon}.png`
|
||||
}
|
||||
className="w-5 h-5 shrink-0 object-contain"
|
||||
alt={item.label}
|
||||
/>
|
||||
<span>{item.label}</span>
|
||||
</Link>
|
||||
))}
|
||||
</nav>
|
||||
</aside>
|
||||
);
|
||||
}
|
||||
7
app/components/loading/LoadingView.tsx
Normal file
7
app/components/loading/LoadingView.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export function LoadingView() {
|
||||
return (
|
||||
<div className="flex justify-center items-center">
|
||||
<p className="sr-only">Loading...</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
25
app/config/wagmi.ts
Normal file
25
app/config/wagmi.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { createConfig, http } from "wagmi";
|
||||
import { metaMask } from "wagmi/connectors";
|
||||
|
||||
import { type Chain } from "viem";
|
||||
|
||||
export const nextChain = {
|
||||
id: 1337,
|
||||
name: "Next",
|
||||
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
|
||||
rpcUrls: {
|
||||
default: { http: ["https://eth.code-camp.org"] }
|
||||
},
|
||||
blockExplorers: {
|
||||
default: { name: "Otterscan", url: "https://etherscan.code-camp.org" }
|
||||
},
|
||||
testnet: true
|
||||
} as const satisfies Chain;
|
||||
|
||||
export const config = createConfig({
|
||||
chains: [nextChain],
|
||||
transports: {
|
||||
[nextChain.id]: http()
|
||||
},
|
||||
connectors: [metaMask()]
|
||||
});
|
||||
7
app/lib/fetch.ts
Normal file
7
app/lib/fetch.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export const fetchApi = async <T = any>(url: string): Promise<T> => {
|
||||
const response = await fetch(url);
|
||||
if (!response.ok) {
|
||||
throw new Error(`HTTP error! status: ${response.status}`);
|
||||
}
|
||||
return response.json();
|
||||
};
|
||||
81
app/pages/home/HomePage.tsx
Normal file
81
app/pages/home/HomePage.tsx
Normal file
@@ -0,0 +1,81 @@
|
||||
import { useState } from "react";
|
||||
import { toast } from "react-toastify";
|
||||
import { formatEther, isHash, type Hash } from "viem";
|
||||
import { useTransaction } from "wagmi";
|
||||
|
||||
|
||||
export function HomePage() {
|
||||
const [inputHash, setInputHash] = useState('');
|
||||
const [confirmedHash, setConfirmedHash] = useState<Hash | undefined>(undefined);
|
||||
|
||||
const { data: transaction, isPending, error } = useTransaction({
|
||||
hash: confirmedHash,
|
||||
query: {
|
||||
retry: 1
|
||||
}
|
||||
})
|
||||
|
||||
function onSubmit(e) {
|
||||
e.preventDefault();
|
||||
if (isHash(inputHash)) {
|
||||
setConfirmedHash(inputHash);
|
||||
} else {
|
||||
toast.error('Enter a valid transaction hash!');
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-10">
|
||||
<div className="bg-white p-5 rounded-xl border border-slate-200 shadow-sm flex flex-col gap-6">
|
||||
<h1 className="text-lg font-bold">Transaction Explorer</h1>
|
||||
<p>Enter a transaction hash to get more details...</p>
|
||||
|
||||
<form className="flex flex-row gap-5 w-full" onSubmit={onSubmit}>
|
||||
<input type="text" value={inputHash} onChange={(e) => {
|
||||
setInputHash(e.target.value);
|
||||
if (confirmedHash) {
|
||||
setConfirmedHash(undefined);
|
||||
}
|
||||
}} className="w-full border border-gray-300 p-2 rounded-lg" placeholder="Enter hash..." />
|
||||
<button
|
||||
type="submit"
|
||||
disabled={!inputHash}
|
||||
className="bg-black text-white p-2 px-6 rounded-xl cursor-pointer disabled:opacity-50"
|
||||
>
|
||||
Run
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
{!!confirmedHash && (
|
||||
<div className="bg-white p-0 rounded-xl overflow-hidden border border-slate-200 shadown-sm flex flex-col gap-6">
|
||||
<div className="bg-slate-100 px-6 py-4">
|
||||
<h2 className="text-lg font-bold">Details</h2>
|
||||
</div>
|
||||
|
||||
<div className="p-6 pt-0">
|
||||
{error && <p>An error occurred. Please enter a valid hash.</p>}
|
||||
{isPending && <p>Loading details...</p>}
|
||||
|
||||
{!!transaction && (
|
||||
<div className="grid grid-cols-6 w-full gap-y-6">
|
||||
|
||||
<div className="opacity-50">Hash</div>
|
||||
<div className="col-span-5 break-all">{transaction.hash}</div>
|
||||
|
||||
<div className="opacity-50">From</div>
|
||||
<div className="col-span-5">{transaction.from}</div>
|
||||
|
||||
<div className="opacity-50">To</div>
|
||||
<div className="col-span-5">{transaction.to || 'N/A'}</div>
|
||||
|
||||
<div className="opacity-50">Value</div>
|
||||
<div className="col-span-5">{formatEther(transaction.value)} ETH</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
79
app/pages/status/StatusPage.tsx
Normal file
79
app/pages/status/StatusPage.tsx
Normal file
@@ -0,0 +1,79 @@
|
||||
import { useEffect } from "react";
|
||||
import { formatEther, type Address } from "viem";
|
||||
import { useBalance, useBlockNumber, useConnect, useConnection, useConnectors, useDisconnect } from "wagmi";
|
||||
|
||||
function WalletDetails({ address }: { address: Address }) {
|
||||
const { data: blockNumber } = useBlockNumber({ watch: true });
|
||||
const { data: balance, isPending, error, refetch: refetchBalance } = useBalance({ address });
|
||||
const { mutate: disconnect } = useDisconnect();
|
||||
|
||||
useEffect(() => {
|
||||
refetchBalance();
|
||||
}, [blockNumber]);
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-6">
|
||||
<h1 className="text-lg font-bold">You are connected</h1>
|
||||
|
||||
<p className="break-all">Your address is: {address}</p>
|
||||
|
||||
{isPending && <p>Loading balance...</p>}
|
||||
{error && <p>An error occurred.</p>}
|
||||
|
||||
{blockNumber && <p>Block number: {blockNumber.toLocaleString()}</p>}
|
||||
{balance && <p>Balance: {formatEther(balance.value)} ETH</p>}
|
||||
|
||||
<div className="flex flex-row">
|
||||
<button
|
||||
className="bg-black text-white py-2 px-6 rounded-xl cursor-pointer"
|
||||
onClick={() => disconnect()}
|
||||
>
|
||||
Disconnect
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
|
||||
function ConnectWallet() {
|
||||
const connectors = useConnectors();
|
||||
const { mutate: connect } = useConnect();
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-6">
|
||||
<h1 className="text-lg font-bold">Connect your wallet</h1>
|
||||
|
||||
<p>Choose an option from the list below:</p>
|
||||
<div className="flex flex-row gap-6">
|
||||
{connectors.map(connector => (
|
||||
<button
|
||||
key={connector.id}
|
||||
onClick={() => connect({ connector })}
|
||||
className="bg-black text-white px-6 py-2 rounded-lg cursor-pointer"
|
||||
>
|
||||
Connect {connector.name}
|
||||
</button>
|
||||
))}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
export function StatusPage() {
|
||||
const { address, isConnected } = useConnection();
|
||||
|
||||
return (
|
||||
<div className="bg-white p-5 border border-slate-200 shadow-sm rounded-xl flex flex-col gap-6">
|
||||
{isConnected && address ? (
|
||||
<WalletDetails address={address} />
|
||||
) : (
|
||||
<ConnectWallet />
|
||||
)}
|
||||
|
||||
</div>
|
||||
);
|
||||
}
|
||||
85
app/pages/transfer/TransferPage.tsx
Normal file
85
app/pages/transfer/TransferPage.tsx
Normal file
@@ -0,0 +1,85 @@
|
||||
import { useEffect, useState } from "react";
|
||||
import { useNavigate } from "react-router";
|
||||
import { toast } from "react-toastify";
|
||||
import { isAddress, parseEther } from "viem";
|
||||
import { useConnection, useSendTransaction, useWaitForTransactionReceipt } from "wagmi";
|
||||
|
||||
|
||||
export function TransferPage() {
|
||||
const { isConnected } = useConnection();
|
||||
const navigate = useNavigate();
|
||||
|
||||
const [inputAddress, setInputAddress] = useState('');
|
||||
const [inputValue, setInputValue] = useState('');
|
||||
|
||||
const { data: transactionHash, isPending: isSendingTransaction, error, mutate: sendTransaction } = useSendTransaction();
|
||||
const { data: receipt, isPending, isFetching } = useWaitForTransactionReceipt({
|
||||
hash: transactionHash,
|
||||
query: {
|
||||
// not stricly needed, because if transactionHash is not defined,
|
||||
// in current versions of wagmi it defaults to disabled
|
||||
// (but, it's good to know so you can control dependent queries)
|
||||
enabled: !!transactionHash
|
||||
}
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
if (!isConnected) {
|
||||
navigate('/status');
|
||||
}
|
||||
}, [isConnected, navigate]);
|
||||
|
||||
function onSubmit(e) {
|
||||
e.preventDefault();
|
||||
|
||||
if (!isAddress(inputAddress)) {
|
||||
return toast.error('Invalid address.');
|
||||
}
|
||||
|
||||
if (!inputValue || isNaN(Number(inputValue)) || Number(inputValue) <= 0) {
|
||||
return toast.error('Invalid value.');
|
||||
}
|
||||
|
||||
sendTransaction({
|
||||
to: inputAddress,
|
||||
value: parseEther(inputValue)
|
||||
})
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="bg-white border border-slate-200 rounded-xl p-5 flex flex-col gap-6 shadow-sm">
|
||||
<h1 className="text-lg font-bold">Transfer ETH</h1>
|
||||
|
||||
<form onSubmit={onSubmit} className="flex flex-col gap-6">
|
||||
<input
|
||||
type="text"
|
||||
className="border border-gray-300 p-2 rounded-lg"
|
||||
placeholder="Enter address."
|
||||
value={inputAddress}
|
||||
onChange={e => setInputAddress(e.target.value)}
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
className="border border-gray-300 p-2 rounded-lg"
|
||||
placeholder="Enter value."
|
||||
value={inputValue}
|
||||
onChange={e => setInputValue(e.target.value)}
|
||||
/>
|
||||
|
||||
<div className="flex flex-row">
|
||||
<button
|
||||
type="submit"
|
||||
disabled={!inputAddress || !inputValue}
|
||||
className="bg-black text-white px-5 py-2 cursor-pointer rounded-xl disabled:opacity-50"
|
||||
>
|
||||
{isSendingTransaction ? 'Sending...' : 'Send'}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
{error && <p>An error occurred. Please check the address and the value.</p>}
|
||||
{(isPending && isFetching) && <p>Confirming...</p>}
|
||||
{receipt && <p>Status: {receipt.status}</p>}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
103
app/root.tsx
Normal file
103
app/root.tsx
Normal file
@@ -0,0 +1,103 @@
|
||||
import {
|
||||
isRouteErrorResponse,
|
||||
Links,
|
||||
Meta,
|
||||
Outlet,
|
||||
Scripts,
|
||||
ScrollRestoration
|
||||
} from "react-router";
|
||||
|
||||
import { ToastContainer } from "react-toastify";
|
||||
|
||||
import { WagmiProvider } from "wagmi";
|
||||
import { config } from "./config/wagmi";
|
||||
|
||||
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
||||
const queryClient = new QueryClient();
|
||||
|
||||
import type { Route } from "./+types/root";
|
||||
import "./app.css";
|
||||
import { Header } from "./components/layout/Header";
|
||||
import { Footer } from "./components/layout/Footer";
|
||||
import { Sidebar } from "./components/layout/Sidebar";
|
||||
|
||||
export const links: Route.LinksFunction = () => [
|
||||
{ rel: "preconnect", href: "https://fonts.googleapis.com" },
|
||||
{
|
||||
rel: "preconnect",
|
||||
href: "https://fonts.gstatic.com",
|
||||
crossOrigin: "anonymous"
|
||||
},
|
||||
{
|
||||
rel: "stylesheet",
|
||||
href: "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
|
||||
}
|
||||
];
|
||||
|
||||
export function Layout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charSet="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<Meta />
|
||||
<Links />
|
||||
</head>
|
||||
<body className="bg-slate-50 text-slate-900 font-sans">
|
||||
<div>
|
||||
<Header />
|
||||
<main className="max-w-6xl mx-auto px-4 py-8 min-h-[calc(100vh-15rem)]">
|
||||
<div className="grid grid-cols-1 lg:grid-cols-12 gap-8">
|
||||
<Sidebar />
|
||||
|
||||
<div className="lg:col-span-9 space-y-6">{children}</div>
|
||||
</div>
|
||||
</main>
|
||||
<Footer />
|
||||
</div>
|
||||
<ToastContainer position="top-center" autoClose={5000} theme="colored" />
|
||||
<ScrollRestoration />
|
||||
<Scripts />
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<WagmiProvider config={config}>
|
||||
<QueryClientProvider client={queryClient}>
|
||||
<Outlet />
|
||||
</QueryClientProvider>
|
||||
</WagmiProvider>
|
||||
);
|
||||
}
|
||||
|
||||
export function ErrorBoundary({ error }: Route.ErrorBoundaryProps) {
|
||||
let message = "Oops!";
|
||||
let details = "An unexpected error occurred.";
|
||||
let stack: string | undefined;
|
||||
|
||||
if (isRouteErrorResponse(error)) {
|
||||
message = error.status === 404 ? "404" : "Error";
|
||||
details =
|
||||
error.status === 404
|
||||
? "The requested page could not be found."
|
||||
: error.statusText || details;
|
||||
} else if (import.meta.env.DEV && error && error instanceof Error) {
|
||||
details = error.message;
|
||||
stack = error.stack;
|
||||
}
|
||||
|
||||
return (
|
||||
<main className="pt-16 p-4 container mx-auto">
|
||||
<h1>{message}</h1>
|
||||
<p>{details}</p>
|
||||
{stack && (
|
||||
<pre className="w-full p-4 overflow-x-auto">
|
||||
<code>{stack}</code>
|
||||
</pre>
|
||||
)}
|
||||
</main>
|
||||
);
|
||||
}
|
||||
7
app/routes.ts
Normal file
7
app/routes.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { type RouteConfig, index, route } from "@react-router/dev/routes";
|
||||
|
||||
export default [
|
||||
index("routes/home.tsx"),
|
||||
route("status", "routes/status.tsx"),
|
||||
route("transfer", "routes/transfer.tsx")
|
||||
] satisfies RouteConfig;
|
||||
12
app/routes/home.tsx
Normal file
12
app/routes/home.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { HomePage } from "../pages/home/HomePage";
|
||||
|
||||
export function meta() {
|
||||
return [
|
||||
{ title: "Wagmi Starter" },
|
||||
{ name: "description", content: "Welcome to Wagmi!" },
|
||||
];
|
||||
}
|
||||
|
||||
export default function Home() {
|
||||
return <HomePage />;
|
||||
}
|
||||
7
app/routes/status.tsx
Normal file
7
app/routes/status.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { StatusPage } from "~/pages/status/StatusPage";
|
||||
|
||||
export default function Status() {
|
||||
return (
|
||||
<StatusPage />
|
||||
)
|
||||
}
|
||||
7
app/routes/transfer.tsx
Normal file
7
app/routes/transfer.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { TransferPage } from "~/pages/transfer/TransferPage";
|
||||
|
||||
export default function Transfer() {
|
||||
return (
|
||||
<TransferPage />
|
||||
)
|
||||
}
|
||||
6023
package-lock.json
generated
Normal file
6023
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
38
package.json
Normal file
38
package.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "wagmi-starter",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "react-router build",
|
||||
"dev": "react-router dev",
|
||||
"start": "react-router-serve ./build/server/index.js",
|
||||
"typecheck": "react-router typegen && tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@metamask/sdk": "^0.33.1",
|
||||
"@react-router/node": "7.12.0",
|
||||
"@react-router/serve": "7.12.0",
|
||||
"@tanstack/react-query": "^5.90.21",
|
||||
"clsx": "^2.1.1",
|
||||
"isbot": "^5.1.31",
|
||||
"react": "^19.2.4",
|
||||
"react-dom": "^19.2.4",
|
||||
"react-is": "^19.2.4",
|
||||
"react-router": "7.12.0",
|
||||
"react-toastify": "^10.0.6",
|
||||
"recharts": "^3.7.0",
|
||||
"viem": "^2.47.0",
|
||||
"wagmi": "^3.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@react-router/dev": "7.12.0",
|
||||
"@tailwindcss/vite": "^4.1.13",
|
||||
"@types/node": "^22",
|
||||
"@types/react": "^19.2.7",
|
||||
"@types/react-dom": "^19.2.3",
|
||||
"tailwindcss": "^4.1.13",
|
||||
"typescript": "^5.9.2",
|
||||
"vite": "^7.1.7",
|
||||
"vite-tsconfig-paths": "^5.1.4"
|
||||
}
|
||||
}
|
||||
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
7
react-router.config.ts
Normal file
7
react-router.config.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import type { Config } from "@react-router/dev/config";
|
||||
|
||||
export default {
|
||||
// Config options...
|
||||
// Server-side render by default, to enable SPA mode set this to `false`
|
||||
ssr: true,
|
||||
} satisfies Config;
|
||||
28
tsconfig.json
Normal file
28
tsconfig.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"include": [
|
||||
"**/*",
|
||||
"**/.server/**/*",
|
||||
"**/.client/**/*",
|
||||
".react-router/types/**/*"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
||||
"types": ["node", "vite/client"],
|
||||
"target": "ES2022",
|
||||
"module": "ES2022",
|
||||
"moduleResolution": "bundler",
|
||||
"jsx": "react-jsx",
|
||||
"rootDirs": [".", "./.react-router/types"],
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"~/*": ["./app/*"]
|
||||
},
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
"noEmit": true,
|
||||
"noImplicitAny": false,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true
|
||||
}
|
||||
}
|
||||
8
vite.config.ts
Normal file
8
vite.config.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { reactRouter } from "@react-router/dev/vite";
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
import { defineConfig } from "vite";
|
||||
import tsconfigPaths from "vite-tsconfig-paths";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [tailwindcss(), reactRouter(), tsconfigPaths()],
|
||||
});
|
||||
Reference in New Issue
Block a user