fix(statics): lowercase tbaseeth:waBasSepLidUSDC symbol - #9740
Merged
Merged
Conversation
Contributor
Contributor
|
|
…usdc The mixed-case token symbol broke IMS's admin resync path: it lowercases the token name before matching it against the AMS-sourced supported-token map, which preserves original casing. Any symbol containing uppercase letters fails that check, causing balance resync to silently fail. Renaming to an all-lowercase symbol side-steps the bug. Ticket: DEFI-802
sachinBitgo
force-pushed
the
sachinroy936/defi-802-fix-token-name-casing
branch
from
September 15, 2026 14:28
619dc7e to
8005e51
Compare
shivam-bitgo
approved these changes
Sep 15, 2026
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
tbaseeth:waBasSepLidUSDCtotbaseeth:wabasseplidusdc(lowercased, same name otherwise)ConsolidateTokenBalanceEventPayload.checkTokenValue()lowercases the token name before comparing it against the AMS-sourced supported-token map (which preserves original casing), so any symbol with uppercase letters fails the check and resync silently failsDependency chain
This is one of three coordinated PRs (this repo's statics rename, asset-metadata-service's
bitgo_symbolrename, and a wallet-platform config update that depends on this being published first).Test plan
coins.get('tbaseeth:wabasseplidusdc')resolves correctlywaBasSepLidUSDC(mixed-case) in statics sourceTicket: DEFI-802