diff --git a/contracts/SamWitchVRF.sol b/contracts/SamWitchVRF.sol index d44cd33..9741c18 100644 --- a/contracts/SamWitchVRF.sol +++ b/contracts/SamWitchVRF.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.24; +pragma solidity >=0.8.20; import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; diff --git a/contracts/interfaces/ISamWitchVRF.sol b/contracts/interfaces/ISamWitchVRF.sol index b95af0f..d5cc8e2 100644 --- a/contracts/interfaces/ISamWitchVRF.sol +++ b/contracts/interfaces/ISamWitchVRF.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.24; +pragma solidity >=0.8.20; interface ISamWitchVRF { event ConsumerRegistered(address consumer); diff --git a/contracts/interfaces/ISamWitchVRFConsumer.sol b/contracts/interfaces/ISamWitchVRFConsumer.sol index d5f1e92..2a6e20b 100644 --- a/contracts/interfaces/ISamWitchVRFConsumer.sol +++ b/contracts/interfaces/ISamWitchVRFConsumer.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.24; +pragma solidity >=0.8.20; interface ISamWitchVRFConsumer { /** diff --git a/contracts/test/TestVRFConsumer.sol b/contracts/test/TestVRFConsumer.sol index e9d91f7..f300ce9 100644 --- a/contracts/test/TestVRFConsumer.sol +++ b/contracts/test/TestVRFConsumer.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.24; +pragma solidity >=0.8.20; import {ISamWitchVRFConsumer} from "../interfaces/ISamWitchVRFConsumer.sol"; import {ISamWitchVRF} from "../interfaces/ISamWitchVRF.sol"; diff --git a/package.json b/package.json index 0cda1b7..d6d2bf7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@samwitch/vrf", - "version": "0.0.1", + "version": "0.0.2", "author": "0xSamWitch ", "repository": "https://github.com/PaintSwap/samwitch-vrf.git", "description": "Provable random number generator using an Elliptic Curve VRF",