Rebalancing
getRebalanceFrequency
Get rebalance frequency/tier for a wallet. Determines how often the wallet can be rebalanced based on tier.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
getRebalanceFrequency(walletAddress: string): Promise<RebalanceFrequencyResponse>
| Parameter | Type | Required | Description |
|---|---|---|---|
walletAddress | string | ✅ | Smart wallet address |
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);