Skip to content

Commit

Permalink
chore: fix AMO contracts version
Browse files Browse the repository at this point in the history
  • Loading branch information
zugdev committed Sep 21, 2024
1 parent 02bbe8f commit 4bdd75c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/contracts/src/dollar/amo/AaveAmo.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.19;
pragma solidity 0.8.19;

import {UbiquityAmoMinter} from "../core/UbiquityAmoMinter.sol";
import {IAmo} from "../interfaces/IAmo.sol";
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/src/dollar/core/UbiquityAmoMinter.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.19;
pragma solidity 0.8.19;

import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/src/dollar/interfaces/IAaveAmo.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity 0.8.19;

interface IAaveAmo {
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/src/dollar/interfaces/IAmo.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity 0.8.19;

interface IAmo {
/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.19;
pragma solidity 0.8.19;

interface IUbiquityAmoMinter {
/**
Expand Down

0 comments on commit 4bdd75c

Please sign in to comment.