@neutral-trade/sdk - v0.3.11
    Preparing search index...

    Interface NeutralTradeConfig

    interface NeutralTradeConfig {
        bundleCluster?: BundleCluster;
        fallbackPrices?: Partial<Record<SupportedToken, number>>;
        includeBuiltInVaults?: boolean;
        registry?: VaultRegistryEntry[];
        registryUrl?: string;
        rpcUrl: string;
    }
    Index

    Properties

    bundleCluster?: BundleCluster

    Bundle program cluster selector. Defaults to 'mainnet'.

    fallbackPrices?: Partial<Record<SupportedToken, number>>

    Optional fallback prices map. Prices are fetched from Pyth Network first; fallback is used only if Pyth returns incomplete data

    includeBuiltInVaults?: boolean

    If true, include built-in vault registry for bundleCluster (mainnet vs devnet fixtures). Defaults to true.

    registry?: VaultRegistryEntry[]

    Optional local registry entries. Applied after built-in configs and before registryUrl (if provided).

    registryUrl?: string

    Optional registry URL to fetch vault configurations from. If provided, fetched vaults override merged built-in/local entries.

    rpcUrl: string