Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions contracts/DXswapDeployer.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

import './DXswapFactory.sol';
Expand Down
1 change: 1 addition & 0 deletions contracts/DXswapERC20.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

import './interfaces/IDXswapERC20.sol';
Expand Down
1 change: 1 addition & 0 deletions contracts/DXswapFactory.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

import './interfaces/IDXswapFactory.sol';
Expand Down
1 change: 1 addition & 0 deletions contracts/DXswapFeeReceiver.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

import './interfaces/IDXswapFactory.sol';
Expand Down
1 change: 1 addition & 0 deletions contracts/DXswapFeeSetter.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

import './interfaces/IDXswapFactory.sol';
Expand Down
1 change: 1 addition & 0 deletions contracts/DXswapPair.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

import './interfaces/IDXswapPair.sol';
Expand Down
1 change: 1 addition & 0 deletions contracts/interfaces/IDXswapCallee.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;

interface IDXswapCallee {
Expand Down
1 change: 1 addition & 0 deletions contracts/interfaces/IDXswapERC20.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;

interface IDXswapERC20 {
Expand Down
1 change: 1 addition & 0 deletions contracts/interfaces/IDXswapFactory.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;

interface IDXswapFactory {
Expand Down
1 change: 1 addition & 0 deletions contracts/interfaces/IDXswapPair.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;

interface IDXswapPair {
Expand Down
1 change: 1 addition & 0 deletions contracts/interfaces/IERC20.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;

interface IERC20 {
Expand Down
1 change: 1 addition & 0 deletions contracts/interfaces/IWETH.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;

interface IWETH {
Expand Down
1 change: 1 addition & 0 deletions contracts/libraries/Math.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

// a library for performing various math operations
Expand Down
1 change: 1 addition & 0 deletions contracts/libraries/SafeMath.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)
Expand Down
1 change: 1 addition & 0 deletions contracts/libraries/TransferHelper.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

// helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false
Expand Down
1 change: 1 addition & 0 deletions contracts/libraries/UQ112x112.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))
Expand Down
1 change: 1 addition & 0 deletions contracts/test/ERC20.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

import '../DXswapERC20.sol';
Expand Down
1 change: 1 addition & 0 deletions contracts/test/WETH9.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

//SPDX-License-Identifier: MIT
pragma solidity =0.5.16;

contract WETH9 {
Expand Down