{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/contracts/core/connext/helpers/PriceOracle.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "abstract contract PriceOracle {\n  /// @notice Indicator that this is a PriceOracle contract (for inspection)\n  bool public constant isPriceOracle = true;\n\n  /**\n   * @notice Get the price of a token\n   * @param token The token to get the price of\n   * @return The asset price mantissa (scaled by 1e18).\n   *  Zero means the price is unavailable.\n   */\n  function getTokenPrice(address token) external view virtual returns (uint256);\n}"
}