/// import { BN } from "@project-serum/anchor"; import { PublicKey } from "@solana/web3.js"; export interface TransferRecord { owner: PublicKey; bump: number; transferType: number; underlyingAmount: BN; stableAmount: BN; lpTokenAmount: BN; modifiedAt: BN; } export interface TransferQueue { optionVault: PublicKey; transferType: number; queueBump: number; totalUnderlyingAmount: BN; totalStableAmount: BN; totalLpTokenAmount: BN; records: PublicKey[]; } //# sourceMappingURL=queue.d.ts.map