@frakt-protocol/frakt-sdk
Version:
Frakt SDK for interacting with frakt.xyz protocols
16 lines (15 loc) • 485 B
TypeScript
import { web3 } from '@project-serum/anchor';
declare type ClaimGemFarmIx = (params: {
programId: web3.PublicKey;
connection: web3.Connection;
user: web3.PublicKey;
gemFarm: web3.PublicKey;
farm: web3.PublicKey;
nftMint: web3.PublicKey;
loan: web3.PublicKey;
isDegod: boolean;
rewardAMint: web3.PublicKey;
rewardBMint: web3.PublicKey;
}) => Promise<web3.TransactionInstruction[]>;
export declare const claimGemFarmIx: ClaimGemFarmIx;
export {};