@frakt-protocol/frakt-sdk
Version:
Frakt SDK for interacting with frakt.xyz protocols
13 lines (12 loc) • 398 B
TypeScript
import { web3 } from '@project-serum/anchor';
declare type userReturnLoanFromEscrowParams = (params: {
programId: web3.PublicKey;
connection: web3.Connection;
loan: web3.PublicKey;
nftMint: web3.PublicKey;
user: web3.PublicKey;
}) => Promise<{
ixs: web3.TransactionInstruction[];
}>;
export declare const userReturnLoanFromEscrow: userReturnLoanFromEscrowParams;
export {};