Skip to content

Commit 8379621

Browse files
committed
style: switch to 2-space indentation and fix vault terminology
- Change biome indentStyle from tabs to 2-space (JS/TS convention) - Replace "vault" with "splitConfig" as primary payment address in dashboard - Update code snippet comment in split-explainer - Fix close/update dialog labels to show "Payment Address" - Use result.splitConfig in toast notifications Per ADR-0003: splitConfig is the primary identifier, vault is implementation detail.
1 parent 3d2eaca commit 8379621

177 files changed

Lines changed: 19403 additions & 19402 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/dashboard/components.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"$schema": "https://ui.shadcn.com/schema.json",
3-
"style": "new-york",
4-
"rsc": false,
5-
"tsx": true,
6-
"tailwind": {
7-
"config": "",
8-
"css": "src/index.css",
9-
"baseColor": "slate",
10-
"cssVariables": true,
11-
"prefix": ""
12-
},
13-
"iconLibrary": "lucide",
14-
"aliases": {
15-
"components": "@/components",
16-
"utils": "@/lib/utils",
17-
"ui": "@/components/ui",
18-
"lib": "@/lib",
19-
"hooks": "@/hooks"
20-
},
21-
"registries": {}
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": false,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "src/index.css",
9+
"baseColor": "slate",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"iconLibrary": "lucide",
14+
"aliases": {
15+
"components": "@/components",
16+
"utils": "@/lib/utils",
17+
"ui": "@/components/ui",
18+
"lib": "@/lib",
19+
"hooks": "@/hooks"
20+
},
21+
"registries": {}
2222
}

apps/dashboard/package.json

Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
11
{
2-
"name": "dashboard",
3-
"private": true,
4-
"version": "0.0.0",
5-
"type": "module",
6-
"scripts": {
7-
"dev": "vite",
8-
"build": "tsc -b && vite build",
9-
"lint": "biome check",
10-
"preview": "vite preview",
11-
"type-check": "tsc -p tsconfig.app.json --noEmit",
12-
"check": "pnpm type-check && biome check --write"
13-
},
14-
"dependencies": {
15-
"@cascade-fyi/splits-sdk": "workspace:*",
16-
"@cascade-fyi/splits-sdk-evm": "workspace:*",
17-
"@coinbase/wallet-sdk": "^4.3.7",
18-
"@radix-ui/react-alert-dialog": "^1.1.15",
19-
"@radix-ui/react-dialog": "^1.1.15",
20-
"@radix-ui/react-dropdown-menu": "^2.1.16",
21-
"@radix-ui/react-label": "^2.1.8",
22-
"@radix-ui/react-separator": "^1.1.8",
23-
"@radix-ui/react-slot": "^1.2.4",
24-
"@radix-ui/react-tooltip": "^1.2.8",
25-
"@solana/client": "^1.0.0-rc.2",
26-
"@solana/react-hooks": "^1.0.0-rc.3",
27-
"@tailwindcss/vite": "^4.1.17",
28-
"@tanstack/react-query": "^5.90.11",
29-
"@tanstack/react-table": "^8.21.3",
30-
"class-variance-authority": "^0.7.1",
31-
"clsx": "^2.1.1",
32-
"lucide-react": "^0.554.0",
33-
"react": "^19.2.0",
34-
"react-dom": "^19.2.0",
35-
"react-hook-form": "^7.66.1",
36-
"react-router": "^7.9.6",
37-
"sonner": "^2.0.7",
38-
"tailwind-merge": "^3.4.0",
39-
"tailwindcss": "^4.1.17",
40-
"viem": "^2.41.2",
41-
"wagmi": "^3.0.2",
42-
"zod": "^4.1.12"
43-
},
44-
"devDependencies": {
45-
"@types/node": "^24.10.1",
46-
"@types/react": "^19.2.7",
47-
"@types/react-dom": "^19.2.3",
48-
"@vitejs/plugin-react": "^5.1.1",
49-
"babel-plugin-react-compiler": "^1.0.0",
50-
"shadcn": "^3.5.0",
51-
"tw-animate-css": "^1.4.0",
52-
"typescript": "~5.9.3",
53-
"vite": "npm:rolldown-vite@7.2.5"
54-
}
2+
"name": "dashboard",
3+
"private": true,
4+
"version": "0.0.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "tsc -b && vite build",
9+
"lint": "biome check",
10+
"preview": "vite preview",
11+
"type-check": "tsc -p tsconfig.app.json --noEmit",
12+
"check": "pnpm type-check && biome check --write"
13+
},
14+
"dependencies": {
15+
"@cascade-fyi/splits-sdk": "workspace:*",
16+
"@cascade-fyi/splits-sdk-evm": "workspace:*",
17+
"@coinbase/wallet-sdk": "^4.3.7",
18+
"@radix-ui/react-alert-dialog": "^1.1.15",
19+
"@radix-ui/react-dialog": "^1.1.15",
20+
"@radix-ui/react-dropdown-menu": "^2.1.16",
21+
"@radix-ui/react-label": "^2.1.8",
22+
"@radix-ui/react-separator": "^1.1.8",
23+
"@radix-ui/react-slot": "^1.2.4",
24+
"@radix-ui/react-tooltip": "^1.2.8",
25+
"@solana/client": "^1.0.0-rc.2",
26+
"@solana/react-hooks": "^1.0.0-rc.3",
27+
"@tailwindcss/vite": "^4.1.17",
28+
"@tanstack/react-query": "^5.90.11",
29+
"@tanstack/react-table": "^8.21.3",
30+
"class-variance-authority": "^0.7.1",
31+
"clsx": "^2.1.1",
32+
"lucide-react": "^0.554.0",
33+
"react": "^19.2.0",
34+
"react-dom": "^19.2.0",
35+
"react-hook-form": "^7.66.1",
36+
"react-router": "^7.9.6",
37+
"sonner": "^2.0.7",
38+
"tailwind-merge": "^3.4.0",
39+
"tailwindcss": "^4.1.17",
40+
"viem": "^2.41.2",
41+
"wagmi": "^3.0.2",
42+
"zod": "^4.1.12"
43+
},
44+
"devDependencies": {
45+
"@types/node": "^24.10.1",
46+
"@types/react": "^19.2.7",
47+
"@types/react-dom": "^19.2.3",
48+
"@vitejs/plugin-react": "^5.1.1",
49+
"babel-plugin-react-compiler": "^1.0.0",
50+
"shadcn": "^3.5.0",
51+
"tw-animate-css": "^1.4.0",
52+
"typescript": "~5.9.3",
53+
"vite": "npm:rolldown-vite@7.2.5"
54+
}
5555
}

