Remove Rootstock integration and add generic EVM balance monitoring#124
Merged
bernd2022 merged 5 commits intoFeb 6, 2026
Merged
Conversation
- Remove Rootstock blockchain integration (client, service, module, config, enum) - Add database-configurable EVM balance monitoring system - Support monitoring of native coins and ERC20 tokens for any EVM chain - Add initial configuration for Ethereum, Polygon, and Citrea - Keep existing Citrea balance tracking in monitoring_balance for now
5cf57f0 to
0e07637
Compare
davidleomay
reviewed
Feb 6, 2026
davidleomay
approved these changes
Feb 6, 2026
2 tasks
TaprootFreak
pushed a commit
that referenced
this pull request
May 26, 2026
…ce casing (#193) An external sync client polls POST /v1/support/db with hardcoded table/column names that are out of date, causing ~6 PG errors/min: 1. `SELECT * FROM "asset"` — table was renamed to asset_account in migration 1715583133193. Create a view alias so old queries work. 2. `monitoring_balance.rootstockBalance` sent unquoted — Postgres case-folds to lowercase, doesn't match the mixed-case column. Column is unused by the app (Rootstock removed in PR #124). Rename to lowercase for compat. Fixes #192
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
monitoring_balancefor now (to be migrated later after testing)Test plan