Skip to content

Commit

Permalink
Merge 197d5b1 into e0b2c42
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandapip1 authored Jul 26, 2022
2 parents e0b2c42 + 197d5b1 commit b7cdcd7
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion EIPS/eip-3267.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Paradoxically, it will directly benefit miners/validators, see the discussion.

`MineFraction` = `TBD` (0..1)

[The contracts source](../assets/eip-3267/contracts/README.md)
[The contract's source](../assets/eip-3267/contracts/README.md)

Prior to `FORK_BLOCK_NUMBER`, `SalaryWithDAO` and `DefaultDAOInterface` contracts will be deployed to the network and exist at the above specified addresses.

Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/BaseBidOnAddresses.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;
import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";
import { ABDKMath64x64 } from "abdk-libraries-solidity/ABDKMath64x64.sol";
Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/BaseLock.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;
import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";
import { ABDKMath64x64 } from "abdk-libraries-solidity/ABDKMath64x64.sol";
Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/BaseRestorableSalary.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;
import "./Salary.sol";

Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/BaseSalary.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;
import "./BaseBidOnAddresses.sol";

Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/BidOnAddresses.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;
import "./BaseBidOnAddresses.sol";

Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/DAOInterface.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;

/// @notice The "DAO plugin" interface.
Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/DefaultDAOInterface.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;
import "./DAOInterface.sol";

Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/ERC1155/ERC1155.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: CC0-1.0

pragma solidity >=0.6.0 <0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/ERC1155/ERC1155TokenReceiver.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;

import "./IERC1155TokenReceiver.sol";
Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/ERC1155/ERC1155WithTotals.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;
import "@openzeppelin/contracts/math/SafeMath.sol";
import { ERC1155 } from "./ERC1155.sol";
Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/ERC1155/IERC1155.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;

import "@openzeppelin/contracts/introspection/IERC165.sol";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;

import "@openzeppelin/contracts/introspection/IERC165.sol";
Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/Salary.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;
import "./BaseSalary.sol";

Expand Down
2 changes: 1 addition & 1 deletion assets/eip-3267/contracts/SalaryWithDAO.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.7.1;
import { ABDKMath64x64 } from "abdk-libraries-solidity/ABDKMath64x64.sol";
import "./BaseRestorableSalary.sol";
Expand Down

0 comments on commit b7cdcd7

Please sign in to comment.