UNPKG

@marinade.finance/kamino-sdk

Version:
13 lines (12 loc) 425 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; export interface SignTermsArgs { signature: Array<number>; } export interface SignTermsAccounts { owner: PublicKey; ownerSignatureState: PublicKey; systemProgram: PublicKey; rent: PublicKey; } export declare const layout: any; export declare function signTerms(args: SignTermsArgs, accounts: SignTermsAccounts): TransactionInstruction;