Skip to content

Maintenance #138

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Mar 28, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ pragma solidity ^0.8.22;
import {Create2} from "@openzeppelin/contracts/utils/Create2.sol";
import {BeaconProxy} from "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol";

import {ADependant} from "../../../contracts-registry/ADependant.sol";
import {APoolContractsRegistry} from "../APoolContractsRegistry.sol";
import {ADependant} from "../../contracts-registry/ADependant.sol";
import {APoolContractsRegistry} from "./APoolContractsRegistry.sol";

/**
* @notice The PoolContractsRegistry module
Expand Down

This file was deleted.

This file was deleted.

48 changes: 0 additions & 48 deletions contracts/diamond/access/ownable/ADiamondOwnableStorage.sol

This file was deleted.

51 changes: 0 additions & 51 deletions contracts/diamond/access/ownable/DiamondOwnable.sol

This file was deleted.

5 changes: 3 additions & 2 deletions contracts/diamond/presets/OwnableDiamond.sol
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

import {Diamond} from "../Diamond.sol";
import {DiamondOwnable} from "../access/ownable/DiamondOwnable.sol";

/**
* @notice The Diamond standard module
*
* The Ownable preset of Diamond proxy
*/
contract OwnableDiamond is Diamond, DiamondOwnable {
contract OwnableDiamond is Diamond, OwnableUpgradeable {
/**
* @notice The function to manipulate the Diamond contract, as defined in [EIP-2535](https://eips.ethereum.org/EIPS/eip-2535)
* @param facets_ the array of actions to be executed against the Diamond
Expand Down
81 changes: 0 additions & 81 deletions contracts/diamond/tokens/ERC20/ADiamondERC20Storage.sol

This file was deleted.

Loading