1234cargo-features = ["workspace-inheritance"]56[package]7authors = ['Unique Network <support@uniquenetwork.io>']8build = 'build.rs'9description = 'Opal Runtime'10edition = '2021'11homepage = 'https://unique.network'12license = 'GPLv3'13name = 'opal-runtime'14repository = 'https://github.com/UniqueNetwork/unique-chain'15version = "0.9.33"1617[package.metadata.docs.rs]18targets = ['x86_64-unknown-linux-gnu']1920[features]21default = ['std', 'opal-runtime']22runtime-benchmarks = [23 'hex-literal',24 'frame-benchmarking',25 'frame-support/runtime-benchmarks',26 'frame-system-benchmarking',27 'frame-system/runtime-benchmarks',28 'pallet-ethereum/runtime-benchmarks',29 'pallet-evm-migration/runtime-benchmarks',30 'pallet-evm-coder-substrate/runtime-benchmarks',31 'pallet-balances/runtime-benchmarks',32 'pallet-timestamp/runtime-benchmarks',33 'pallet-common/runtime-benchmarks',34 'pallet-structure/runtime-benchmarks',35 'pallet-fungible/runtime-benchmarks',36 'pallet-refungible/runtime-benchmarks',37 'pallet-nonfungible/runtime-benchmarks',38 'pallet-proxy-rmrk-core/runtime-benchmarks',39 'pallet-proxy-rmrk-equip/runtime-benchmarks',40 'pallet-foreign-assets/runtime-benchmarks',41 'pallet-unique/runtime-benchmarks',42 'pallet-inflation/runtime-benchmarks',43 'pallet-app-promotion/runtime-benchmarks',44 'pallet-unique-scheduler-v2/runtime-benchmarks',45 'pallet-xcm/runtime-benchmarks',46 'sp-runtime/runtime-benchmarks',47 'xcm-builder/runtime-benchmarks',48 'pallet-maintenance/runtime-benchmarks',49]50try-runtime = [51 'frame-try-runtime',52 'frame-try-runtime?/try-runtime',53 'frame-executive/try-runtime',54 'frame-support/try-runtime',55 'frame-system/try-runtime',56 'cumulus-pallet-parachain-system/try-runtime',57 'parachain-info/try-runtime',58 'pallet-aura/try-runtime',59 'cumulus-pallet-aura-ext/try-runtime',60 'pallet-balances/try-runtime',61 'pallet-randomness-collective-flip/try-runtime',62 'pallet-timestamp/try-runtime',63 'pallet-transaction-payment/try-runtime',64 'pallet-treasury/try-runtime',65 'pallet-sudo/try-runtime',66 'orml-vesting/try-runtime',67 'orml-xtokens/try-runtime',68 'orml-tokens/try-runtime',69 'cumulus-pallet-xcmp-queue/try-runtime',70 'pallet-xcm/try-runtime',71 'cumulus-pallet-xcm/try-runtime',72 'cumulus-pallet-dmp-queue/try-runtime',73 "pallet-authorship/try-runtime",74 "pallet-collator-selection/try-runtime",75 "pallet-session/try-runtime",76 'pallet-inflation/try-runtime',77 'pallet-unique/try-runtime',78 'pallet-configuration/try-runtime',79 'pallet-charge-transaction/try-runtime',80 'pallet-common/try-runtime',81 'pallet-fungible/try-runtime',82 'pallet-refungible/try-runtime',83 'pallet-nonfungible/try-runtime',84 'pallet-structure/try-runtime',85 'pallet-proxy-rmrk-core/try-runtime',86 'pallet-proxy-rmrk-equip/try-runtime',87 'pallet-app-promotion/try-runtime',88 'pallet-foreign-assets/try-runtime',89 'pallet-ethereum/try-runtime',90 'pallet-evm/try-runtime',91 'pallet-evm-coder-substrate/try-runtime',92 'pallet-evm-contract-helpers/try-runtime',93 'pallet-evm-transaction-payment/try-runtime',94 'pallet-evm-migration/try-runtime',95 'pallet-base-fee/try-runtime',96 'pallet-unique-scheduler-v2/try-runtime',97 'pallet-maintenance/try-runtime',98 'pallet-test-utils?/try-runtime',99]100std = [101 'codec/std',102 'cumulus-pallet-aura-ext/std',103 'cumulus-pallet-parachain-system/std',104 'cumulus-pallet-xcm/std',105 'cumulus-pallet-xcmp-queue/std',106 'cumulus-primitives-core/std',107 'cumulus-primitives-utility/std',108 'frame-try-runtime/std',109 'frame-executive/std',110 'frame-support/std',111 'frame-system/std',112 'frame-system-rpc-runtime-api/std',113 'pallet-aura/std',114 'pallet-balances/std',115 116 117 118 119 "pallet-authorship/std",120 'pallet-collator-selection/std',121 "pallet-session/std",122 'pallet-randomness-collective-flip/std',123 'pallet-sudo/std',124 'pallet-timestamp/std',125 'pallet-transaction-payment/std',126 'pallet-transaction-payment-rpc-runtime-api/std',127 'pallet-treasury/std',128 'pallet-evm/std',129 'pallet-evm-migration/std',130 'pallet-evm-contract-helpers/std',131 'pallet-evm-transaction-payment/std',132 'pallet-evm-coder-substrate/std',133 'pallet-ethereum/std',134 'pallet-base-fee/std',135 'fp-rpc/std',136 'up-rpc/std',137 'app-promotion-rpc/std',138 'fp-evm-mapping/std',139 'fp-self-contained/std',140 'parachain-info/std',141 'serde',142 'pallet-inflation/std',143 'pallet-configuration/std',144 'pallet-app-promotion/std',145 'pallet-common/std',146 'pallet-structure/std',147 'pallet-fungible/std',148 'pallet-refungible/std',149 'pallet-nonfungible/std',150 'pallet-proxy-rmrk-core/std',151 'pallet-proxy-rmrk-equip/std',152 'pallet-unique/std',153 'pallet-unique-scheduler-v2/std',154 'pallet-charge-transaction/std',155 'up-data-structs/std',156 'sp-api/std',157 'sp-block-builder/std',158 "sp-consensus-aura/std",159 'sp-core/std',160 'sp-inherents/std',161 'sp-io/std',162 'sp-offchain/std',163 'sp-runtime/std',164 'sp-session/std',165 'sp-std/std',166 'sp-transaction-pool/std',167 'sp-version/std',168 'xcm/std',169 'xcm-builder/std',170 'xcm-executor/std',171 'up-common/std',172 'rmrk-rpc/std',173 'evm-coder/std',174 'up-sponsorship/std',175176 "orml-vesting/std",177 "orml-tokens/std",178 "orml-xtokens/std",179 "orml-traits/std",180 "pallet-foreign-assets/std",181182 'pallet-maintenance/std',183 'pallet-test-utils?/std',184]185limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']186opal-runtime = [187 'refungible',188 'rmrk',189 'app-promotion',190 'collator-selection',191 'foreign-assets',192 'pallet-test-utils',193]194become-sapphire = []195196refungible = []197scheduler = []198rmrk = []199foreign-assets = []200app-promotion = []201collator-selection = []202203204205206[dependencies.codec]207default-features = false208features = ['derive']209package = 'parity-scale-codec'210version = '3.1.2'211212[dependencies.frame-benchmarking]213default-features = false214git = "https://github.com/paritytech/substrate"215optional = true216branch = "polkadot-v0.9.33"217218[dependencies.frame-try-runtime]219default-features = false220git = "https://github.com/paritytech/substrate"221optional = true222branch = "polkadot-v0.9.33"223224[dependencies.frame-executive]225default-features = false226git = "https://github.com/paritytech/substrate"227branch = "polkadot-v0.9.33"228229[dependencies.frame-support]230default-features = false231git = "https://github.com/paritytech/substrate"232branch = "polkadot-v0.9.33"233234[dependencies.frame-system]235default-features = false236git = "https://github.com/paritytech/substrate"237branch = "polkadot-v0.9.33"238239[dependencies.frame-system-benchmarking]240default-features = false241git = "https://github.com/paritytech/substrate"242optional = true243branch = "polkadot-v0.9.33"244245[dependencies.frame-system-rpc-runtime-api]246default-features = false247git = "https://github.com/paritytech/substrate"248branch = "polkadot-v0.9.33"249250[dependencies.hex-literal]251optional = true252version = '0.3.3'253254[dependencies.serde]255default-features = false256features = ['derive']257optional = true258version = '1.0.130'259260[dependencies.pallet-aura]261default-features = false262git = "https://github.com/paritytech/substrate"263branch = "polkadot-v0.9.33"264265[dependencies.pallet-authorship]266default-features = false267git = 'https://github.com/paritytech/substrate'268branch = 'polkadot-v0.9.33'269270[dependencies.pallet-session]271default-features = false272git = 'https://github.com/paritytech/substrate'273branch = 'polkadot-v0.9.33'274275[dependencies.pallet-balances]276default-features = false277git = "https://github.com/paritytech/substrate"278branch = "polkadot-v0.9.33"279280281282283284285286287288289290291292293294295296297298299[dependencies.pallet-randomness-collective-flip]300default-features = false301git = "https://github.com/paritytech/substrate"302branch = "polkadot-v0.9.33"303304[dependencies.pallet-sudo]305default-features = false306git = "https://github.com/paritytech/substrate"307branch = "polkadot-v0.9.33"308309[dependencies.pallet-timestamp]310default-features = false311git = "https://github.com/paritytech/substrate"312branch = "polkadot-v0.9.33"313314[dependencies.pallet-transaction-payment]315default-features = false316git = "https://github.com/paritytech/substrate"317branch = "polkadot-v0.9.33"318319[dependencies.pallet-transaction-payment-rpc-runtime-api]320default-features = false321git = "https://github.com/paritytech/substrate"322branch = "polkadot-v0.9.33"323324[dependencies.pallet-treasury]325default-features = false326git = "https://github.com/paritytech/substrate"327branch = "polkadot-v0.9.33"328329[dependencies.sp-arithmetic]330default-features = false331git = "https://github.com/paritytech/substrate"332branch = "polkadot-v0.9.33"333334[dependencies.sp-api]335default-features = false336git = "https://github.com/paritytech/substrate"337branch = "polkadot-v0.9.33"338339[dependencies.sp-block-builder]340default-features = false341git = "https://github.com/paritytech/substrate"342branch = "polkadot-v0.9.33"343344[dependencies.sp-core]345default-features = false346git = "https://github.com/paritytech/substrate"347branch = "polkadot-v0.9.33"348349[dependencies.sp-consensus-aura]350default-features = false351git = "https://github.com/paritytech/substrate"352branch = "polkadot-v0.9.33"353354[dependencies.sp-inherents]355default-features = false356git = "https://github.com/paritytech/substrate"357branch = "polkadot-v0.9.33"358359[dependencies.sp-io]360default-features = false361git = "https://github.com/paritytech/substrate"362branch = "polkadot-v0.9.33"363364[dependencies.sp-offchain]365default-features = false366git = "https://github.com/paritytech/substrate"367branch = "polkadot-v0.9.33"368369[dependencies.sp-runtime]370default-features = false371git = "https://github.com/paritytech/substrate"372branch = "polkadot-v0.9.33"373374[dependencies.sp-session]375default-features = false376git = "https://github.com/paritytech/substrate"377branch = "polkadot-v0.9.33"378379[dependencies.sp-std]380default-features = false381git = "https://github.com/paritytech/substrate"382branch = "polkadot-v0.9.33"383384[dependencies.sp-transaction-pool]385default-features = false386git = "https://github.com/paritytech/substrate"387branch = "polkadot-v0.9.33"388389[dependencies.sp-version]390default-features = false391git = "https://github.com/paritytech/substrate"392branch = "polkadot-v0.9.33"393394[dependencies.smallvec]395version = '1.6.1'396397398399400[dependencies.parachain-info]401default-features = false402git = "https://github.com/paritytech/cumulus"403branch = "polkadot-v0.9.33"404405[dependencies.cumulus-pallet-aura-ext]406git = "https://github.com/paritytech/cumulus"407branch = "polkadot-v0.9.33"408default-features = false409410[dependencies.cumulus-pallet-parachain-system]411git = "https://github.com/paritytech/cumulus"412branch = "polkadot-v0.9.33"413default-features = false414415[dependencies.cumulus-primitives-core]416git = "https://github.com/paritytech/cumulus"417branch = "polkadot-v0.9.33"418default-features = false419420[dependencies.cumulus-pallet-xcm]421git = "https://github.com/paritytech/cumulus"422branch = "polkadot-v0.9.33"423default-features = false424425[dependencies.cumulus-pallet-dmp-queue]426git = "https://github.com/paritytech/cumulus"427branch = "polkadot-v0.9.33"428default-features = false429430[dependencies.cumulus-pallet-xcmp-queue]431git = "https://github.com/paritytech/cumulus"432branch = "polkadot-v0.9.33"433default-features = false434435[dependencies.cumulus-primitives-utility]436git = "https://github.com/paritytech/cumulus"437branch = "polkadot-v0.9.33"438default-features = false439440[dependencies.cumulus-primitives-timestamp]441git = "https://github.com/paritytech/cumulus"442branch = "polkadot-v0.9.33"443default-features = false444445446447448[dependencies.polkadot-parachain]449git = "https://github.com/paritytech/polkadot"450branch = "release-v0.9.33"451default-features = false452453[dependencies.xcm]454git = "https://github.com/paritytech/polkadot"455branch = "release-v0.9.33"456default-features = false457458[dependencies.xcm-builder]459git = "https://github.com/paritytech/polkadot"460branch = "release-v0.9.33"461default-features = false462463[dependencies.xcm-executor]464git = "https://github.com/paritytech/polkadot"465branch = "release-v0.9.33"466default-features = false467468[dependencies.pallet-xcm]469git = "https://github.com/paritytech/polkadot"470branch = "release-v0.9.33"471default-features = false472473474475476[dependencies]477orml-vesting.workspace = true478orml-xtokens.workspace = true479orml-tokens.workspace = true480orml-traits.workspace = true481482log = { version = "0.4.16", default-features = false }483up-common = { path = "../../primitives/common", default-features = false }484scale-info = { version = "2.0.1", default-features = false, features = [485 "derive",486] }487derivative = "2.2.0"488pallet-unique = { path = '../../pallets/unique', default-features = false }489up-rpc = { path = "../../primitives/rpc", default-features = false }490app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }491rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }492fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }493fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }494pallet-inflation = { path = '../../pallets/inflation', default-features = false }495pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }496up-data-structs = { path = '../../primitives/data-structs', default-features = false }497pallet-collator-selection = { default-features = false, path = "../../pallets/collator-selection" }498pallet-configuration = { default-features = false, path = "../../pallets/configuration" }499pallet-common = { default-features = false, path = "../../pallets/common" }500pallet-structure = { default-features = false, path = "../../pallets/structure" }501pallet-fungible = { default-features = false, path = "../../pallets/fungible" }502pallet-refungible = { default-features = false, path = "../../pallets/refungible" }503pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }504pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }505pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }506pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.33", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }507pallet-unique-scheduler-v2 = { path = '../../pallets/scheduler-v2', default-features = false }508pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }509pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }510pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }511pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }512pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }513pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }514pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }515fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }516fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }517pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }518evm-coder = { default-features = false, path = '../../crates/evm-coder' }519up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.33' }520pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }521pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }522precompile-utils-macro = { path = "../common/ethereum/precompiles/utils/macro" }523num_enum = { version = "0.5.3", default-features = false }524525526527528pallet-test-utils = { optional = true, default-features = false, path = "../../test-pallets/utils" }529530531532533impl-trait-for-tuples = "0.2.2"534535536537538[dev-dependencies.logtest]539version = "2.0.0"540541542543544[build-dependencies.substrate-wasm-builder]545git = "https://github.com/paritytech/substrate"546branch = "polkadot-v0.9.33"