We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
client.rpc.getAssetsByOwner
We are trying to retrieve the nativeBalance from the client but it is not returning it.
The type only contains the following but direct RPC returns nativeBalance, please advise
nativeBalance
type GetAssetResponseList = { grand_total?: number; total: number; limit: number; page: number; items: GetAssetResponse[]; };
The text was updated successfully, but these errors were encountered:
Created #162 to fix this.
In the mean time you can access it like so:
const nativeBalance = (response as any).nativeBalance
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
We are trying to retrieve the nativeBalance from the client but it is not returning it.
The type only contains the following but direct RPC returns
nativeBalance
, please adviseThe text was updated successfully, but these errors were encountered: