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
before · runtime/opal/Cargo.toml
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Opal Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'opal-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version = '0.9.20'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std']20runtime-benchmarks = [21    'hex-literal',22    'frame-benchmarking',23    'frame-support/runtime-benchmarks',24    'frame-system-benchmarking',25    'frame-system/runtime-benchmarks',26    'pallet-ethereum/runtime-benchmarks',27    'pallet-evm-migration/runtime-benchmarks',28    'pallet-evm-coder-substrate/runtime-benchmarks',29    'pallet-balances/runtime-benchmarks',30    'pallet-timestamp/runtime-benchmarks',31    'pallet-common/runtime-benchmarks',32    'pallet-structure/runtime-benchmarks',33    'pallet-fungible/runtime-benchmarks',34    'pallet-refungible/runtime-benchmarks',35    'pallet-nonfungible/runtime-benchmarks',36    'pallet-unique/runtime-benchmarks',37    'pallet-inflation/runtime-benchmarks',38    'pallet-xcm/runtime-benchmarks',39    'sp-runtime/runtime-benchmarks',40    'xcm-builder/runtime-benchmarks',41]42try-runtime = [43    'frame-try-runtime',44    'frame-executive/try-runtime',45    'frame-system/try-runtime',46]47std = [48    'codec/std',49    'cumulus-pallet-aura-ext/std',50    'cumulus-pallet-parachain-system/std',51    'cumulus-pallet-xcm/std',52    'cumulus-pallet-xcmp-queue/std',53    'cumulus-primitives-core/std',54    'cumulus-primitives-utility/std',55    'frame-try-runtime/std',56    'frame-executive/std',57    'frame-support/std',58    'frame-system/std',59    'frame-system-rpc-runtime-api/std',60    'pallet-aura/std',61    'pallet-balances/std',62    # 'pallet-contracts/std',63    # 'pallet-contracts-primitives/std',64    # 'pallet-contracts-rpc-runtime-api/std',65    # 'pallet-contract-helpers/std',66    'pallet-randomness-collective-flip/std',67    'pallet-sudo/std',68    'pallet-timestamp/std',69    'pallet-transaction-payment/std',70    'pallet-transaction-payment-rpc-runtime-api/std',71    'pallet-treasury/std',72    # 'pallet-vesting/std',73    'pallet-evm/std',74    'pallet-evm-migration/std',75    'pallet-evm-contract-helpers/std',76    'pallet-evm-transaction-payment/std',77    'pallet-evm-coder-substrate/std',78    'pallet-ethereum/std',79    'pallet-base-fee/std',80    'fp-rpc/std',81    'up-rpc/std',82    'fp-evm-mapping/std',83    'fp-self-contained/std',84    'parachain-info/std',85    'serde',86    'pallet-inflation/std',87    'pallet-common/std',88    'pallet-structure/std',89    'pallet-fungible/std',90    'pallet-refungible/std',91    'pallet-nonfungible/std',92    'pallet-unique/std',93    'pallet-unq-scheduler/std',94    'pallet-charge-transaction/std',95    'up-data-structs/std',96    'sp-api/std',97    'sp-block-builder/std',98    "sp-consensus-aura/std",99    'sp-core/std',100    'sp-inherents/std',101    'sp-io/std',102    'sp-offchain/std',103    'sp-runtime/std',104    'sp-session/std',105    'sp-std/std',106    'sp-transaction-pool/std',107    'sp-version/std',108    'xcm/std',109    'xcm-builder/std',110    'xcm-executor/std',111    'unique-runtime-common/std',112    'rmrk-rpc/std',113114    "orml-vesting/std",115]116limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']117118################################################################################119# Substrate Dependencies120121[dependencies.codec]122default-features = false123features = ['derive']124package = 'parity-scale-codec'125version = '3.1.2'126127[dependencies.frame-benchmarking]128default-features = false129git = "https://github.com/paritytech/substrate"130optional = true131branch = "polkadot-v0.9.21"132133[dependencies.frame-try-runtime]134default-features = false135git = 'https://github.com/paritytech/substrate'136optional = true137branch = 'polkadot-v0.9.21'138139[dependencies.frame-executive]140default-features = false141git = "https://github.com/paritytech/substrate"142branch = "polkadot-v0.9.21"143144[dependencies.frame-support]145default-features = false146git = "https://github.com/paritytech/substrate"147branch = "polkadot-v0.9.21"148149[dependencies.frame-system]150default-features = false151git = "https://github.com/paritytech/substrate"152branch = "polkadot-v0.9.21"153154[dependencies.frame-system-benchmarking]155default-features = false156git = "https://github.com/paritytech/substrate"157optional = true158branch = "polkadot-v0.9.21"159160[dependencies.frame-system-rpc-runtime-api]161default-features = false162git = "https://github.com/paritytech/substrate"163branch = "polkadot-v0.9.21"164165[dependencies.hex-literal]166optional = true167version = '0.3.3'168169[dependencies.serde]170default-features = false171features = ['derive']172optional = true173version = '1.0.130'174175[dependencies.pallet-aura]176default-features = false177git = "https://github.com/paritytech/substrate"178branch = "polkadot-v0.9.21"179180[dependencies.pallet-balances]181default-features = false182git = "https://github.com/paritytech/substrate"183branch = "polkadot-v0.9.21"184185# Contracts specific packages186# [dependencies.pallet-contracts]187# git = 'https://github.com/paritytech/substrate'188# default-features = false189# branch = 'master'190# version = '4.0.0-dev'191192# [dependencies.pallet-contracts-primitives]193# git = 'https://github.com/paritytech/substrate'194# default-features = false195# branch = 'master'196# version = '4.0.0-dev'197198# [dependencies.pallet-contracts-rpc-runtime-api]199# git = 'https://github.com/paritytech/substrate'200# default-features = false201# branch = 'master'202# version = '4.0.0-dev'203204[dependencies.pallet-randomness-collective-flip]205default-features = false206git = "https://github.com/paritytech/substrate"207branch = "polkadot-v0.9.21"208209[dependencies.pallet-sudo]210default-features = false211git = "https://github.com/paritytech/substrate"212branch = "polkadot-v0.9.21"213214[dependencies.pallet-timestamp]215default-features = false216git = "https://github.com/paritytech/substrate"217branch = "polkadot-v0.9.21"218219[dependencies.pallet-transaction-payment]220default-features = false221git = "https://github.com/paritytech/substrate"222branch = "polkadot-v0.9.21"223224[dependencies.pallet-transaction-payment-rpc-runtime-api]225default-features = false226git = "https://github.com/paritytech/substrate"227branch = "polkadot-v0.9.21"228229[dependencies.pallet-treasury]230default-features = false231git = "https://github.com/paritytech/substrate"232branch = "polkadot-v0.9.21"233234# [dependencies.pallet-vesting]235# default-features = false236# git = 'https://github.com/paritytech/substrate'237# branch = 'master'238239[dependencies.sp-arithmetic]240default-features = false241git = "https://github.com/paritytech/substrate"242branch = "polkadot-v0.9.21"243244[dependencies.sp-api]245default-features = false246git = "https://github.com/paritytech/substrate"247branch = "polkadot-v0.9.21"248249[dependencies.sp-block-builder]250default-features = false251git = "https://github.com/paritytech/substrate"252branch = "polkadot-v0.9.21"253254[dependencies.sp-core]255default-features = false256git = "https://github.com/paritytech/substrate"257branch = "polkadot-v0.9.21"258259[dependencies.sp-consensus-aura]260default-features = false261git = "https://github.com/paritytech/substrate"262branch = "polkadot-v0.9.21"263264[dependencies.sp-inherents]265default-features = false266git = "https://github.com/paritytech/substrate"267branch = "polkadot-v0.9.21"268269[dependencies.sp-io]270default-features = false271git = "https://github.com/paritytech/substrate"272branch = "polkadot-v0.9.21"273274[dependencies.sp-offchain]275default-features = false276git = "https://github.com/paritytech/substrate"277branch = "polkadot-v0.9.21"278279[dependencies.sp-runtime]280default-features = false281git = "https://github.com/paritytech/substrate"282branch = "polkadot-v0.9.21"283284[dependencies.sp-session]285default-features = false286git = "https://github.com/paritytech/substrate"287branch = "polkadot-v0.9.21"288289[dependencies.sp-std]290default-features = false291git = "https://github.com/paritytech/substrate"292branch = "polkadot-v0.9.21"293294[dependencies.sp-transaction-pool]295default-features = false296git = "https://github.com/paritytech/substrate"297branch = "polkadot-v0.9.21"298299[dependencies.sp-version]300default-features = false301git = "https://github.com/paritytech/substrate"302branch = "polkadot-v0.9.21"303304[dependencies.smallvec]305version = '1.6.1'306307################################################################################308# Cumulus dependencies309310[dependencies.parachain-info]311default-features = false312git = "https://github.com/uniquenetwork/cumulus"313branch = "polkadot-v0.9.21"314315[dependencies.cumulus-pallet-aura-ext]316git = "https://github.com/uniquenetwork/cumulus"317branch = "polkadot-v0.9.21"318default-features = false319320[dependencies.cumulus-pallet-parachain-system]321git = "https://github.com/uniquenetwork/cumulus"322branch = "polkadot-v0.9.21"323default-features = false324325[dependencies.cumulus-primitives-core]326git = "https://github.com/uniquenetwork/cumulus"327branch = "polkadot-v0.9.21"328default-features = false329330[dependencies.cumulus-pallet-xcm]331git = "https://github.com/uniquenetwork/cumulus"332branch = "polkadot-v0.9.21"333default-features = false334335[dependencies.cumulus-pallet-dmp-queue]336git = "https://github.com/uniquenetwork/cumulus"337branch = "polkadot-v0.9.21"338default-features = false339340[dependencies.cumulus-pallet-xcmp-queue]341git = "https://github.com/uniquenetwork/cumulus"342branch = "polkadot-v0.9.21"343default-features = false344345[dependencies.cumulus-primitives-utility]346git = "https://github.com/uniquenetwork/cumulus"347branch = "polkadot-v0.9.21"348default-features = false349350[dependencies.cumulus-primitives-timestamp]351git = "https://github.com/uniquenetwork/cumulus"352branch = "polkadot-v0.9.21"353default-features = false354355################################################################################356# Polkadot dependencies357358[dependencies.polkadot-parachain]359git = "https://github.com/paritytech/polkadot"360branch = "release-v0.9.21"361default-features = false362363[dependencies.xcm]364git = "https://github.com/paritytech/polkadot"365branch = "release-v0.9.21"366default-features = false367368[dependencies.xcm-builder]369git = "https://github.com/paritytech/polkadot"370branch = "release-v0.9.21"371default-features = false372373[dependencies.xcm-executor]374git = "https://github.com/paritytech/polkadot"375branch = "release-v0.9.21"376default-features = false377378[dependencies.pallet-xcm]379git = "https://github.com/paritytech/polkadot"380branch = "release-v0.9.21"381default-features = false382383[dependencies.orml-vesting]384git = "https://github.com/uniquenetwork/open-runtime-module-library"385branch = "unique-polkadot-v0.9.21"386version = "0.4.1-dev"387default-features = false388389################################################################################390# RMRK dependencies391392# todo git393[dependencies.rmrk-rpc]394default-features = false395git = "https://github.com/UniqueNetwork/rmrk-substrate.git"396branch = "feature/separate-types-and-traits"397398################################################################################399# local dependencies400401[dependencies]402log = { version = "0.4.16", default-features = false }403unique-runtime-common = { path = "../common", default-features = false }404scale-info = { version = "2.0.1", default-features = false, features = [405    "derive",406] }407derivative = "2.2.0"408pallet-unique = { path = '../../pallets/unique', default-features = false }409up-rpc = { path = "../../primitives/rpc", default-features = false }410fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }411pallet-inflation = { path = '../../pallets/inflation', default-features = false }412up-data-structs = { path = '../../primitives/data-structs', default-features = false }413pallet-common = { default-features = false, path = "../../pallets/common" }414pallet-structure = { default-features = false, path = "../../pallets/structure" }415pallet-fungible = { default-features = false, path = "../../pallets/fungible" }416pallet-refungible = { default-features = false, path = "../../pallets/refungible" }417pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }418pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }419# 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" }421pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }422pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }423pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }424pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }425pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }426pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }427pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }428fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }429fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }430431################################################################################432# Build Dependencies433434[build-dependencies.substrate-wasm-builder]435git = "https://github.com/paritytech/substrate"436branch = "polkadot-v0.9.21"
after · runtime/opal/Cargo.toml
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Opal Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'opal-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version = '0.9.20'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std']20runtime-benchmarks = [21    'hex-literal',22    'frame-benchmarking',23    'frame-support/runtime-benchmarks',24    'frame-system-benchmarking',25    'frame-system/runtime-benchmarks',26    'pallet-ethereum/runtime-benchmarks',27    'pallet-evm-migration/runtime-benchmarks',28    'pallet-evm-coder-substrate/runtime-benchmarks',29    'pallet-balances/runtime-benchmarks',30    'pallet-timestamp/runtime-benchmarks',31    'pallet-common/runtime-benchmarks',32    'pallet-structure/runtime-benchmarks',33    'pallet-fungible/runtime-benchmarks',34    'pallet-refungible/runtime-benchmarks',35    'pallet-nonfungible/runtime-benchmarks',36    'pallet-rmrk-proxy/runtime-benchmarks',37    'pallet-unique/runtime-benchmarks',38    'pallet-inflation/runtime-benchmarks',39    'pallet-xcm/runtime-benchmarks',40    'sp-runtime/runtime-benchmarks',41    'xcm-builder/runtime-benchmarks',42]43try-runtime = [44    'frame-try-runtime',45    'frame-executive/try-runtime',46    'frame-system/try-runtime',47]48std = [49    'codec/std',50    'cumulus-pallet-aura-ext/std',51    'cumulus-pallet-parachain-system/std',52    'cumulus-pallet-xcm/std',53    'cumulus-pallet-xcmp-queue/std',54    'cumulus-primitives-core/std',55    'cumulus-primitives-utility/std',56    'frame-try-runtime/std',57    'frame-executive/std',58    'frame-support/std',59    'frame-system/std',60    'frame-system-rpc-runtime-api/std',61    'pallet-aura/std',62    'pallet-balances/std',63    # 'pallet-contracts/std',64    # 'pallet-contracts-primitives/std',65    # 'pallet-contracts-rpc-runtime-api/std',66    # 'pallet-contract-helpers/std',67    'pallet-randomness-collective-flip/std',68    'pallet-sudo/std',69    'pallet-timestamp/std',70    'pallet-transaction-payment/std',71    'pallet-transaction-payment-rpc-runtime-api/std',72    'pallet-treasury/std',73    # 'pallet-vesting/std',74    'pallet-evm/std',75    'pallet-evm-migration/std',76    'pallet-evm-contract-helpers/std',77    'pallet-evm-transaction-payment/std',78    'pallet-evm-coder-substrate/std',79    'pallet-ethereum/std',80    'pallet-base-fee/std',81    'fp-rpc/std',82    'up-rpc/std',83    'fp-evm-mapping/std',84    'fp-self-contained/std',85    'parachain-info/std',86    'serde',87    'pallet-inflation/std',88    'pallet-common/std',89    'pallet-structure/std',90    'pallet-fungible/std',91    'pallet-refungible/std',92    'pallet-nonfungible/std',93    'pallet-rmrk-proxy/std',94    'pallet-unique/std',95    'pallet-unq-scheduler/std',96    'pallet-charge-transaction/std',97    'up-data-structs/std',98    'sp-api/std',99    'sp-block-builder/std',100    "sp-consensus-aura/std",101    'sp-core/std',102    'sp-inherents/std',103    'sp-io/std',104    'sp-offchain/std',105    'sp-runtime/std',106    'sp-session/std',107    'sp-std/std',108    'sp-transaction-pool/std',109    'sp-version/std',110    'xcm/std',111    'xcm-builder/std',112    'xcm-executor/std',113    'unique-runtime-common/std',114    'rmrk-rpc/std',115116    "orml-vesting/std",117]118limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']119120################################################################################121# Substrate Dependencies122123[dependencies.codec]124default-features = false125features = ['derive']126package = 'parity-scale-codec'127version = '3.1.2'128129[dependencies.frame-benchmarking]130default-features = false131git = "https://github.com/paritytech/substrate"132optional = true133branch = "polkadot-v0.9.21"134135[dependencies.frame-try-runtime]136default-features = false137git = 'https://github.com/paritytech/substrate'138optional = true139branch = 'polkadot-v0.9.21'140141[dependencies.frame-executive]142default-features = false143git = "https://github.com/paritytech/substrate"144branch = "polkadot-v0.9.21"145146[dependencies.frame-support]147default-features = false148git = "https://github.com/paritytech/substrate"149branch = "polkadot-v0.9.21"150151[dependencies.frame-system]152default-features = false153git = "https://github.com/paritytech/substrate"154branch = "polkadot-v0.9.21"155156[dependencies.frame-system-benchmarking]157default-features = false158git = "https://github.com/paritytech/substrate"159optional = true160branch = "polkadot-v0.9.21"161162[dependencies.frame-system-rpc-runtime-api]163default-features = false164git = "https://github.com/paritytech/substrate"165branch = "polkadot-v0.9.21"166167[dependencies.hex-literal]168optional = true169version = '0.3.3'170171[dependencies.serde]172default-features = false173features = ['derive']174optional = true175version = '1.0.130'176177[dependencies.pallet-aura]178default-features = false179git = "https://github.com/paritytech/substrate"180branch = "polkadot-v0.9.21"181182[dependencies.pallet-balances]183default-features = false184git = "https://github.com/paritytech/substrate"185branch = "polkadot-v0.9.21"186187# Contracts specific packages188# [dependencies.pallet-contracts]189# git = 'https://github.com/paritytech/substrate'190# default-features = false191# branch = 'master'192# version = '4.0.0-dev'193194# [dependencies.pallet-contracts-primitives]195# git = 'https://github.com/paritytech/substrate'196# default-features = false197# branch = 'master'198# version = '4.0.0-dev'199200# [dependencies.pallet-contracts-rpc-runtime-api]201# git = 'https://github.com/paritytech/substrate'202# default-features = false203# branch = 'master'204# version = '4.0.0-dev'205206[dependencies.pallet-randomness-collective-flip]207default-features = false208git = "https://github.com/paritytech/substrate"209branch = "polkadot-v0.9.21"210211[dependencies.pallet-sudo]212default-features = false213git = "https://github.com/paritytech/substrate"214branch = "polkadot-v0.9.21"215216[dependencies.pallet-timestamp]217default-features = false218git = "https://github.com/paritytech/substrate"219branch = "polkadot-v0.9.21"220221[dependencies.pallet-transaction-payment]222default-features = false223git = "https://github.com/paritytech/substrate"224branch = "polkadot-v0.9.21"225226[dependencies.pallet-transaction-payment-rpc-runtime-api]227default-features = false228git = "https://github.com/paritytech/substrate"229branch = "polkadot-v0.9.21"230231[dependencies.pallet-treasury]232default-features = false233git = "https://github.com/paritytech/substrate"234branch = "polkadot-v0.9.21"235236# [dependencies.pallet-vesting]237# default-features = false238# git = 'https://github.com/paritytech/substrate'239# branch = 'master'240241[dependencies.sp-arithmetic]242default-features = false243git = "https://github.com/paritytech/substrate"244branch = "polkadot-v0.9.21"245246[dependencies.sp-api]247default-features = false248git = "https://github.com/paritytech/substrate"249branch = "polkadot-v0.9.21"250251[dependencies.sp-block-builder]252default-features = false253git = "https://github.com/paritytech/substrate"254branch = "polkadot-v0.9.21"255256[dependencies.sp-core]257default-features = false258git = "https://github.com/paritytech/substrate"259branch = "polkadot-v0.9.21"260261[dependencies.sp-consensus-aura]262default-features = false263git = "https://github.com/paritytech/substrate"264branch = "polkadot-v0.9.21"265266[dependencies.sp-inherents]267default-features = false268git = "https://github.com/paritytech/substrate"269branch = "polkadot-v0.9.21"270271[dependencies.sp-io]272default-features = false273git = "https://github.com/paritytech/substrate"274branch = "polkadot-v0.9.21"275276[dependencies.sp-offchain]277default-features = false278git = "https://github.com/paritytech/substrate"279branch = "polkadot-v0.9.21"280281[dependencies.sp-runtime]282default-features = false283git = "https://github.com/paritytech/substrate"284branch = "polkadot-v0.9.21"285286[dependencies.sp-session]287default-features = false288git = "https://github.com/paritytech/substrate"289branch = "polkadot-v0.9.21"290291[dependencies.sp-std]292default-features = false293git = "https://github.com/paritytech/substrate"294branch = "polkadot-v0.9.21"295296[dependencies.sp-transaction-pool]297default-features = false298git = "https://github.com/paritytech/substrate"299branch = "polkadot-v0.9.21"300301[dependencies.sp-version]302default-features = false303git = "https://github.com/paritytech/substrate"304branch = "polkadot-v0.9.21"305306[dependencies.smallvec]307version = '1.6.1'308309################################################################################310# Cumulus dependencies311312[dependencies.parachain-info]313default-features = false314git = "https://github.com/uniquenetwork/cumulus"315branch = "polkadot-v0.9.21"316317[dependencies.cumulus-pallet-aura-ext]318git = "https://github.com/uniquenetwork/cumulus"319branch = "polkadot-v0.9.21"320default-features = false321322[dependencies.cumulus-pallet-parachain-system]323git = "https://github.com/uniquenetwork/cumulus"324branch = "polkadot-v0.9.21"325default-features = false326327[dependencies.cumulus-primitives-core]328git = "https://github.com/uniquenetwork/cumulus"329branch = "polkadot-v0.9.21"330default-features = false331332[dependencies.cumulus-pallet-xcm]333git = "https://github.com/uniquenetwork/cumulus"334branch = "polkadot-v0.9.21"335default-features = false336337[dependencies.cumulus-pallet-dmp-queue]338git = "https://github.com/uniquenetwork/cumulus"339branch = "polkadot-v0.9.21"340default-features = false341342[dependencies.cumulus-pallet-xcmp-queue]343git = "https://github.com/uniquenetwork/cumulus"344branch = "polkadot-v0.9.21"345default-features = false346347[dependencies.cumulus-primitives-utility]348git = "https://github.com/uniquenetwork/cumulus"349branch = "polkadot-v0.9.21"350default-features = false351352[dependencies.cumulus-primitives-timestamp]353git = "https://github.com/uniquenetwork/cumulus"354branch = "polkadot-v0.9.21"355default-features = false356357################################################################################358# Polkadot dependencies359360[dependencies.polkadot-parachain]361git = "https://github.com/paritytech/polkadot"362branch = "release-v0.9.21"363default-features = false364365[dependencies.xcm]366git = "https://github.com/paritytech/polkadot"367branch = "release-v0.9.21"368default-features = false369370[dependencies.xcm-builder]371git = "https://github.com/paritytech/polkadot"372branch = "release-v0.9.21"373default-features = false374375[dependencies.xcm-executor]376git = "https://github.com/paritytech/polkadot"377branch = "release-v0.9.21"378default-features = false379380[dependencies.pallet-xcm]381git = "https://github.com/paritytech/polkadot"382branch = "release-v0.9.21"383default-features = false384385[dependencies.orml-vesting]386git = "https://github.com/uniquenetwork/open-runtime-module-library"387branch = "unique-polkadot-v0.9.21"388version = "0.4.1-dev"389default-features = false390391################################################################################392# RMRK dependencies393394# todo git395[dependencies.rmrk-rpc]396default-features = false397git = "https://github.com/UniqueNetwork/rmrk-substrate.git"398branch = "feature/separate-types-and-traits"399400################################################################################401# local dependencies402403[dependencies]404log = { version = "0.4.16", default-features = false }405unique-runtime-common = { path = "../common", default-features = false }406scale-info = { version = "2.0.1", default-features = false, features = [407    "derive",408] }409derivative = "2.2.0"410pallet-unique = { path = '../../pallets/unique', default-features = false }411up-rpc = { path = "../../primitives/rpc", default-features = false }412fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }413pallet-inflation = { path = '../../pallets/inflation', default-features = false }414up-data-structs = { path = '../../primitives/data-structs', default-features = false }415pallet-common = { default-features = false, path = "../../pallets/common" }416pallet-structure = { default-features = false, path = "../../pallets/structure" }417pallet-fungible = { default-features = false, path = "../../pallets/fungible" }418pallet-refungible = { default-features = false, path = "../../pallets/refungible" }419pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }420pallet-rmrk-proxy = { default-features = false, path = "../../pallets/rmrk-proxy" }421pallet-unq-scheduler = { path = '../../pallets/scheduler', default-features = false }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" }424pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }425pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }426pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }427pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }428pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }429pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }430pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }431fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }432fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }433434################################################################################435# Build Dependencies436437[build-dependencies.substrate-wasm-builder]438git = "https://github.com/paritytech/substrate"439branch = "polkadot-v0.9.21"
modifiedruntime/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,