@frakt-protocol/frakt-sdk
Version:
Frakt SDK for interacting with frakt.xyz protocols
15 lines (14 loc) • 454 B
TypeScript
import { web3 } from '@project-serum/anchor';
declare type PutLoanToLiquidationRaffles = (params: {
programId: web3.PublicKey;
connection: web3.Connection;
admin: web3.PublicKey;
loan: web3.PublicKey;
nftMint: web3.PublicKey;
gracePeriod: number;
}) => Promise<{
ixs: web3.TransactionInstruction[];
liquidationLot: web3.Signer;
}>;
export declare const putLoanToLiquidationRaffles: PutLoanToLiquidationRaffles;
export {};