mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* feat: Support multiple crypto wallets with same token Allows users to import multiple wallets containing the same cryptocurrency (e.g., ETH on different wallet addresses). Changes: - Add wallet_address column to coinstats_accounts - Update uniqueness validation to include wallet_address - Extract and store wallet address in WalletLinker - Add composite unique index on [item_id, account_id, wallet_address] - Add tests for multi-wallet support and backwards compatibility Users can now have: - ETH (0xAAA...) → "Ethereum (0xAA...AA)" - ETH (0xBBB...) → "Ethereum (0xBB...BB)" Backwards compatible: existing accounts with wallet_address: nil continue to work. * style: Fix array bracket spacing in migration * chore: Update schema.rb with wallet_address column and index Add the missing wallet_address column and composite unique index to db/schema.rb for CI compatibility with db:schema:load * test: Add test for wallet deletion with same token different addresses Verifies that deleting one wallet does not affect other wallets that share the same token but have different addresses. Addresses review comment from @EthanC via @jjmata --------- Signed-off-by: Juan José Mata <juanjo.mata@gmail.com> Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
122 lines
2.0 KiB
Plaintext
122 lines
2.0 KiB
Plaintext
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
#
|
|
# If you find yourself ignoring temporary files generated by your text editor
|
|
# or operating system, you probably want to add a global ignore instead:
|
|
# git config --global core.excludesfile '~/.gitignore_global'
|
|
|
|
# Ignore bundler config.
|
|
/.bundle
|
|
/vendor/bundle
|
|
|
|
# Ignore all environment files (except templates).
|
|
/.env*
|
|
!/.env*.erb
|
|
!.env*.example
|
|
|
|
# Ignore all logfiles and tempfiles.
|
|
/log/*
|
|
/tmp/*
|
|
!/log/.keep
|
|
!/tmp/.keep
|
|
|
|
# Ignore pidfiles, but keep the directory.
|
|
/tmp/pids/*
|
|
!/tmp/pids/
|
|
!/tmp/pids/.keep
|
|
|
|
# Ignore storage (uploaded files in development and any SQLite databases).
|
|
/storage/*
|
|
!/storage/.keep
|
|
/tmp/storage/*
|
|
!/tmp/storage/
|
|
!/tmp/storage/.keep
|
|
/db/development.sqlite3
|
|
|
|
/public/assets
|
|
|
|
# Ignore master key for decrypting credentials and more.
|
|
/config/master.key
|
|
|
|
/app/assets/builds/*
|
|
!/app/assets/builds/.keep
|
|
|
|
# Ignore Jetbrains IDEs
|
|
.idea
|
|
|
|
# Ignore VS Code
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/*.code-snippets
|
|
|
|
# Ignore macOS specific files
|
|
*/.DS_Store
|
|
.DS_Store
|
|
|
|
# Ignore .devcontainer files
|
|
compose-dev.yaml
|
|
|
|
# Ignore asdf ruby version file
|
|
.tool-versions
|
|
|
|
# Ignore GCP keyfile
|
|
gcp-storage-keyfile.json
|
|
|
|
coverage
|
|
.cursorrules
|
|
.cursor/rules/structure.mdc
|
|
.cursor/rules/agent.mdc
|
|
|
|
# Ignore node related files
|
|
node_modules
|
|
|
|
compose.yml
|
|
|
|
plaid_test_accounts/
|
|
|
|
# Added by Claude Task Master
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
dev-debug.log
|
|
# Dependency directories
|
|
node_modules/
|
|
# Environment variables
|
|
.env
|
|
# Editor directories and files
|
|
.vscode
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
*.roo*
|
|
# OS specific
|
|
# Task files
|
|
.taskmaster/
|
|
tasks.json
|
|
.taskmaster/tasks/
|
|
.taskmaster/reports/
|
|
.taskmaster/state.json
|
|
*.mcp.json
|
|
scripts/
|
|
.cursor/mcp.json
|
|
.taskmasterconfig
|
|
.windsurfrules
|
|
.cursor/rules/dev_workflow.mdc
|
|
.cursor/rules/taskmaster.mdc
|
|
|
|
|
|
# Auto Claude data directory
|
|
.auto-claude/
|
|
|
|
# Auto Claude generated files
|
|
.auto-claude-security.json
|
|
.auto-claude-status
|
|
.claude_settings.json
|
|
.worktrees/
|
|
.security-key
|
|
logs/security/
|