This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: AGPL-3.0 | |
pragma solidity 0.8.20; | |
import "./lib/DepositContract.sol"; | |
import "./lib/SafeTRC20Upgradeable.sol"; | |
import "./lib/TokenWrapped.sol"; | |
import "./interfaces/IBasePolygonZkEVMGlobalExitRoot.sol"; | |
import "./interfaces/IBridgeMessageReceiver.sol"; | |
import "./interfaces/IPolygonZkEVMBridge.sol"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: AGPL-3.0 | |
pragma solidity 0.8.20; | |
import "./lib/DepositContract.sol"; | |
import "./lib/SafeTRC20Upgradeable.sol"; | |
import "./lib/TokenWrapped.sol"; | |
import "./interfaces/IBasePolygonZkEVMGlobalExitRoot.sol"; | |
import "./interfaces/IBridgeMessageReceiver.sol"; | |
import "./interfaces/IPolygonZkEVMBridge.sol"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) | |
pragma solidity ^0.8.20; | |
import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol"; | |
import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; | |
import {ERC165Upgradeable} from "../utils/introspection/ERC165Upgradeable.sol"; | |
import {Initializable} from "../proxy/utils/Initializable.sol"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: AGPL-3.0 | |
pragma solidity 0.8.20; | |
import "@openzeppelin/contracts@4.8.2/proxy/transparent/ProxyAdmin.sol"; | |
contract ProxyAdminWrapper is ProxyAdmin { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) | |
pragma solidity ^0.8.0; | |
/** | |
* @dev External interface of AccessControl declared to support ERC165 detection. | |
*/ | |
interface IAccessControlUpgradeable { | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters