UNPKG

@nosana/kit

Version:

Nosana KIT

11 lines 579 B
import type { Address } from '@solana/kit'; import type { getStopInstruction } from '@nosana/jobs-program'; import type { InstructionsHelperParams } from './types.js'; export type StopParams = { market: Address; node?: Address; }; export type StopInstruction = ReturnType<typeof getStopInstruction>; export type Stop = (params: StopParams) => Promise<StopInstruction>; export declare function stop({ market, node }: StopParams, { deps, client, getRequiredWallet, getStaticAccounts }: InstructionsHelperParams): Promise<StopInstruction>; //# sourceMappingURL=stop.d.ts.map