# Binaries
# 忽略编译生成的二进制文件
bin/
chain-sql
main

# Object files and caches
# 忽略临时对象文件和缓存
*.o
*.a
*.so
*.dylib
*.dll

# Go module
# 忽略 vendor 目录（除非你明确使用 vendor模式）
vendor/

# IDE specific files
# 忽略 VSCode, JetBrains 等 IDE 的配置文件
.vscode/
.idea/
*.iml
*.swp
*.swo
.DS_Store

# Local configuration
# 忽略本地的配置文件（包含私钥或数据库密码），只提交 config.example.yaml
configs/config.yaml
!configs/config.example.yaml

# Logs
# 忽略运行日志
*.log
logs/

# Docker
# 忽略 Docker 构建产物
docker-compose.override.yml

# Solidity / Hardhat / Truffle
# 忽略合约编译产物
artifacts/
cache/
build/
node_modules/
npm-debug.log
yarn-error.log

# Cursor specific
.cursor/

go.sum