diff --git a/sdk/zksync.js/src/wallet.ts b/sdk/zksync.js/src/wallet.ts index 3eef4db922..9e69f5b554 100644 --- a/sdk/zksync.js/src/wallet.ts +++ b/sdk/zksync.js/src/wallet.ts @@ -1250,7 +1250,7 @@ export class Wallet { async getEthereumBalance(token: TokenLike): Promise { try { - return getEthereumBalance(this.ethSigner.provider, this.provider, this.cachedAddress, token); + return await getEthereumBalance(this.ethSigner.provider, this.provider, this.cachedAddress, token); } catch (e) { this.modifyEthersError(e); }