Get history end user

The method supports getting data history of all transactions invoked through TronSave.

const handleGetHistory=async(address, from, to, page, pageSize)=>{
    const dataHistory = await tronSave.getHistory(address, from, to, page, pageSize)
    console.log(JSON.parse(dataHistory))
}

Last updated