diff --git a/package.json b/package.json index 5811697..48ba883 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@maestro-org/typescript-sdk", - "version": "1.6.1", + "version": "1.6.2", "description": "TypeScript SDK for the Maestro Dapp Platform", "main": "dist/index.js", "module": "dist/index.mjs", 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; } /**