Skip to content

Commit

Permalink
fix(license): Setup proper licensing
Browse files Browse the repository at this point in the history
  • Loading branch information
m30m committed Feb 23, 2024
1 parent faee9b9 commit 488c26e
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 21 deletions.
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
3 changes: 1 addition & 2 deletions auction-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
name = "auction-server"
version = "0.1.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license-file = "license.txt"

[dependencies]
tokio = { version = "1.28", features = ["macros", "sync", "rt-multi-thread", "signal"] }
Expand Down
1 change: 1 addition & 0 deletions auction-server/license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
2 changes: 1 addition & 1 deletion per_multicall/script/Vault.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import {Script, console2} from "forge-std/Script.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/Errors.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

// Signature: 0x82b42900
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/LiquidationAdapter.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import "./Errors.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/MyToken.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/OnChainAuction.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import "./Errors.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/PERFeeReceiver.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.0;

interface PERFeeReceiver {
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/PERMulticall.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import "./Errors.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/SearcherVault.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import "openzeppelin-contracts/contracts/utils/Strings.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/SigVerify.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import "./Errors.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/Structs.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

struct OracleState {
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/TokenVault.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import "./TokenVaultErrors.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/src/TokenVaultErrors.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

// Signature: 0xe922edfd
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/test/PERIntegration.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import {Test, console2} from "forge-std/Test.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/test/helpers/MulticallHelpers.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import {Test, console2} from "forge-std/Test.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/test/helpers/PriceHelpers.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import "@pythnetwork/pyth-sdk-solidity/MockPyth.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/test/helpers/Signatures.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import "../../src/Structs.sol";
Expand Down
2 changes: 1 addition & 1 deletion per_multicall/test/helpers/TestParsingHelpers.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
pragma solidity ^0.8.13;

import {Test, console2} from "forge-std/Test.sol";
Expand Down
3 changes: 1 addition & 2 deletions vault-simulator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
name = "vault-simulator"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license-file = "license.txt"

[dependencies]
tokio = { version = "1.28", features = ["macros", "sync", "rt-multi-thread", "signal"] }
Expand Down
1 change: 1 addition & 0 deletions vault-simulator/license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved

0 comments on commit 488c26e

Please sign in to comment.