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.
getRebalanceFrequency(walletAddress: string): Promise<RebalanceFrequencyResponse>
walletAddress
string
interface RebalanceFrequencyResponse { success: boolean; walletAddress: string; tier: string; frequency: number; description?: string; }
const frequency = await sdk.getRebalanceFrequency("0x..."); console.log("Tier:", frequency.tier); console.log("Max rebalances/day:", frequency.frequency);