interface ApiClientOptions {
    apiUrl?: string;
    cluster?: "mainnet" | "devnet";
    fetchFn?: (
        input: string | URL | Request,
        init?: RequestInit,
    ) => Promise<Response>;
}

Properties

apiUrl?: string
cluster?: "mainnet" | "devnet"
fetchFn?: (
    input: string | URL | Request,
    init?: RequestInit,
) => Promise<Response>