UNPKG

@drift-labs/sdk-browser

Version:
11 lines (10 loc) 479 B
import { PublicKey } from '@solana/web3.js'; import { PhoenixV1FulfillmentConfigAccount } from '../types'; import { DriftClient } from '../driftClient'; export declare class PhoenixFulfillmentConfigMap { driftClient: DriftClient; map: Map<number, PhoenixV1FulfillmentConfigAccount>; constructor(driftClient: DriftClient); add(marketIndex: number, phoenixMarketAddress: PublicKey): Promise<void>; get(marketIndex: number): PhoenixV1FulfillmentConfigAccount; }