@leapwallet/embedded-wallet-sdk-react
Version:
A react library for integrating metamask snaps on a cosmos dApp
12 lines (11 loc) • 408 B
TypeScript
import { ActivityCardContent } from "@leapwallet/embedded-wallet-sdk-core";
export declare function useActivity(address: string, chainId: string, restUrl?: string): import("@tanstack/react-query").UseInfiniteQueryResult<{
sender: {
total: number;
activity: ActivityCardContent[];
};
recipient: {
total: number;
activity: ActivityCardContent[];
};
}, unknown>;