--- a/Cargo.lock +++ b/Cargo.lock @@ -8581,6 +8581,7 @@ "pallet-randomness-collective-flip", "pallet-refungible", "pallet-rmrk-core", + "pallet-rmrk-equip", "pallet-structure", "pallet-sudo", "pallet-template-transaction-payment", @@ -12633,6 +12634,7 @@ "pallet-randomness-collective-flip", "pallet-refungible", "pallet-rmrk-core", + "pallet-rmrk-equip", "pallet-structure", "pallet-sudo", "pallet-template-transaction-payment", --- a/runtime/quartz/Cargo.toml +++ b/runtime/quartz/Cargo.toml @@ -34,6 +34,7 @@ 'pallet-refungible/runtime-benchmarks', 'pallet-nonfungible/runtime-benchmarks', 'pallet-proxy-rmrk-core/runtime-benchmarks', + 'pallet-proxy-rmrk-equip/runtime-benchmarks', 'pallet-unique/runtime-benchmarks', 'pallet-inflation/runtime-benchmarks', 'pallet-xcm/runtime-benchmarks', @@ -91,6 +92,7 @@ 'pallet-refungible/std', 'pallet-nonfungible/std', 'pallet-proxy-rmrk-core/std', + 'pallet-proxy-rmrk-equip/std', 'pallet-unique/std', 'pallet-unq-scheduler/std', 'pallet-charge-transaction/std', @@ -416,6 +418,7 @@ pallet-refungible = { default-features = false, path = "../../pallets/refungible" } pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" } pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" } +pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" } pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false } # pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' } pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.22", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" } --- a/runtime/unique/Cargo.toml +++ b/runtime/unique/Cargo.toml @@ -34,6 +34,7 @@ 'pallet-refungible/runtime-benchmarks', 'pallet-nonfungible/runtime-benchmarks', 'pallet-proxy-rmrk-core/runtime-benchmarks', + 'pallet-proxy-rmrk-equip/runtime-benchmarks', 'pallet-unique/runtime-benchmarks', 'pallet-inflation/runtime-benchmarks', 'pallet-xcm/runtime-benchmarks', @@ -92,6 +93,7 @@ 'pallet-refungible/std', 'pallet-nonfungible/std', 'pallet-proxy-rmrk-core/std', + 'pallet-proxy-rmrk-equip/std', 'pallet-unique/std', 'pallet-unq-scheduler/std', 'pallet-charge-transaction/std', @@ -409,6 +411,7 @@ pallet-refungible = { default-features = false, path = "../../pallets/refungible" } pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" } pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" } +pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" } pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false } # pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' } pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.22", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }