git.delta.rocks / unique-network / refs/commits / 9802d7a2367e

difftreelog

rename: use rmrk-core as proxy-rmrk-core in runtime

Daniel Shiposha2022-05-19parent: #e26b580.patch.diff
in: master

12 files changed

addedpallets/proxy-rmrk-core/Cargo.tomldiffbeforeafterboth

no changes

addedpallets/proxy-rmrk-core/src/lib.rsdiffbeforeafterboth

no changes

addedpallets/proxy-rmrk-core/src/misc.rsdiffbeforeafterboth

no changes

addedpallets/proxy-rmrk-core/src/property.rsdiffbeforeafterboth

no changes

deletedpallets/rmrk-core-proxy/Cargo.tomldiffbeforeafterboth

no changes

deletedpallets/rmrk-core-proxy/src/lib.rsdiffbeforeafterboth

no changes

deletedpallets/rmrk-core-proxy/src/misc.rsdiffbeforeafterboth

no changes

deletedpallets/rmrk-core-proxy/src/property.rsdiffbeforeafterboth

no changes

modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
33 '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-proxy-rmrk-core/runtime-benchmarks',
37 'pallet-unique/runtime-benchmarks',37 'pallet-unique/runtime-benchmarks',
38 'pallet-inflation/runtime-benchmarks',38 'pallet-inflation/runtime-benchmarks',
39 'pallet-xcm/runtime-benchmarks',39 'pallet-xcm/runtime-benchmarks',
90 'pallet-fungible/std',90 'pallet-fungible/std',
91 'pallet-refungible/std',91 'pallet-refungible/std',
92 'pallet-nonfungible/std',92 'pallet-nonfungible/std',
93 'pallet-rmrk-proxy/std',93 'pallet-proxy-rmrk-core/std',
94 'pallet-unique/std',94 'pallet-unique/std',
95 'pallet-unq-scheduler/std',95 'pallet-unq-scheduler/std',
96 'pallet-charge-transaction/std',96 'pallet-charge-transaction/std',
417pallet-fungible = { default-features = false, path = "../../pallets/fungible" }417pallet-fungible = { default-features = false, path = "../../pallets/fungible" }
418pallet-refungible = { default-features = false, path = "../../pallets/refungible" }418pallet-refungible = { default-features = false, path = "../../pallets/refungible" }
419pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }419pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }
420pallet-rmrk-proxy = { default-features = false, path = "../../pallets/rmrk-core-proxy", package = "pallet-rmrk-core" }420pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }
421pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }421pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }
422# 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' }
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" }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" }
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
901 type WeightInfo = pallet_nonfungible::weights::SubstrateWeight<Self>;901 type WeightInfo = pallet_nonfungible::weights::SubstrateWeight<Self>;
902}902}
903903
904impl pallet_rmrk_proxy::Config for Runtime {904impl pallet_proxy_rmrk_core::Config for Runtime {
905 type Event = Event;905 type Event = Event;
906}906}
907907
1017 Refungible: pallet_refungible::{Pallet, Storage} = 68,1017 Refungible: pallet_refungible::{Pallet, Storage} = 68,
1018 Nonfungible: pallet_nonfungible::{Pallet, Storage} = 69,1018 Nonfungible: pallet_nonfungible::{Pallet, Storage} = 69,
1019 Structure: pallet_structure::{Pallet, Call, Storage, Event<T>} = 70,1019 Structure: pallet_structure::{Pallet, Call, Storage, Event<T>} = 70,
1020 RmrkProxy: pallet_rmrk_proxy::{Pallet, Call, Storage, Event<T>} = 71,1020 ProxyRmrkCore: pallet_proxy_rmrk_core::{Pallet, Call, Storage, Event<T>} = 71,
10211021
1022 // Frontier1022 // Frontier
1023 EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,1023 EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
33 '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-proxy-rmrk-core/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-proxy-rmrk-core/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',
414pallet-fungible = { default-features = false, path = "../../pallets/fungible" }416pallet-fungible = { default-features = false, path = "../../pallets/fungible" }
415pallet-refungible = { default-features = false, path = "../../pallets/refungible" }417pallet-refungible = { default-features = false, path = "../../pallets/refungible" }
416pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }418pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }
419pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }
417pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }420pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }
418# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }421# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }
419pallet-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" }422pallet-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" }
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
33 '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-proxy-rmrk-core/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-proxy-rmrk-core/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',
413pallet-fungible = { default-features = false, path = "../../pallets/fungible" }415pallet-fungible = { default-features = false, path = "../../pallets/fungible" }
414pallet-refungible = { default-features = false, path = "../../pallets/refungible" }416pallet-refungible = { default-features = false, path = "../../pallets/refungible" }
415pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }417pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }
418pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }
416pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }419pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }
417# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }420# pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }
418pallet-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" }421pallet-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" }