UNPKG

@nosana/kit

Version:

Nosana KIT

12 lines 690 B
import type { Address, TransactionSigner } from '@solana/kit'; import type { getExtendInstruction } from '@nosana/jobs-program'; import type { InstructionsHelperParams } from './types.js'; export type ExtendParams = { job: Address; timeout: number | bigint; payer?: TransactionSigner; }; export type ExtendInstruction = ReturnType<typeof getExtendInstruction>; export type Extend = (params: ExtendParams) => Promise<ExtendInstruction>; export declare function extend({ job, timeout, payer }: ExtendParams, { config, deps, client, get, getRequiredWallet, getStaticAccounts, getNosATA, }: InstructionsHelperParams): Promise<ExtendInstruction>; //# sourceMappingURL=extend.d.ts.map