Hoping somone could explain what's going on here.
I am getting this error Error: couldn't unmarshal an argument. Ensure arguments are valid and properly formatted.
with this code, seems like something is wrong with xAddresses format?
const xAddresses:any = xchain.keyChain().getAddresses();
**const utxos:any = await xchain.getUTXOs(xAddresses)**
.then(element => {console.log("sucess" + element)})
.catch(Error => {console.log("Error in createSingedTX: " + Error)});