UNPKG

@nosana/kit

Version:

Nosana KIT

14 lines 753 B
import { type Address, type TransactionSigner } from '@solana/kit'; import type { getAssignInstruction } from '@nosana/jobs-program'; import type { InstructionsHelperParams } from './types.js'; export type AssignParams = { market: Address; timeout: number | bigint; ipfsHash: string; node: Address; payer?: TransactionSigner; }; export type AssignInstruction = ReturnType<typeof getAssignInstruction>; export type Assign = (params: AssignParams) => Promise<AssignInstruction>; export declare function assign({ market, timeout, ipfsHash, node, payer }: AssignParams, { config, deps, client, getRequiredWallet, getStaticAccounts, getNosATA, }: InstructionsHelperParams): Promise<AssignInstruction>; //# sourceMappingURL=assign.d.ts.map