Skip to content

Commit

Permalink
Merge pull request #5 from sacha-l/alexd10s/contracts-pallet
Browse files Browse the repository at this point in the history
Add pallet contracts
  • Loading branch information
Sacha Lansky authored Aug 1, 2023
2 parents 7db6a55 + 079a4e8 commit 3563ac4
Show file tree
Hide file tree
Showing 3 changed files with 285 additions and 6 deletions.
167 changes: 162 additions & 5 deletions Cargo.lock

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

11 changes: 11 additions & 0 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ pallet-nft-fractionalization = { version = "4.0.0-dev", default-features = false
pallet-nfts = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.43" }
pallet-nfts-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.43" }

# Contracts dependencies
pallet-contracts = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.43" }
pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.43" }
pallet-insecure-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.43" }

# Used for the node template's RPCs
frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.43" }
pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.43" }
Expand Down Expand Up @@ -73,10 +78,13 @@ std = [
"pallet-assets/std",
"pallet-aura/std",
"pallet-balances/std",
"pallet-contracts-primitives/std",
"pallet-contracts/std",
"pallet-grandpa/std",
"pallet-nfts/std",
"pallet-nfts-runtime-api/std",
"pallet-nft-fractionalization/std",
"pallet-insecure-randomness-collective-flip/std",
"pallet-sudo/std",
"pallet-timestamp/std",
"pallet-transaction-payment-rpc-runtime-api/std",
Expand All @@ -103,6 +111,7 @@ runtime-benchmarks = [
"frame-system/runtime-benchmarks",
"pallet-assets/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-contracts/runtime-benchmarks",
"pallet-grandpa/runtime-benchmarks",
"pallet-nfts/runtime-benchmarks",
"pallet-nft-fractionalization/runtime-benchmarks",
Expand All @@ -118,9 +127,11 @@ try-runtime = [
"pallet-assets/try-runtime",
"pallet-aura/try-runtime",
"pallet-balances/try-runtime",
"pallet-contracts/try-runtime",
"pallet-grandpa/try-runtime",
"pallet-nfts/try-runtime",
"pallet-nft-fractionalization/try-runtime",
"pallet-insecure-randomness-collective-flip/try-runtime",
"pallet-sudo/try-runtime",
"pallet-timestamp/try-runtime",
"pallet-transaction-payment/try-runtime",
Expand Down
Loading

0 comments on commit 3563ac4

Please sign in to comment.