Skip to content

Commit

Permalink
Merge branch 'main' of github.com:tangle-network/tangle into drew/ves…
Browse files Browse the repository at this point in the history
…ting-migration
  • Loading branch information
1xstj committed Jan 31, 2025
2 parents 2e88163 + 6168b87 commit f5cafd6
Show file tree
Hide file tree
Showing 116 changed files with 4,869 additions and 2,362 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id: commit_info
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
echo "commit_message=$(git log -1 --pretty=%B)" >> $GITHUB_OUTPUT
echo "commit_message='$(git log -1 --pretty=%B)'" >> $GITHUB_OUTPUT
# Generating a GitHub token, so that tags created by the action
# triggers the other workflows
Expand Down
35 changes: 18 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "1.2.5"
version = "1.2.7"
authors = ["Tangle Foundation."]
edition = "2021"
license = "Unlicense"
Expand Down Expand Up @@ -46,6 +46,8 @@ members = [
"precompiles/services",
"precompiles/tangle-lst",
"precompiles/assets",
"precompiles/vesting",
"precompiles/staking",
"tangle-subxt",
"evm-tracer",
]
Expand Down
11 changes: 6 additions & 5 deletions client/evm-tracing/src/formatters/blockscout.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright 2022-2025 Tangle Foundation.
// This file is part of Tangle.
// This file originated in Moonbeam's codebase.

// Moonbeam is free software: you can redistribute it and/or modify
// Tangle 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,
// Tangle 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 Tangle. If not, see <http://www.gnu.org/licenses/>.

use crate::{
listeners::call_list::Listener,
Expand Down
11 changes: 6 additions & 5 deletions client/evm-tracing/src/formatters/call_tracer.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright 2022-2025 Tangle Foundation.
// This file is part of Tangle.
// This file originated in Moonbeam's codebase.

// Moonbeam is free software: you can redistribute it and/or modify
// Tangle 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,
// Tangle 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 Tangle. If not, see <http://www.gnu.org/licenses/>.
#[allow(clippy::all)]
use super::blockscout::BlockscoutCallInner;
use crate::types::{
Expand Down
11 changes: 6 additions & 5 deletions client/evm-tracing/src/formatters/mod.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright 2022-2025 Tangle Foundation.
// This file is part of Tangle.
// This file originated in Moonbeam's codebase.

// Moonbeam is free software: you can redistribute it and/or modify
// Tangle 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,
// Tangle 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 Tangle. If not, see <http://www.gnu.org/licenses/>.
pub mod blockscout;
pub mod call_tracer;
pub mod raw;
Expand Down
11 changes: 6 additions & 5 deletions client/evm-tracing/src/formatters/raw.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright 2022-2025 Tangle Foundation.
// This file is part of Tangle.
// This file originated in Moonbeam's codebase.

// Moonbeam is free software: you can redistribute it and/or modify
// Tangle 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,
// Tangle 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 Tangle. If not, see <http://www.gnu.org/licenses/>.

use crate::{listeners::raw::Listener, types::single::TransactionTrace};

Expand Down
11 changes: 6 additions & 5 deletions client/evm-tracing/src/formatters/trace_filter.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright 2022-2025 Tangle Foundation.
// This file is part of Tangle.
// This file originated in Moonbeam's codebase.

// Moonbeam is free software: you can redistribute it and/or modify
// Tangle 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,
// Tangle 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 Tangle. If not, see <http://www.gnu.org/licenses/>.

use super::blockscout::BlockscoutCallInner as CallInner;
use crate::{
Expand Down
11 changes: 6 additions & 5 deletions client/evm-tracing/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright 2022-2025 Tangle Foundation.
// This file is part of Tangle.
// This file originated in Moonbeam's codebase.

// Moonbeam is free software: you can redistribute it and/or modify
// Tangle 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,
// Tangle 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 Tangle. If not, see <http://www.gnu.org/licenses/>.

//! This crate contains the client-side part that interacts with our "v2" tracing design.
#![allow(clippy::all)]
Expand Down
11 changes: 6 additions & 5 deletions client/evm-tracing/src/listeners/call_list.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright 2022-2025 Tangle Foundation.
// This file is part of Tangle.
// This file originated in Moonbeam's codebase.

// Moonbeam is free software: you can redistribute it and/or modify
// Tangle 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,
// Tangle 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 Tangle. If not, see <http://www.gnu.org/licenses/>.

use crate::{
formatters::blockscout::{BlockscoutCall as Call, BlockscoutCallInner as CallInner},
Expand Down
11 changes: 6 additions & 5 deletions client/evm-tracing/src/listeners/mod.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
// Copyright 2019-2022 PureStake Inc.
// This file is part of Moonbeam.
// Copyright 2022-2025 Tangle Foundation.
// This file is part of Tangle.
// This file originated in Moonbeam's codebase.

// Moonbeam is free software: you can redistribute it and/or modify
// Tangle 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,
// Tangle 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 Tangle. If not, see <http://www.gnu.org/licenses/>.

pub mod call_list;
pub mod raw;
Expand Down
Loading

0 comments on commit f5cafd6

Please sign in to comment.