Skip to content

Commit

Permalink
using some relatively imports to get around verification conflicts fo…
Browse files Browse the repository at this point in the history
…r etherscan in inheriting repos
  • Loading branch information
mpeyfuss committed Jan 9, 2024
1 parent 2da6764 commit 69e95d8
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/payments/RoyaltyPayoutHelper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
pragma solidity ^0.8.20;

import {IRoyaltyEngineV1} from "royalty-registry-solidity/IRoyaltyEngineV1.sol";
import {SanctionsCompliance} from "src/payments/SanctionsCompliance.sol";
import {TransferHelper} from "src/payments/TransferHelper.sol";
import {SanctionsCompliance} from "./SanctionsCompliance.sol";
import {TransferHelper} from "./TransferHelper.sol";

/// @title Royalty Payout Helper
/// @notice Abstract contract to help payout royalties using the Royalty Registry
Expand Down
2 changes: 1 addition & 1 deletion src/payments/SanctionsCompliance.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import {IChainalysisSanctionsOracle} from "src/payments/IChainalysisSanctionsOracle.sol";
import {IChainalysisSanctionsOracle} from "./IChainalysisSanctionsOracle.sol";

/// @title Sanctions Compliance
/// @notice Abstract contract to comply with U.S. sanctioned addresses
Expand Down
2 changes: 1 addition & 1 deletion src/payments/TransferHelper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity ^0.8.20;

import {SafeERC20} from "openzeppelin/token/ERC20/utils/SafeERC20.sol";
import {IWETH, IERC20} from "src/payments/IWETH.sol";
import {IWETH, IERC20} from "./IWETH.sol";

/// @title Transfer Helper
/// @notice Abstract contract that has helper function for sending ETH and ERC20's safely
Expand Down
2 changes: 1 addition & 1 deletion src/royalties/EIP2981TL.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity ^0.8.20;

import {ERC165} from "openzeppelin/utils/introspection/ERC165.sol";
import {IEIP2981} from "src/royalties/IEIP2981.sol";
import {IEIP2981} from "./IEIP2981.sol";

/// @title EIP2981TL.sol
/// @notice Abstract contract to define a default royalty spec
Expand Down
4 changes: 2 additions & 2 deletions src/upgradeable/payments/RoyaltyPayoutHelperUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
pragma solidity ^0.8.20;

import {IRoyaltyEngineV1} from "royalty-registry-solidity/IRoyaltyEngineV1.sol";
import {TransferHelper} from "src/payments/TransferHelper.sol";
import {SanctionsComplianceUpgradeable} from "src/upgradeable/payments/SanctionsComplianceUpgradeable.sol";
import {TransferHelper} from "../../payments/TransferHelper.sol";
import {SanctionsComplianceUpgradeable} from "../../upgradeable/payments/SanctionsComplianceUpgradeable.sol";

/// @title Royalty Payout Helper
/// @notice Abstract contract to help payout royalties using the Royalty Registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity ^0.8.17;

import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol";
import {IChainalysisSanctionsOracle} from "src/payments/IChainalysisSanctionsOracle.sol";
import {IChainalysisSanctionsOracle} from "../../payments/IChainalysisSanctionsOracle.sol";

/// @title Sanctions Compliance
/// @notice Abstract contract to comply with U.S. sanctioned addresses
Expand Down
2 changes: 1 addition & 1 deletion src/upgradeable/royalties/EIP2981TLUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity ^0.8.20;

import {ERC165Upgradeable} from "openzeppelin-upgradeable/utils/introspection/ERC165Upgradeable.sol";
import {IEIP2981} from "src/royalties/IEIP2981.sol";
import {IEIP2981} from "../../royalties/IEIP2981.sol";

/// @title EIP2981TLUpgradeable.sol
/// @notice Abstract contract to define a default royalty spec
Expand Down

0 comments on commit 69e95d8

Please sign in to comment.