Skip to content

Commit 116fe41

Browse files
committed
change path to openzeppelin-v5
1 parent 9bb6b92 commit 116fe41

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+80
-80
lines changed

packages/ethereum-contracts/contracts/agreements/AgreementLibrary.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
} from "../interfaces/superfluid/ISuperfluid.sol";
1010
import { ISuperfluidToken } from "../interfaces/superfluid/ISuperfluidToken.sol";
1111

12-
import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol";
12+
import { SafeCast } from "@openzeppelin-v5/contracts/utils/math/SafeCast.sol";
1313

1414

1515
/**

packages/ethereum-contracts/contracts/agreements/ConstantFlowAgreementV1.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
SuperfluidGovernanceConfigs
1414
} from "../interfaces/superfluid/ISuperfluid.sol";
1515
import { AgreementBase } from "./AgreementBase.sol";
16-
import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol";
16+
import { SafeCast } from "@openzeppelin-v5/contracts/utils/math/SafeCast.sol";
1717
import { AgreementLibrary } from "./AgreementLibrary.sol";
1818
import { SolvencyHelperLibrary } from "../libs/SolvencyHelperLibrary.sol";
1919

packages/ethereum-contracts/contracts/agreements/InstantDistributionAgreementV1.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: AGPLv3
22
pragma solidity ^0.8.23;
33

4-
import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol";
4+
import { SafeCast } from "@openzeppelin-v5/contracts/utils/math/SafeCast.sol";
55

66
import {
77
IInstantDistributionAgreementV1, ISuperfluidToken

packages/ethereum-contracts/contracts/agreements/gdav1/GDAv1StorageLayout.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: AGPLv3
22
pragma solidity ^0.8.23;
33
// open-zeppelin
4-
import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol";
4+
import { SafeCast } from "@openzeppelin-v5/contracts/utils/math/SafeCast.sol";
55
// semantic-money
66
import {
77
BasicParticle,

packages/ethereum-contracts/contracts/agreements/gdav1/GeneralDistributionAgreementV1.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// solhint-disable not-rely-on-time
33
pragma solidity ^0.8.23;
44

5-
import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol";
5+
import { SafeCast } from "@openzeppelin-v5/contracts/utils/math/SafeCast.sol";
66

77
import { ISuperfluid, ISuperfluidGovernance, IAccessControl } from "../../interfaces/superfluid/ISuperfluid.sol";
88
import {

packages/ethereum-contracts/contracts/agreements/gdav1/PoolAdminNFT.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: AGPLv3
22
pragma solidity ^0.8.23;
33

4-
import { IERC721Metadata } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
4+
import { IERC721Metadata } from "@openzeppelin-v5/contracts/token/ERC721/extensions/IERC721Metadata.sol";
55
import { IPoolAdminNFT } from "../../interfaces/agreements/gdav1/IPoolAdminNFT.sol";
66
import { PoolNFTBase } from "./PoolNFTBase.sol";
77
import { IGeneralDistributionAgreementV1, ISuperfluid } from "../../interfaces/superfluid/ISuperfluid.sol";

packages/ethereum-contracts/contracts/agreements/gdav1/PoolNFTBase.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ pragma solidity ^0.8.23;
66

77
// Notes: We use these interfaces in natspec documentation below, grep @inheritdoc
88
// solhint-disable-next-line no-unused-import
9-
import { IERC165 } from "@openzeppelin/contracts/interfaces/IERC165.sol";
10-
import { IERC721 } from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
9+
import { IERC165 } from "@openzeppelin-v5/contracts/interfaces/IERC165.sol";
10+
import { IERC721 } from "@openzeppelin-v5/contracts/token/ERC721/IERC721.sol";
1111
import { UUPSProxiable } from "../../upgradability/UUPSProxiable.sol";
1212
import { IGeneralDistributionAgreementV1, ISuperfluid } from "../../interfaces/superfluid/ISuperfluid.sol";
1313
import { ISuperTokenFactory } from "../../interfaces/superfluid/ISuperTokenFactory.sol";

packages/ethereum-contracts/contracts/agreements/gdav1/SuperfluidPool.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ pragma solidity ^0.8.23;
44

55
// Notes: We use these interfaces in natspec documentation below, grep @inheritdoc
66
// solhint-disable-next-line no-unused-import
7-
import { IERC20, IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
8-
import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol";
7+
import { IERC20, IERC20Metadata } from "@openzeppelin-v5/contracts/token/ERC20/extensions/IERC20Metadata.sol";
8+
import { SafeCast } from "@openzeppelin-v5/contracts/utils/math/SafeCast.sol";
99
import {
1010
BasicParticle,
1111
SemanticMoney,

packages/ethereum-contracts/contracts/agreements/gdav1/SuperfluidPoolDeployerLibrary.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: AGPLv3
22
pragma solidity ^0.8.23;
33

4-
import { BeaconProxy } from "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol";
4+
import { BeaconProxy } from "@openzeppelin-v5/contracts/proxy/beacon/BeaconProxy.sol";
55
import { ISuperfluidToken } from "../../interfaces/superfluid/ISuperfluidToken.sol";
66
import { SuperfluidPool } from "./SuperfluidPool.sol";
77
import { PoolConfig, PoolERC20Metadata } from "../../interfaces/agreements/gdav1/IGeneralDistributionAgreementV1.sol";

packages/ethereum-contracts/contracts/gov/SuperfluidGovernanceII.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pragma solidity ^0.8.23;
33

44
import { UUPSProxy } from "../upgradability/UUPSProxy.sol";
5-
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
5+
import { Ownable } from "@openzeppelin-v5/contracts/access/Ownable.sol";
66
import { UUPSProxiable } from "../upgradability/UUPSProxiable.sol";
77
import { SuperfluidGovernanceBase } from "./SuperfluidGovernanceBase.sol";
88
import { ISuperfluid } from "../interfaces/superfluid/ISuperfluid.sol";

0 commit comments

Comments
 (0)