UNPKG

@drift-labs/sdk-browser

Version:
9 lines (8 loc) 439 B
import { Program, Event } from '@coral-xyz/anchor'; import { CuUsageEvent } from './types'; export declare function parseLogs(program: Program, logs: string[], programId?: string): Event[]; export declare function parseLogsWithRaw(program: Program, logs: string[], programId?: string): { events: Event[]; rawLogs: string[]; }; export declare function parseLogsForCuUsage(logs: string[], programId?: string): Event<CuUsageEvent>[];