import { GoldRushClient } from "@covalenthq/client-sdk";
const ApiServices = async () => {
const client = new GoldRushClient();
const resp = await client
.BaseService
.getAddressActivity({
chainName: "eth-mainnet",
walletAddress: "0x..."
});
console.log(resp.data);
};
ApiServices();