Skip to content

Commit 9b6deef

Browse files
authored
Merge pull request #49 from vespr-wallet/vlad/update-account-addresses-query-params
fix: update the AccountAddressesQueryParams interface
2 parents 2505e39 + 38a45e2 commit 9b6deef

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@maestro-org/typescript-sdk",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"description": "TypeScript SDK for the Maestro Dapp Platform",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

src/api/accounts/type.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ export interface AccountAddressesQueryParams {
1717
* @memberof AccountAddressesQueryParams
1818
*/
1919
cursor?: string | null;
20+
/**
21+
* Include addresses that have been seen on-chain but have no balance.
22+
* @type {boolean | null}
23+
* @memberof AccountAddressesQueryParams
24+
*/
25+
include_empty?: boolean | null;
2026
}
2127

2228
/**

0 commit comments

Comments
 (0)