interface ContractState {
    contractInfo: undefined | ContractInfoV2;
    longBookList: LongBook[];
    nextOrderId: bigint;
    pairList: Pair[];
    priceList: ContractPairPrices[];
    shortBookList: ShortBook[];
    triggeredOrdersList: Order[];
}

Properties

contractInfo: undefined | ContractInfoV2
longBookList: LongBook[]
nextOrderId: bigint
pairList: Pair[]
priceList: ContractPairPrices[]
shortBookList: ShortBook[]
triggeredOrdersList: Order[]