Vana SDK - v0.1.0
    Preparing search index...

    Interface GetUserTrustedServersParams

    Parameters for getUserTrustedServers with dual-mode support

    interface GetUserTrustedServersParams {
        user: `0x${string}`;
        mode?: TrustedServerQueryMode;
        subgraphUrl?: string;
        limit?: number;
        offset?: number;
    }
    Index

    Properties

    user: `0x${string}`

    User address to query

    Query mode: 'subgraph' (fast, requires subgraph), 'rpc' (direct contract), or 'auto' (tries subgraph first)

    subgraphUrl?: string

    Subgraph URL (required for subgraph mode)

    limit?: number

    Pagination limit (applies to RPC mode)

    offset?: number

    Pagination offset (applies to RPC mode)