UNPKG

@drift-labs/sdk

Version:
14 lines (13 loc) 393 B
import { Connection, PublicKey } from '@solana/web3.js'; import { BulkAccountLoader } from '../accounts/bulkAccountLoader'; export type SerumMarketSubscriberConfig = { connection: Connection; programId: PublicKey; marketAddress: PublicKey; accountSubscription: { type: 'polling'; accountLoader: BulkAccountLoader; } | { type: 'websocket'; }; };