Type alias Pool

Pool: {
    chainId: CHAIN_IDS;
    key: `0x${string}`;
    market: Market;
    isOpened: boolean;
    strategy: `0x${string}`;
    currencyA: Currency;
    currencyB: Currency;
    currencyLp: Currency6909;
    liquidityA: {
        total: CurrencyAmount;
        reserve: CurrencyAmount;
        cancelable: CurrencyAmount;
        claimable: CurrencyAmount;
    };
    liquidityB: {
        total: CurrencyAmount;
        reserve: CurrencyAmount;
        cancelable: CurrencyAmount;
        claimable: CurrencyAmount;
    };
    totalSupply: Currency6909Amount;
    orderListA: string[];
    orderListB: string[];
    paused: boolean;
}

Type declaration