From 5910e264482358680bac0a324ea86ecf58a8163b Mon Sep 17 00:00:00 2001 From: Dospore Date: Tue, 14 May 2024 08:24:08 +0200 Subject: [PATCH] Add QueryParam to params list --- packages/core/src/hooks/useEtherBalance.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/hooks/useEtherBalance.ts b/packages/core/src/hooks/useEtherBalance.ts index 3550c0c90..397c0c903 100644 --- a/packages/core/src/hooks/useEtherBalance.ts +++ b/packages/core/src/hooks/useEtherBalance.ts @@ -9,6 +9,7 @@ import { Contract } from 'ethers' /** * Returns ether balance of a given account. * @param address address of an account + * @param queryParams see {@link QueryParams} * @returns a balance of the account which is BigNumber or `undefined` if not connected to network or address is a falsy value * @public *