βοΈgetLatestTxsOfAddress
Last updated
const {Explorer} = require("@nest25/explorer-lib")
const explorer = new Explorer('', 'testnet');
async function main (){
const response = await explorer.getLatestTxsOfAddress(["0x13e5c9bA2Cf25a627340498168b47EAB6f685A6A"]);
console.log("latest txs of a address", response);
}
main() { code: 1, result: [] }