Skip to content

Commit 8c57aff

Browse files
authored
fix: Fix licenses (#1710)
1 parent 8b6e291 commit 8c57aff

File tree

8 files changed

+8
-10
lines changed

8 files changed

+8
-10
lines changed

express_relay/examples/easy_lend/contracts/EasyLend.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
1+
// SPDX-License-Identifier: Apache 2
22
pragma solidity ^0.8.13;
33

44
import "./EasyLendStructs.sol";

express_relay/examples/easy_lend/contracts/EasyLendErrors.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
1+
// SPDX-License-Identifier: Apache 2
22
pragma solidity ^0.8.13;
33

44
// Signature: 0xe922edfd

express_relay/examples/easy_lend/contracts/EasyLendStructs.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
1+
// SPDX-License-Identifier: Apache 2
22
pragma solidity ^0.8.13;
33

44
struct Vault {

express_relay/sdk/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "express-relay"
33
version = "0.6.0"
44
description = "Utilities for searchers and protocols to interact with the Express Relay protocol."
55
authors = ["dourolabs"]
6-
license = "Proprietary"
6+
license = "Apache-2.0"
77
readme = "README.md"
88

99
[tool.poetry.dependencies]

express_relay/sdk/solidity/IExpressRelay.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
2-
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
1+
// SPDX-License-Identifier: Apache 2
32
pragma solidity ^0.8.0;
43

54
interface IExpressRelay {

express_relay/sdk/solidity/IExpressRelayFeeReceiver.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
2-
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
1+
// SPDX-License-Identifier: Apache 2
32
pragma solidity ^0.8.0;
43

54
interface IExpressRelayFeeReceiver {

target_chains/ethereum/contracts/contracts/executor/Executor.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: Apache 2
22
pragma solidity ^0.8.0;
33

44
import "../pyth/PythGovernanceInstructions.sol";

target_chains/ethereum/contracts/contracts/executor/ExecutorErrors.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: UNLICENSED
1+
// SPDX-License-Identifier: Apache 2
22
pragma solidity ^0.8.0;
33

44
library ExecutorErrors {

0 commit comments

Comments
 (0)