Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
getFirstTopup(walletAddress: string, chainId: number): Promise<FirstTopupResponse>
walletAddress
string
chainId
number
interface FirstTopupResponse { success: boolean; walletAddress: string; date: string; amount?: string; chainId?: number; }
const firstTopup = await sdk.getFirstTopup("0x...", 8453); console.log("First deposit date:", firstTopup.date); console.log("Amount:", firstTopup.amount);