@frakt-protocol/frakt-sdk
Version:
Frakt SDK for interacting with frakt.xyz protocols
14 lines (13 loc) • 445 B
TypeScript
import { FetchBulkSuggestion, FetchWalletNfts, ProposeLoan, ProposeLoans } from './types';
declare type CreateLoansService = (props: {
apiDomain: string;
programPublicKey: string;
adminPublicKey: string;
}) => {
fetchWalletNfts: FetchWalletNfts;
fetchBulkSuggestion: FetchBulkSuggestion;
proposeLoans: ProposeLoans;
proposeLoan: ProposeLoan;
};
export declare const createLoansService: CreateLoansService;
export {};