From 93299bcdd83ad6cdb725b0d523c8b0f3e66a90f4 Mon Sep 17 00:00:00 2001 From: Vladut Angel Stan Date: Wed, 9 Oct 2024 16:07:25 +0300 Subject: [PATCH] fix: update the AccountAddressesQueryParams interface --- src/api/accounts/type.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/api/accounts/type.ts b/src/api/accounts/type.ts index df29ef8..6a5d44e 100644 --- a/src/api/accounts/type.ts +++ b/src/api/accounts/type.ts @@ -17,6 +17,12 @@ export interface AccountAddressesQueryParams { * @memberof AccountAddressesQueryParams */ cursor?: string | null; + /** + * Include addresses that have been seen on-chain but have no balance. + * @type {boolean | null} + * @memberof AccountAddressesQueryParams + */ + include_empty?: boolean | null; } /**