UNPKG

@drift-labs/sdk

Version:
18 lines (16 loc) 428 B
import { Connection, PublicKey } from '@solana/web3.js'; import { BulkAccountLoader } from '../accounts/bulkAccountLoader'; export type SerumMarketSubscriberConfig = { connection: Connection; programId: PublicKey; marketAddress: PublicKey; accountSubscription: | { // enables use to add web sockets in the future type: 'polling'; accountLoader: BulkAccountLoader; } | { type: 'websocket'; }; };