Skip to content

Commit

Permalink
add tracing runtime 2801 sources
Browse files Browse the repository at this point in the history
  • Loading branch information
noandrea committed Mar 5, 2024
1 parent 5fec12d commit aad47b9
Show file tree
Hide file tree
Showing 122 changed files with 65,776 additions and 0 deletions.
13,701 changes: 13,701 additions & 0 deletions tracing/2801/Cargo.lock

Large diffs are not rendered by default.

436 changes: 436 additions & 0 deletions tracing/2801/Cargo.toml

Large diffs are not rendered by default.

145 changes: 145 additions & 0 deletions tracing/2801/runtime/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
[package]
name = "moonbeam-runtime-common"
authors = { workspace = true }
description = "Common code shared between runtimes"
edition = "2021"
homepage = "https://moonbeam.network"
license = "GPL-3.0-only"
version = "0.8.0-dev"

[dependencies]
hex-literal = "0.3.4"
impl-trait-for-tuples = "0.2.1"
log = "0.4"

# Moonbeam
moonbeam-xcm-benchmarks = { workspace = true }
pallet-asset-manager = { workspace = true }
pallet-author-mapping = { workspace = true }
pallet-conviction-voting = { workspace = true }
pallet-ethereum-xcm = { workspace = true }
pallet-migrations = { workspace = true }
pallet-parachain-staking = { workspace = true }
pallet-randomness = { workspace = true }
pallet-xcm-transactor = { workspace = true }
precompile-utils = { workspace = true }
xcm-primitives = { workspace = true }
pallet-moonbeam-lazy-migrations = { workspace = true }
pallet-relay-storage-roots = { workspace = true }
pallet-precompile-benchmarks = { workspace = true }

# Substrate
cumulus-pallet-xcmp-queue = { workspace = true }
frame-benchmarking = { workspace = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
pallet-assets = { workspace = true }
pallet-balances = { workspace = true }
pallet-collective = { workspace = true }
pallet-crowdloan-rewards = { workspace = true }
pallet-democracy = { workspace = true }
pallet-identity = { workspace = true }
pallet-moonbeam-orbiters = { workspace = true }
pallet-multisig = { workspace = true }
pallet-preimage = { workspace = true }
pallet-proxy = { workspace = true }
pallet-referenda = { workspace = true }
pallet-scheduler = { workspace = true }
pallet-sudo = { workspace = true }
pallet-timestamp = { workspace = true }
pallet-treasury = { workspace = true }
pallet-utility = { workspace = true }
pallet-whitelist = { workspace = true }
pallet-xcm = { workspace = true }
sp-api = { workspace = true }
sp-consensus-slots = { workspace = true }
sp-core = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }


# Frontier
fp-ethereum = { workspace = true }
fp-evm = { workspace = true }
pallet-evm = { workspace = true, features = ["forbid-evm-reentrancy"] }
pallet-evm-chain-id = { workspace = true }

# Moonkit
nimbus-primitives = { workspace = true }
pallet-async-backing = { workspace = true }
pallet-author-inherent = { workspace = true }
pallet-author-slot-filter = { workspace = true }

# Polkadot
xcm = { workspace = true }
xcm-builder = { workspace = true }
xcm-executor = { workspace = true }

# Parity
parity-scale-codec = { workspace = true }

account = { workspace = true }

[features]
std = [
"fp-ethereum/std",
"fp-evm/std",
"frame-support/std",
"pallet-asset-manager/std",
"pallet-async-backing/std",
"pallet-author-inherent/std",
"pallet-author-mapping/std",
"pallet-ethereum-xcm/std",
"pallet-evm/std",
"pallet-migrations/std",
"pallet-parachain-staking/std",
"pallet-randomness/std",
"pallet-referenda/std",
"pallet-scheduler/std",
"pallet-xcm-transactor/std",
"pallet-moonbeam-lazy-migrations/std",
"parity-scale-codec/std",
"precompile-utils/std",
"sp-consensus-slots/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
"xcm-executor/std",
"xcm/std",
"account/std",
]
runtime-benchmarks = [
"cumulus-pallet-xcmp-queue/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"pallet-asset-manager/runtime-benchmarks",
"pallet-assets/runtime-benchmarks",
"pallet-author-inherent/runtime-benchmarks",
"pallet-author-mapping/runtime-benchmarks",
"pallet-author-slot-filter/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-conviction-voting/runtime-benchmarks",
"pallet-crowdloan-rewards/runtime-benchmarks",
"pallet-democracy/runtime-benchmarks",
"pallet-ethereum-xcm/runtime-benchmarks",
"pallet-evm/runtime-benchmarks",
"pallet-identity/runtime-benchmarks",
"pallet-moonbeam-orbiters/runtime-benchmarks",
"pallet-multisig/runtime-benchmarks",
"pallet-parachain-staking/runtime-benchmarks",
"pallet-preimage/runtime-benchmarks",
"pallet-proxy/runtime-benchmarks",
"pallet-randomness/runtime-benchmarks",
"pallet-referenda/runtime-benchmarks",
"pallet-referenda/runtime-benchmarks",
"pallet-scheduler/runtime-benchmarks",
"pallet-sudo/runtime-benchmarks",
"pallet-timestamp/runtime-benchmarks",
"pallet-treasury/runtime-benchmarks",
"pallet-utility/runtime-benchmarks",
"pallet-whitelist/runtime-benchmarks",
"pallet-xcm-transactor/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
"pallet-moonbeam-lazy-migrations/runtime-benchmarks",
"moonbeam-xcm-benchmarks/runtime-benchmarks",
]
try-runtime = ["frame-support/try-runtime", "pallet-migrations/try-runtime"]
Loading

0 comments on commit aad47b9

Please sign in to comment.