Skip to content

Commit

Permalink
add remappings
Browse files Browse the repository at this point in the history
  • Loading branch information
killroy192 committed Mar 9, 2024
1 parent fe0d6b5 commit 1bd7fc7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/OpenRDA.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import {SafeERC20} from "node_modules/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {IERC20} from "node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {RDA, Bid, Auction} from "./RDA.sol";

interface RDAEvents {
Expand Down
7 changes: 3 additions & 4 deletions src/RDA.sol
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import {Math} from "node_modules/@openzeppelin/contracts/utils/math/Math.sol";
import {OwnableUpgradeable} from
"node_modules/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import {EnumerableSet} from "node_modules/@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";
import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

import {RDAMathLib} from "./RDAMathLib.sol";

Expand Down
4 changes: 2 additions & 2 deletions src/RDABase.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import {Math} from "node_modules/@openzeppelin/contracts/utils/math/Math.sol";
import {EnumerableSet} from "node_modules/@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

import {RDAMathLib} from "./RDAMathLib.sol";

Expand Down

0 comments on commit 1bd7fc7

Please sign in to comment.