Skip to content

Commit 2c2d3b9

Browse files
committed
fix spdx annotation
1 parent c6a5878 commit 2c2d3b9

File tree

17 files changed

+90
-9
lines changed

17 files changed

+90
-9
lines changed

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
[submodule "kms/auth-eth/lib/forge-std"]
26
path = kms/auth-eth/lib/forge-std
37
url = https://github.com/foundry-rs/forge-std

kms/auth-eth/.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
# Example environment configuration for local testing
26

37
# Server configuration

kms/auth-eth/.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
name: CI
26

37
on:

kms/auth-eth/contracts/test-utils/DstackAppV2.sol

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
// SPDX-License-Identifier: MIT
1+
/*
2+
* SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
27
pragma solidity ^0.8.22;
38

49
import "../DstackApp.sol";

kms/auth-eth/contracts/test-utils/DstackKmsV2.sol

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
// SPDX-License-Identifier: MIT
1+
/*
2+
* SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
27
pragma solidity ^0.8.22;
38

49
import "../DstackKms.sol";

kms/auth-eth/foundry.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
[profile.default]
26
src = "contracts"
37
out = "out"

kms/auth-eth/script/Deploy.s.sol

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
// SPDX-License-Identifier: MIT
1+
/*
2+
* SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
27
pragma solidity ^0.8.22;
38

49
import "forge-std/Script.sol";

kms/auth-eth/script/Manage.s.sol

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
// SPDX-License-Identifier: MIT
1+
/*
2+
* SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
27
pragma solidity ^0.8.22;
38

49
import "forge-std/Script.sol";

kms/auth-eth/script/Query.s.sol

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
// SPDX-License-Identifier: MIT
1+
/*
2+
* SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
27
pragma solidity ^0.8.22;
38

49
import "forge-std/Script.sol";

kms/auth-eth/script/Upgrade.s.sol

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
// SPDX-License-Identifier: MIT
1+
/*
2+
* SPDX-FileCopyrightText: © 2025 Phala Network <[email protected]>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
27
pragma solidity ^0.8.22;
38

49
import "forge-std/Script.sol";

0 commit comments

Comments
 (0)