1234[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.29"1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std', 'opal-runtime']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-proxy-rmrk-core/runtime-benchmarks',37 'pallet-proxy-rmrk-equip/runtime-benchmarks',38 'pallet-foreign-assets/runtime-benchmarks',39 'pallet-unique/runtime-benchmarks',40 'pallet-inflation/runtime-benchmarks',41 'pallet-app-promotion/runtime-benchmarks',42 'pallet-unique-scheduler/runtime-benchmarks',43 'pallet-xcm/runtime-benchmarks',44 'sp-runtime/runtime-benchmarks',45 'xcm-builder/runtime-benchmarks',46]47try-runtime = [48 'frame-try-runtime',49 'frame-executive/try-runtime',50 'frame-support/try-runtime',51 'frame-system/try-runtime',52 'cumulus-pallet-parachain-system/try-runtime',53 'parachain-info/try-runtime',54 'pallet-aura/try-runtime',55 'cumulus-pallet-aura-ext/try-runtime',56 'pallet-balances/try-runtime',57 'pallet-randomness-collective-flip/try-runtime',58 'pallet-timestamp/try-runtime',59 'pallet-transaction-payment/try-runtime',60 'pallet-treasury/try-runtime',61 'pallet-sudo/try-runtime',62 'orml-vesting/try-runtime',63 'orml-xtokens/try-runtime',64 'orml-tokens/try-runtime',65 'cumulus-pallet-xcmp-queue/try-runtime',66 'pallet-xcm/try-runtime',67 'cumulus-pallet-xcm/try-runtime',68 'cumulus-pallet-dmp-queue/try-runtime',69 'pallet-inflation/try-runtime',70 'pallet-unique/try-runtime',71 'pallet-unique-scheduler/try-runtime',72 'pallet-configuration/try-runtime',73 'pallet-charge-transaction/try-runtime',74 'pallet-common/try-runtime',75 'pallet-fungible/try-runtime',76 'pallet-refungible/try-runtime',77 'pallet-nonfungible/try-runtime',78 'pallet-structure/try-runtime',79 'pallet-proxy-rmrk-core/try-runtime',80 'pallet-proxy-rmrk-equip/try-runtime',81 'pallet-app-promotion/try-runtime',82 'pallet-foreign-assets/try-runtime',83 'pallet-evm/try-runtime',84 'pallet-ethereum/try-runtime',85 'pallet-evm-coder-substrate/try-runtime',86 'pallet-evm-contract-helpers/try-runtime',87 'pallet-evm-transaction-payment/try-runtime',88 'pallet-evm-migration/try-runtime',89]90std = [91 'codec/std',92 'cumulus-pallet-aura-ext/std',93 'cumulus-pallet-parachain-system/std',94 'cumulus-pallet-xcm/std',95 'cumulus-pallet-xcmp-queue/std',96 'cumulus-primitives-core/std',97 'cumulus-primitives-utility/std',98 'frame-try-runtime/std',99 'frame-executive/std',100 'frame-support/std',101 'frame-system/std',102 'frame-system-rpc-runtime-api/std',103 'pallet-aura/std',104 'pallet-balances/std',105 106 107 108 109 'pallet-randomness-collective-flip/std',110 'pallet-sudo/std',111 'pallet-timestamp/std',112 'pallet-transaction-payment/std',113 'pallet-transaction-payment-rpc-runtime-api/std',114 'pallet-treasury/std',115 116 'pallet-evm/std',117 'pallet-evm-migration/std',118 'pallet-evm-contract-helpers/std',119 'pallet-evm-transaction-payment/std',120 'pallet-evm-coder-substrate/std',121 'pallet-ethereum/std',122 'pallet-base-fee/std',123 'fp-rpc/std',124 'up-rpc/std',125 'app-promotion-rpc/std',126 'fp-evm-mapping/std',127 'fp-self-contained/std',128 'parachain-info/std',129 'serde',130 'pallet-inflation/std',131 'pallet-configuration/std',132 'pallet-app-promotion/std',133 'pallet-common/std',134 'pallet-structure/std',135 'pallet-fungible/std',136 'pallet-refungible/std',137 'pallet-nonfungible/std',138 'pallet-proxy-rmrk-core/std',139 'pallet-proxy-rmrk-equip/std',140 'pallet-unique/std',141 'pallet-unique-scheduler/std',142 'pallet-charge-transaction/std',143 'up-data-structs/std',144 'sp-api/std',145 'sp-block-builder/std',146 "sp-consensus-aura/std",147 'sp-core/std',148 'sp-inherents/std',149 'sp-io/std',150 'sp-offchain/std',151 'sp-runtime/std',152 'sp-session/std',153 'sp-std/std',154 'sp-transaction-pool/std',155 'sp-version/std',156 'xcm/std',157 'xcm-builder/std',158 'xcm-executor/std',159 'up-common/std',160 'rmrk-rpc/std',161 'evm-coder/std',162 'up-sponsorship/std',163164 "orml-vesting/std",165 "orml-tokens/std",166 "orml-xtokens/std",167 "orml-traits/std",168 "pallet-foreign-assets/std"169]170limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']171opal-runtime = ['refungible', 'scheduler', 'rmrk', 'app-promotion', 'foreign-assets']172173refungible = []174scheduler = []175rmrk = []176foreign-assets = []177app-promotion = []178179180181182[dependencies.codec]183default-features = false184features = ['derive']185package = 'parity-scale-codec'186version = '3.1.2'187188[dependencies.frame-benchmarking]189default-features = false190git = "https://github.com/paritytech/substrate"191optional = true192branch = "polkadot-v0.9.29"193194[dependencies.frame-try-runtime]195default-features = false196git = "https://github.com/paritytech/substrate"197optional = true198branch = "polkadot-v0.9.29"199200[dependencies.frame-executive]201default-features = false202git = "https://github.com/paritytech/substrate"203branch = "polkadot-v0.9.29"204205[dependencies.frame-support]206default-features = false207git = "https://github.com/paritytech/substrate"208branch = "polkadot-v0.9.29"209210[dependencies.frame-system]211default-features = false212git = "https://github.com/paritytech/substrate"213branch = "polkadot-v0.9.29"214215[dependencies.frame-system-benchmarking]216default-features = false217git = "https://github.com/paritytech/substrate"218optional = true219branch = "polkadot-v0.9.29"220221[dependencies.frame-system-rpc-runtime-api]222default-features = false223git = "https://github.com/paritytech/substrate"224branch = "polkadot-v0.9.29"225226[dependencies.hex-literal]227optional = true228version = '0.3.3'229230[dependencies.serde]231default-features = false232features = ['derive']233optional = true234version = '1.0.130'235236[dependencies.pallet-aura]237default-features = false238git = "https://github.com/paritytech/substrate"239branch = "polkadot-v0.9.29"240241[dependencies.pallet-balances]242default-features = false243git = "https://github.com/paritytech/substrate"244branch = "polkadot-v0.9.29"245246247248249250251252253254255256257258259260261262263264265[dependencies.pallet-randomness-collective-flip]266default-features = false267git = "https://github.com/paritytech/substrate"268branch = "polkadot-v0.9.29"269270[dependencies.pallet-sudo]271default-features = false272git = "https://github.com/paritytech/substrate"273branch = "polkadot-v0.9.29"274275[dependencies.pallet-timestamp]276default-features = false277git = "https://github.com/paritytech/substrate"278branch = "polkadot-v0.9.29"279280[dependencies.pallet-transaction-payment]281default-features = false282git = "https://github.com/paritytech/substrate"283branch = "polkadot-v0.9.29"284285[dependencies.pallet-transaction-payment-rpc-runtime-api]286default-features = false287git = "https://github.com/paritytech/substrate"288branch = "polkadot-v0.9.29"289290[dependencies.pallet-treasury]291default-features = false292git = "https://github.com/paritytech/substrate"293branch = "polkadot-v0.9.29"294295296297298299300[dependencies.sp-arithmetic]301default-features = false302git = "https://github.com/paritytech/substrate"303branch = "polkadot-v0.9.29"304305[dependencies.sp-api]306default-features = false307git = "https://github.com/paritytech/substrate"308branch = "polkadot-v0.9.29"309310[dependencies.sp-block-builder]311default-features = false312git = "https://github.com/paritytech/substrate"313branch = "polkadot-v0.9.29"314315[dependencies.sp-core]316default-features = false317git = "https://github.com/paritytech/substrate"318branch = "polkadot-v0.9.29"319320[dependencies.sp-consensus-aura]321default-features = false322git = "https://github.com/paritytech/substrate"323branch = "polkadot-v0.9.29"324325[dependencies.sp-inherents]326default-features = false327git = "https://github.com/paritytech/substrate"328branch = "polkadot-v0.9.29"329330[dependencies.sp-io]331default-features = false332git = "https://github.com/paritytech/substrate"333branch = "polkadot-v0.9.29"334335[dependencies.sp-offchain]336default-features = false337git = "https://github.com/paritytech/substrate"338branch = "polkadot-v0.9.29"339340[dependencies.sp-runtime]341default-features = false342git = "https://github.com/paritytech/substrate"343branch = "polkadot-v0.9.29"344345[dependencies.sp-session]346default-features = false347git = "https://github.com/paritytech/substrate"348branch = "polkadot-v0.9.29"349350[dependencies.sp-std]351default-features = false352git = "https://github.com/paritytech/substrate"353branch = "polkadot-v0.9.29"354355[dependencies.sp-transaction-pool]356default-features = false357git = "https://github.com/paritytech/substrate"358branch = "polkadot-v0.9.29"359360[dependencies.sp-version]361default-features = false362git = "https://github.com/paritytech/substrate"363branch = "polkadot-v0.9.29"364365[dependencies.smallvec]366version = '1.6.1'367368369370371[dependencies.parachain-info]372default-features = false373git = "https://github.com/paritytech/cumulus"374branch = "polkadot-v0.9.29"375376[dependencies.cumulus-pallet-aura-ext]377git = "https://github.com/paritytech/cumulus"378branch = "polkadot-v0.9.29"379default-features = false380381[dependencies.cumulus-pallet-parachain-system]382git = "https://github.com/paritytech/cumulus"383branch = "polkadot-v0.9.29"384default-features = false385386[dependencies.cumulus-primitives-core]387git = "https://github.com/paritytech/cumulus"388branch = "polkadot-v0.9.29"389default-features = false390391[dependencies.cumulus-pallet-xcm]392git = "https://github.com/paritytech/cumulus"393branch = "polkadot-v0.9.29"394default-features = false395396[dependencies.cumulus-pallet-dmp-queue]397git = "https://github.com/paritytech/cumulus"398branch = "polkadot-v0.9.29"399default-features = false400401[dependencies.cumulus-pallet-xcmp-queue]402git = "https://github.com/paritytech/cumulus"403branch = "polkadot-v0.9.29"404default-features = false405406[dependencies.cumulus-primitives-utility]407git = "https://github.com/paritytech/cumulus"408branch = "polkadot-v0.9.29"409default-features = false410411[dependencies.cumulus-primitives-timestamp]412git = "https://github.com/paritytech/cumulus"413branch = "polkadot-v0.9.29"414default-features = false415416417418419[dependencies.polkadot-parachain]420git = "https://github.com/paritytech/polkadot"421branch = "release-v0.9.29"422default-features = false423424[dependencies.xcm]425git = "https://github.com/paritytech/polkadot"426branch = "release-v0.9.29"427default-features = false428429[dependencies.xcm-builder]430git = "https://github.com/paritytech/polkadot"431branch = "release-v0.9.29"432default-features = false433434[dependencies.xcm-executor]435git = "https://github.com/paritytech/polkadot"436branch = "release-v0.9.29"437default-features = false438439[dependencies.pallet-xcm]440git = "https://github.com/paritytech/polkadot"441branch = "release-v0.9.29"442default-features = false443444[dependencies.orml-vesting]445git = "https://github.com/UniqueNetwork/open-runtime-module-library"446branch = "polkadot-v0.9.29"447version = "0.4.1-dev"448default-features = false449450[dependencies.orml-xtokens]451git = "https://github.com/UniqueNetwork/open-runtime-module-library"452branch = "polkadot-v0.9.29"453version = "0.4.1-dev"454default-features = false455456[dependencies.orml-tokens]457git = "https://github.com/UniqueNetwork/open-runtime-module-library"458branch = "polkadot-v0.9.29"459version = "0.4.1-dev"460default-features = false461462[dependencies.orml-traits]463git = "https://github.com/UniqueNetwork/open-runtime-module-library"464branch = "polkadot-v0.9.29"465version = "0.4.1-dev"466default-features = false467468469470471[dependencies]472log = { version = "0.4.16", default-features = false }473up-common = { path = "../../primitives/common", default-features = false }474scale-info = { version = "2.0.1", default-features = false, features = [475 "derive",476] }477derivative = "2.2.0"478pallet-unique = { path = '../../pallets/unique', default-features = false }479up-rpc = { path = "../../primitives/rpc", default-features = false }480app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false}481rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }482fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }483pallet-inflation = { path = '../../pallets/inflation', default-features = false }484pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }485up-data-structs = { path = '../../primitives/data-structs', default-features = false }486pallet-configuration = { default-features = false, path = "../../pallets/configuration" }487pallet-common = { default-features = false, path = "../../pallets/common" }488pallet-structure = { default-features = false, path = "../../pallets/structure" }489pallet-fungible = { default-features = false, path = "../../pallets/fungible" }490pallet-refungible = { default-features = false, path = "../../pallets/refungible" }491pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }492pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }493pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }494pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }495496pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.29", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }497pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }498pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }499pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }500pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }501pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }502pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }503pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }504fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }505fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.29" }506evm-coder = { default-features = false, path = '../../crates/evm-coder' }507up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.29' }508pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }509510511512513impl-trait-for-tuples = "0.2.2"514515516517518[dev-dependencies.logtest]519version = "2.0.0"520521522523524[build-dependencies.substrate-wasm-builder]525git = "https://github.com/paritytech/substrate"526branch = "polkadot-v0.9.29"