hadeswap-sdk
Version:
HadeSwap SDK for interacting with protocol
8 lines (7 loc) • 342 B
TypeScript
import { web3 } from '@project-serum/anchor';
import { FraktMarket, OracleFloor, WhitelistEntry } from '../../types';
export declare const getAllProgramAccounts: (programId: web3.PublicKey, connection: web3.Connection) => Promise<{
fraktMarkets: FraktMarket[];
whitelistEntries: WhitelistEntry[];
oracleFloors: OracleFloor[];
}>;