QueryMsg: {
    config: {};
} | {
    state: {};
} | {
    get_owner: {};
} | {
    input_price: {
        amount: Uint128;
        direction: Direction;
    };
} | {
    output_price: {
        amount: Uint128;
        direction: Direction;
    };
} | {
    input_amount: {
        amount: Uint128;
        direction: Direction;
    };
} | {
    output_amount: {
        amount: Uint128;
        direction: Direction;
    };
} | {
    input_twap: {
        amount: Uint128;
        direction: Direction;
    };
} | {
    output_twap: {
        amount: Uint128;
        direction: Direction;
    };
} | {
    spot_price: {};
} | {
    twap_price: {
        interval: number;
    };
} | {
    underlying_price: {};
} | {
    underlying_twap_price: {
        interval: number;
    };
} | {
    calc_fee: {
        quote_asset_amount: Uint128;
    };
} | {
    is_over_spread_limit: {};
} | {
    is_over_fluctuation_limit: {
        base_asset_amount: Uint128;
        direction: Direction;
    };
}

©2020 - 2023 Oraichain Foundation