git.delta.rocks / unique-network / refs/commits / a7fe2533e0cf

difftreelog

feat integrate rmrk proxy into opal runtime

Daniel Shiposha2022-05-18parent: #7faf112.patch.diff
in: master

2 files changed

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-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" }
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
901 type WeightInfo = pallet_nonfungible::weights::SubstrateWeight<Self>;901 type WeightInfo = pallet_nonfungible::weights::SubstrateWeight<Self>;
902}902}
903
904impl pallet_rmrk_proxy::Config for Runtime {
905 type Event = Event;
906}
903907
904impl pallet_unique::Config for Runtime {908impl pallet_unique::Config for Runtime {
905 type Event = Event;909 type Event = Event;
1013 Refungible: pallet_refungible::{Pallet, Storage} = 68,1017 Refungible: pallet_refungible::{Pallet, Storage} = 68,
1014 Nonfungible: pallet_nonfungible::{Pallet, Storage} = 69,1018 Nonfungible: pallet_nonfungible::{Pallet, Storage} = 69,
1015 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,
10161021
1017 // Frontier1022 // Frontier
1018 EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,1023 EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,