@frakt-protocol/frakt-sdk
Version:
Frakt SDK for interacting with frakt.xyz protocols
14 lines (13 loc) • 515 B
TypeScript
import { web3 } from '@project-serum/anchor';
declare type GetLotTicketByStaking = (params: {
programId: web3.PublicKey;
connection: web3.Connection;
user: web3.PublicKey;
admin: web3.PublicKey;
liquidationLot: web3.PublicKey;
attemptsNftMint: web3.PublicKey;
fraktNftStake: web3.PublicKey;
sendTxn: (transaction: web3.Transaction, signers: web3.Signer[]) => Promise<void>;
}) => Promise<web3.PublicKey>;
export declare const getLotTicketByStaking: GetLotTicketByStaking;
export {};