// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.4; abstract contract Version { /** * @dev Get the version of the contract. * @notice Contract version. * * @return The version of the the contract. */ // DO NOT CHANGE // Comments block below is used by release-please to automatically update the version in this file. // x-release-please-start-version string public constant VERSION = "0.16.2"; // x-release-please-end }