diff --git a/typescript/sdk/src/token/checker.ts b/typescript/sdk/src/token/checker.ts index 2b20771dc..595e73f21 100644 --- a/typescript/sdk/src/token/checker.ts +++ b/typescript/sdk/src/token/checker.ts @@ -69,7 +69,7 @@ export class HypERC20Checker extends ProxiedRouterChecker< const hypToken = this.app.router(this.app.getContracts(chain)); // Check all actual decimals are consistent - const actualChainDecimals = await this.getAllActualDecimals(); + const actualChainDecimals = await this.getEvmActualDecimals(); this.checkDecimalConsistency( chain, hypToken, @@ -128,14 +128,10 @@ export class HypERC20Checker extends ProxiedRouterChecker< } } - getChainDecimals(): Record { - return objMap(this.configMap, (_chain, config) => config.decimals); - } - private cachedAllActualDecimals: Record | undefined = undefined; - async getAllActualDecimals(): Promise> { + async getEvmActualDecimals(): Promise> { if (this.cachedAllActualDecimals) { return this.cachedAllActualDecimals; }