Skip to content

Commit

Permalink
watcher: terra2 to use explorer watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
panoel committed Jan 2, 2024
1 parent 9aa6492 commit aec2654
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions watcher/src/watchers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ export function makeFinalizedWatcher(chainName: ChainName): Watcher {
return new InjectiveExplorerWatcher();
} else if (chainName === 'sei') {
return new SeiExplorerWatcher();
} else if (chainName === 'terra') {
return new TerraExplorerWatcher('terra');
} else if (chainName === 'terra2' || chainName === 'xpla') {
} else if (chainName === 'terra' || chainName === 'terra2') {
return new TerraExplorerWatcher(chainName);
} else if (chainName === 'xpla') {
return new CosmwasmWatcher(chainName);
} else if (chainName === 'sui') {
return new SuiWatcher();
Expand Down

0 comments on commit aec2654

Please sign in to comment.