AccountApi.getTokenBalances incorrect address property name in Erc20TokenBalance type

Hello,
I am using this function to get user erc20 token balances:

const accountService = new AccountApi(apiConfig);
const tokens = await accountService.getTokenBalances(account.value, ChainList.Kovan);

This function should return Promise<Erc20TokenBalance[]>. The return type should have a field tokenAddress. However I found out, that the field is actually named token_address. Iā€™m using the typescript fetch client.

Not a big deal, just to let you know. Have a nice day!:slight_smile: