difftreelog
feat integrate rmrk proxy into opal runtime
in: master
2 files changed
runtime/opal/Cargo.tomldiffbeforeafterboth33 'pallet-fungible/runtime-benchmarks',33 'pallet-fungible/runtime-benchmarks',34 'pallet-refungible/runtime-benchmarks',34 'pallet-refungible/runtime-benchmarks',35 'pallet-nonfungible/runtime-benchmarks',35 'pallet-nonfungible/runtime-benchmarks',36 'pallet-rmrk-proxy/runtime-benchmarks',36 'pallet-unique/runtime-benchmarks',37 'pallet-unique/runtime-benchmarks',37 'pallet-inflation/runtime-benchmarks',38 'pallet-inflation/runtime-benchmarks',38 'pallet-xcm/runtime-benchmarks',39 'pallet-xcm/runtime-benchmarks',89 'pallet-fungible/std',90 'pallet-fungible/std',90 'pallet-refungible/std',91 'pallet-refungible/std',91 'pallet-nonfungible/std',92 'pallet-nonfungible/std',93 'pallet-rmrk-proxy/std',92 'pallet-unique/std',94 'pallet-unique/std',93 'pallet-unq-scheduler/std',95 'pallet-unq-scheduler/std',94 'pallet-charge-transaction/std',96 'pallet-charge-transaction/std',415pallet-fungible = { default-features = false, path = "../../pallets/fungible" }417pallet-fungible = { default-features = false, path = "../../pallets/fungible" }416pallet-refungible = { default-features = false, path = "../../pallets/refungible" }418pallet-refungible = { default-features = false, path = "../../pallets/refungible" }417pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }419pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }420pallet-rmrk-proxy = { default-features = false, path = "../../pallets/rmrk-proxy" }418pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }421pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }419# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }422# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }420pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.21", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }423pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.21", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }runtime/opal/src/lib.rsdiffbeforeafterboth--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -901,6 +901,10 @@
type WeightInfo = pallet_nonfungible::weights::SubstrateWeight<Self>;
}
+impl pallet_rmrk_proxy::Config for Runtime {
+ type Event = Event;
+}
+
impl pallet_unique::Config for Runtime {
type Event = Event;
type WeightInfo = pallet_unique::weights::SubstrateWeight<Self>;
@@ -1013,6 +1017,7 @@
Refungible: pallet_refungible::{Pallet, Storage} = 68,
Nonfungible: pallet_nonfungible::{Pallet, Storage} = 69,
Structure: pallet_structure::{Pallet, Call, Storage, Event<T>} = 70,
+ RmrkProxy: pallet_rmrk_proxy::{Pallet, Call, Storage, Event<T>} = 71,
// Frontier
EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,