Skip to content

Commit 18d050c

Browse files
committed
add TxnButton example
1 parent 23207e3 commit 18d050c

File tree

10 files changed

+7462
-607
lines changed

10 files changed

+7462
-607
lines changed

components.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": false,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.ts",
8+
"css": "src/styles/globals.css",
9+
"baseColor": "slate",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils"
16+
}
17+
}

package.json

+14-4
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,29 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@radix-ui/react-slot": "^1.0.2",
13+
"@tanstack/react-query": "^5.17.15",
14+
"@wagmi/core": "^2.2.1",
15+
"class-variance-authority": "^0.7.0",
16+
"clsx": "^2.1.0",
17+
"lucide-react": "^0.312.0",
18+
"next": "14.0.4",
1219
"react": "^18",
1320
"react-dom": "^18",
14-
"next": "14.0.4"
21+
"tailwind-merge": "^2.2.0",
22+
"tailwindcss-animate": "^1.0.7",
23+
"viem": "2.x",
24+
"wagmi": "^2.2.1"
1525
},
1626
"devDependencies": {
17-
"typescript": "^5",
1827
"@types/node": "^20",
1928
"@types/react": "^18",
2029
"@types/react-dom": "^18",
2130
"autoprefixer": "^10.0.1",
31+
"eslint": "^8",
32+
"eslint-config-next": "14.0.4",
2233
"postcss": "^8",
2334
"tailwindcss": "^3.3.0",
24-
"eslint": "^8",
25-
"eslint-config-next": "14.0.4"
35+
"typescript": "^5"
2636
}
2737
}

0 commit comments

Comments
 (0)