Skip to content

Commit

Permalink
copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
fgamundi committed May 27, 2024
1 parent e89ae6d commit 3ad162c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion precompiles/proxy/Proxy.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity >=0.8.3;

/// @author The Moonbeam Team
/// @author The Moonsong Labs Team
/// @title Pallet Proxy Interface
/// @title The interface through which solidity contracts will interact with the Proxy pallet
interface Proxy {
Expand Down
10 changes: 5 additions & 5 deletions precompiles/proxy/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright Moonsong Labs
// This file is part of Moonkit.

// Moonbeam is free software: you can redistribute it and/or modify
// Moonkit is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Moonbeam is distributed in the hope that it will be useful,
// Moonkit is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
// along with Moonkit. If not, see <http://www.gnu.org/licenses/>.

#![cfg_attr(not(feature = "std"), no_std)]

Expand Down
10 changes: 5 additions & 5 deletions precompiles/proxy/src/mock.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright Moonsong Labs
// This file is part of Moonkit.

// Moonbeam is free software: you can redistribute it and/or modify
// Moonkit is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Moonbeam is distributed in the hope that it will be useful,
// Moonkit is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
// along with Moonkit. If not, see <http://www.gnu.org/licenses/>.

//! Test utilities
use crate::{ProxyPrecompile, ProxyPrecompileCall};
Expand Down
10 changes: 5 additions & 5 deletions precompiles/proxy/src/tests.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright Moonsong Labs
// This file is part of Moonkit.

// Moonbeam is free software: you can redistribute it and/or modify
// Moonkit is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Moonbeam is distributed in the hope that it will be useful,
// Moonkit is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Moonbeam. If not, see <http://www.gnu.org/licenses/>.
// along with Moonkit. If not, see <http://www.gnu.org/licenses/>.

use crate::mock::{
AccountId, ExtBuilder, PCall, PrecompilesValue, ProxyType, Runtime, RuntimeCall, RuntimeEvent,
Expand Down

0 comments on commit 3ad162c

Please sign in to comment.