@frakt-protocol/frakt-sdk
Version:
Frakt SDK for interacting with frakt.xyz protocols
9 lines (8 loc) • 307 B
TypeScript
import { web3 } from '@project-serum/anchor';
import { FarmerView, LendingStakeView } from '../../types';
declare type GetFarmAccount = (params: {
lendingStake: LendingStakeView;
connection: web3.Connection;
}) => Promise<FarmerView>;
export declare const getFarmAccount: GetFarmAccount;
export {};