coboFetch('GET', '/v1/custody/internal_address_info_batch/',
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
).then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});