@nosana/kit
Version:
Nosana KIT
10 lines • 547 B
TypeScript
import type { Address } from '@solana/kit';
import type { getQuitInstruction } from '@nosana/jobs-program';
import type { InstructionsHelperParams } from './types.js';
export type QuitParams = {
run: Address;
};
export type QuitInstruction = ReturnType<typeof getQuitInstruction>;
export type Quit = (params: QuitParams) => Promise<QuitInstruction>;
export declare function quit({ run }: QuitParams, { deps, client, getRequiredWallet, getStaticAccounts }: InstructionsHelperParams): Promise<QuitInstruction>;
//# sourceMappingURL=quit.d.ts.map