From e84ff6cf6b80378dfaf4f26e669cdcdee45a0a54 Mon Sep 17 00:00:00 2001 From: Anna Carroll Date: Fri, 2 Aug 2024 15:46:53 +0200 Subject: [PATCH] add MIT or Apache-2.0 license --- script/Zenith.s.sol | 2 +- src/Transact.sol | 2 +- src/UsesPermit2.sol | 2 +- src/Zenith.sol | 2 +- src/orders/IOrders.sol | 2 +- src/orders/OrderDestination.sol | 2 +- src/orders/OrderOrigin.sol | 2 +- src/orders/Orders.sol | 2 +- src/orders/OrdersPermit2.sol | 2 +- src/passage/Passage.sol | 2 +- src/passage/PassagePermit2.sol | 2 +- src/passage/RollupPassage.sol | 2 +- test/Helpers.t.sol | 2 +- test/Orders.t.sol | 2 +- test/Passage.t.sol | 2 +- test/Permit2Orders.t.sol | 2 +- test/Permit2Passage.t.sol | 2 +- test/Safe.t.sol | 2 +- test/Transact.t.sol | 2 +- test/Zenith.t.sol | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/script/Zenith.s.sol b/script/Zenith.s.sol index 3e4d2e7..4fc2141 100644 --- a/script/Zenith.s.sol +++ b/script/Zenith.s.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; // deploy contracts diff --git a/src/Transact.sol b/src/Transact.sol index 2cca0e7..c5ff86a 100644 --- a/src/Transact.sol +++ b/src/Transact.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; import {Passage} from "./passage/Passage.sol"; diff --git a/src/UsesPermit2.sol b/src/UsesPermit2.sol index 1244fac..218c0bf 100644 --- a/src/UsesPermit2.sol +++ b/src/UsesPermit2.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; import {IOrders} from "./orders/IOrders.sol"; diff --git a/src/Zenith.sol b/src/Zenith.sol index 7336062..6513335 100644 --- a/src/Zenith.sol +++ b/src/Zenith.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; contract Zenith { diff --git a/src/orders/IOrders.sol b/src/orders/IOrders.sol index d4d8030..713fef2 100644 --- a/src/orders/IOrders.sol +++ b/src/orders/IOrders.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; interface IOrders { diff --git a/src/orders/OrderDestination.sol b/src/orders/OrderDestination.sol index 615d46f..444eb43 100644 --- a/src/orders/OrderDestination.sol +++ b/src/orders/OrderDestination.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; import {OrdersPermit2} from "./OrdersPermit2.sol"; diff --git a/src/orders/OrderOrigin.sol b/src/orders/OrderOrigin.sol index 6d10f72..9772969 100644 --- a/src/orders/OrderOrigin.sol +++ b/src/orders/OrderOrigin.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; import {OrdersPermit2} from "./OrdersPermit2.sol"; diff --git a/src/orders/Orders.sol b/src/orders/Orders.sol index 7bf3968..4461aee 100644 --- a/src/orders/Orders.sol +++ b/src/orders/Orders.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; import {OrderDestination} from "./OrderDestination.sol"; diff --git a/src/orders/OrdersPermit2.sol b/src/orders/OrdersPermit2.sol index 3b951cd..7e72fa6 100644 --- a/src/orders/OrdersPermit2.sol +++ b/src/orders/OrdersPermit2.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; import {IOrders} from "./IOrders.sol"; diff --git a/src/passage/Passage.sol b/src/passage/Passage.sol index 9a0abe0..8ddc95f 100644 --- a/src/passage/Passage.sol +++ b/src/passage/Passage.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; import {PassagePermit2} from "./PassagePermit2.sol"; diff --git a/src/passage/PassagePermit2.sol b/src/passage/PassagePermit2.sol index c99cb78..d19306c 100644 --- a/src/passage/PassagePermit2.sol +++ b/src/passage/PassagePermit2.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; import {UsesPermit2} from "../UsesPermit2.sol"; diff --git a/src/passage/RollupPassage.sol b/src/passage/RollupPassage.sol index 4186b88..037271f 100644 --- a/src/passage/RollupPassage.sol +++ b/src/passage/RollupPassage.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; import {PassagePermit2} from "./PassagePermit2.sol"; diff --git a/test/Helpers.t.sol b/test/Helpers.t.sol index 1e784a0..e694bc5 100644 --- a/test/Helpers.t.sol +++ b/test/Helpers.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; // system contracts diff --git a/test/Orders.t.sol b/test/Orders.t.sol index 139b96d..e648155 100644 --- a/test/Orders.t.sol +++ b/test/Orders.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; // test contracts diff --git a/test/Passage.t.sol b/test/Passage.t.sol index ada7d14..8a430ab 100644 --- a/test/Passage.t.sol +++ b/test/Passage.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; // test contracts diff --git a/test/Permit2Orders.t.sol b/test/Permit2Orders.t.sol index 40cf6e5..962b8f0 100644 --- a/test/Permit2Orders.t.sol +++ b/test/Permit2Orders.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; // test contracts diff --git a/test/Permit2Passage.t.sol b/test/Permit2Passage.t.sol index acf3f3a..43c478d 100644 --- a/test/Permit2Passage.t.sol +++ b/test/Permit2Passage.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; // test contracts diff --git a/test/Safe.t.sol b/test/Safe.t.sol index 2e23b62..37a985e 100644 --- a/test/Safe.t.sol +++ b/test/Safe.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; // utils diff --git a/test/Transact.t.sol b/test/Transact.t.sol index 3537db7..ed0469c 100644 --- a/test/Transact.t.sol +++ b/test/Transact.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; // test contracts diff --git a/test/Zenith.t.sol b/test/Zenith.t.sol index 7b0f38f..002e4ff 100644 --- a/test/Zenith.t.sol +++ b/test/Zenith.t.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.24; // test contracts