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