Fetch transactions of a wallet.
import { Mobula } from "mobula-sdk"; const mobula = new Mobula("YOUR_API_KEY_HERE"); mobula .fetchWalletTransactions({ wallet: "0x77A89C51f106D6cD547542a3A83FE73cB4459135", }) .then((response) => { console.log(response); }) .catch((error) => { console.error("Error:", error); });
Learn more about the parameters in the REST API documentation