-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
86 lines (76 loc) · 2.35 KB
/
Copy path.gitignore
File metadata and controls
86 lines (76 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# ============================================================================
# Dependencies
# ============================================================================
node_modules
pnpm-debug.log*
yarn-error.log*
# ============================================================================
# Secrets and runtime state - NEVER COMMIT
# ============================================================================
# Per-package env files (templates use the .env.template suffix and stay tracked)
# Ignore every .env variant by default, then re-allow only the tracked templates.
# The blanket suffix rule matters: a bare `.env` pattern does NOT cover copies like
# `.env.bak`, `.env.old` or `.env.2026-07-22`, which is exactly how a real key ends
# up in a commit.
.env
.env.*
**/.env
**/.env.*
!.env.template
!.env.example
!.env.sample
!**/.env.template
!**/.env.example
!**/.env.sample
# Private keys, mnemonics, keystore exports
*.pem
*.key
*.p12
*.pfx
mnemonic
mnemonic.*
seed.*
**/keystore/
**/keystores/
# Aztec PXE and wallet state (LMDB databases - can contain encrypted secret material)
**/pxe_data*/
**/wallet_data*/
**/pxe-data*/
**/wallet-data*/
**/store/pxe/
*.mdb
# Service runtime logs
backend/.bridge-runner-logs/
**/logs/
*.log
# ============================================================================
# Hardhat build output
# ============================================================================
/cache
/artifacts
backend/cache
backend/artifacts
# ============================================================================
# Coverage / typechain
# ============================================================================
/coverage
/coverage.json
backend/coverage
backend/coverage.json
backend/typechain-types
# ============================================================================
# Aztec / Noir compile output
# ============================================================================
backend/aztec/*/codegenCache.json
backend/aztec/*/target/cache/*.vk
backend/aztec/*/target/*.json.bak
# Withdraw circuit compile output (re-generated by `pnpm b:circuit`)
backend/circuits/withdraw/target
# ============================================================================
# Package dist
# ============================================================================
backend/dist
frontend/dist
bridge-sync/dist
relay-service/dist
faucet-service/dist