Skip to content

Commit

Permalink
Specifying spdx license identifier (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
josojo authored Aug 16, 2023
1 parent 5c065be commit 9b6c5fd
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions development/contracts/ForkableBridge.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {PolygonZkEVMBridge, IBasePolygonZkEVMGlobalExitRoot} from "@RealityETH/zkevm-contracts/contracts/inheritedMainContracts/PolygonZkEVMBridge.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/ForkableGlobalExitRoot.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {PolygonZkEVMGlobalExitRoot} from "@RealityETH/zkevm-contracts/contracts/inheritedMainContracts/PolygonZkEVMGlobalExitRoot.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/ForkableZkEVM.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {PolygonZkEVM} from "@RealityETH/zkevm-contracts/contracts/inheritedMainContracts/PolygonZkEVM.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/ForkingManager.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {ERC20PresetMinterPauser} from "@openzeppelin/contracts/token/ERC20/presets/ERC20PresetMinterPauser.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/ForkonomicToken.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {ERC20Upgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/interfaces/IForkableBridge.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {IForkableStructure} from "./IForkableStructure.sol";
Expand Down
2 changes: 2 additions & 0 deletions development/contracts/interfaces/IForkableStructure.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-only

pragma solidity ^0.8.17;

interface IForkableStructure {
Expand Down
1 change: 1 addition & 0 deletions development/contracts/interfaces/IForkableZkEVM.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {IForkableStructure} from "./IForkableStructure.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/interfaces/IForkingManager.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {IForkableStructure} from "./IForkableStructure.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/interfaces/IForkonomicToken.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {IForkableStructure} from "./IForkableStructure.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/lib/BridgeAssetOperations.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;
import {PolygonZkEVMBridge} from "@RealityETH/zkevm-contracts/contracts/inheritedMainContracts/PolygonZkEVMBridge.sol";
import {TokenWrapped} from "@RealityETH/zkevm-contracts/contracts/lib/TokenWrapped.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/lib/CreateChildren.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {StorageSlot} from "@openzeppelin/contracts/utils/StorageSlot.sol";
Expand Down
1 change: 1 addition & 0 deletions development/contracts/mixin/ForkableStructure.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.17;

import {IForkableStructure} from "../interfaces/IForkableStructure.sol";
Expand Down

0 comments on commit 9b6c5fd

Please sign in to comment.