Returns the total units and depth for each trade asset
OK
trade account asset with "~" separator
"BTC~BTC"
total units of trade asset
total depth of trade asset
const response = await fetch('https://thor.nownodes.io/thorchain/trade/units', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "asset": "BTC~BTC", "units": "text", "depth": "text" } ]