apps/dashboard/project.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
"name": "dashboard",
3-
"$schema": "../../node_modules/nx/schemas/project-schema.json",
4-
"sourceRoot": "apps/dashboard/src",
5-
"projectType": "application",
6-
"tags": ["type:app", "platform:web", "scope:apps"],
7-
"targets": {
8-
"build": {
9-
"dependsOn": ["^build"],
10-
"inputs": ["production", "^production"],
11-
"outputs": ["{projectRoot}/dist"]
12-
},
13-
"dev": {
14-
"cache": false
15-
},
16-
"type-check": {
17-
"inputs": ["default", "^production"]
18-
},
19-
"preview": {
20-
"dependsOn": ["build"],
21-
"cache": false
22-
}
23-
},
24-
"implicitDependencies": [
25-
"@cascade-fyi/splits-sdk",
26-
"@cascade-fyi/splits-sdk-evm"
27-
]
2+
"name": "dashboard",
3+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
4+
"sourceRoot": "apps/dashboard/src",
5+
"projectType": "application",
6+
"tags": ["type:app", "platform:web", "scope:apps"],
7+
"targets": {
8+
"build": {
9+
"dependsOn": ["^build"],
10+
"inputs": ["production", "^production"],
11+
"outputs": ["{projectRoot}/dist"]
12+
},
13+
"dev": {
14+
"cache": false
15+
},
16+
"type-check": {
17+
"inputs": ["default", "^production"]
18+
},
19+
"preview": {
20+
"dependsOn": ["build"],
21+
"cache": false
22+
}
23+
},
24+
"implicitDependencies": [
25+
"@cascade-fyi/splits-sdk",
26+
"@cascade-fyi/splits-sdk-evm"
27+
]
2828
}

0 commit comments

Comments
 (0)