Skip to content

Commit

Permalink
added get_paginated_addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
barakfireblocks committed Nov 14, 2023
1 parent e5ef647 commit c87bd51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fireblocks_sdk/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -2111,7 +2111,7 @@ def get_paginated_addresses(self, vault_account_id, asset_id, limit=500, before=
after (str, optional): curser for the next paging
"""
path = f"/v1/vault/accounts/${vault_account_id}/${asset_id}/addresses_paginated"
path = f"/v1/vault/accounts/{vault_account_id}/{asset_id}/addresses_paginated"
params = {}
if limit:
params["limit"] = limit
Expand Down

0 comments on commit c87bd51

Please sign in to comment.