Skip to content

Commit

Permalink
pragma solidity >=0.8.20
Browse files Browse the repository at this point in the history
  • Loading branch information
doublesharp committed Feb 25, 2024
1 parent 8fede07 commit 3c6d0c2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contracts/SamWitchVRF.sol
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISamWitchVRF.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
pragma solidity >=0.8.20;

interface ISamWitchVRF {
event ConsumerRegistered(address consumer);
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISamWitchVRFConsumer.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
pragma solidity >=0.8.20;

interface ISamWitchVRFConsumer {
/**
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/TestVRFConsumer.sol
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@samwitch/vrf",
"version": "0.0.1",
"version": "0.0.2",
"author": "0xSamWitch <[email protected]>",
"repository": "https://github.com/PaintSwap/samwitch-vrf.git",
"description": "Provable random number generator using an Elliptic Curve VRF",
Expand Down

0 comments on commit 3c6d0c2

Please sign in to comment.