UNPKG

gill

Version:

a modern javascript/typescript client library for interacting with the Solana blockchain

4 lines 715 B
import type { Address, TransactionMessageWithBlockhashLifetime, TransactionSigner, TransactionVersion } from "@solana/kit"; import type { CreateTransactionInput, Simplify } from "../../../types"; export type TransactionBuilderInput<TVersion extends TransactionVersion = "legacy", TFeePayer extends Address | TransactionSigner = TransactionSigner, TLifetimeConstraint extends TransactionMessageWithBlockhashLifetime["lifetimeConstraint"] | undefined = undefined> = Simplify<Omit<CreateTransactionInput<TVersion, TFeePayer, TLifetimeConstraint>, "version" | "instructions" | "feePayer"> & Partial<Pick<CreateTransactionInput<TVersion, TFeePayer, TLifetimeConstraint>, "version">>>; //# sourceMappingURL=types.d.ts.map