Skip to content

Commit f24e167

Browse files
authored
add MIT or Apache-2.0 license (#73)
1 parent ffae635 commit f24e167

20 files changed

+20
-20
lines changed

script/Zenith.s.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
// deploy contracts

src/Transact.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
import {Passage} from "./passage/Passage.sol";

src/UsesPermit2.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
import {IOrders} from "./orders/IOrders.sol";

src/Zenith.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
contract Zenith {

src/orders/IOrders.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
interface IOrders {

src/orders/OrderDestination.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
import {OrdersPermit2} from "./OrdersPermit2.sol";

src/orders/OrderOrigin.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
import {OrdersPermit2} from "./OrdersPermit2.sol";

src/orders/Orders.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
import {OrderDestination} from "./OrderDestination.sol";

src/orders/OrdersPermit2.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
import {IOrders} from "./IOrders.sol";

src/passage/Passage.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
import {PassagePermit2} from "./PassagePermit2.sol";

src/passage/PassagePermit2.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
import {UsesPermit2} from "../UsesPermit2.sol";

src/passage/RollupPassage.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
import {PassagePermit2} from "./PassagePermit2.sol";

test/Helpers.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
// system contracts

test/Orders.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
// test contracts

test/Passage.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
// test contracts

test/Permit2Orders.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
// test contracts

test/Permit2Passage.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
// test contracts

test/Safe.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
// utils

test/Transact.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
// test contracts

test/Zenith.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
22
pragma solidity ^0.8.24;
33

44
// test contracts

0 commit comments

Comments
 (0)