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