Skip to content

Commit

Permalink
Aug 5, 2024, 7:58 PM
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Aug 5, 2024
1 parent b3869bf commit e7b35bb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/adapters/astar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,13 +223,14 @@ class BaseAstarAdapter extends BaseCrossChainAdapter {

public subscribeTokenBalance(
token: string,
address: string
address: string,
tokenId?: string
): Observable<BalanceData> {
if (!this.balanceAdapter) {
throw new ApiNotFound(this.chain.id);
}

return this.balanceAdapter.subscribeBalance(token, address);
return this.balanceAdapter.subscribeBalance(token, address, tokenId);
}

public subscribeMaxInput(
Expand Down

0 comments on commit e7b35bb

Please sign in to comment.