UNPKG

@kamino-finance/scope-sdk

Version:
20 lines 529 B
import { Address } from '@solana/kit'; export type FeedParam = { /** * The feed configuration account PDA seed */ feed?: string; /** * Scope feed configuration account pubkey */ config?: Address; }; export declare function validateFeedParam(feedParam?: FeedParam): void; export type PricesParam = FeedParam & { /** * Scope prices account */ prices?: Address; }; export declare function validatePricesParam(pricesParam?: PricesParam): void; //# sourceMappingURL=Param.d.ts.map