1234[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Unique Runtime'8edition = '2021'9homepage = 'https://unique.network'10license = 'GPLv3'11name = 'unique-runtime'12repository = 'https://github.com/UniqueNetwork/unique-chain'13version.workspace = true1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std', 'unique-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-data-management/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-unique/runtime-benchmarks',39 'pallet-foreign-assets/runtime-benchmarks',40 'pallet-inflation/runtime-benchmarks',41 'pallet-collator-selection/runtime-benchmarks',42 'pallet-app-promotion/runtime-benchmarks',43 'pallet-xcm/runtime-benchmarks',44 'sp-runtime/runtime-benchmarks',45 'xcm-builder/runtime-benchmarks',46 'up-data-structs/runtime-benchmarks',47 'pallet-maintenance/runtime-benchmarks',48]49try-runtime = [50 'frame-try-runtime',51 'frame-executive/try-runtime',52 'frame-support/try-runtime',53 'frame-system/try-runtime',54 'cumulus-pallet-parachain-system/try-runtime',55 'parachain-info/try-runtime',56 'pallet-aura/try-runtime',57 'cumulus-pallet-aura-ext/try-runtime',58 'pallet-balances/try-runtime',59 'pallet-randomness-collective-flip/try-runtime',60 'pallet-timestamp/try-runtime',61 'pallet-transaction-payment/try-runtime',62 'pallet-treasury/try-runtime',63 'pallet-sudo/try-runtime',64 'orml-vesting/try-runtime',65 'orml-xtokens/try-runtime',66 'orml-tokens/try-runtime',67 'cumulus-pallet-xcmp-queue/try-runtime',68 'pallet-xcm/try-runtime',69 'cumulus-pallet-xcm/try-runtime',70 'cumulus-pallet-dmp-queue/try-runtime',71 "pallet-authorship/try-runtime",72 "pallet-collator-selection/try-runtime",73 "pallet-session/try-runtime",74 "pallet-identity/try-runtime",75 'pallet-inflation/try-runtime',76 'pallet-unique/try-runtime',77 'pallet-configuration/try-runtime',78 'pallet-charge-transaction/try-runtime',79 'pallet-common/try-runtime',80 'pallet-fungible/try-runtime',81 'pallet-refungible/try-runtime',82 'pallet-nonfungible/try-runtime',83 'pallet-structure/try-runtime',84 'pallet-proxy-rmrk-core/try-runtime',85 'pallet-proxy-rmrk-equip/try-runtime',86 'pallet-app-promotion/try-runtime',87 'pallet-foreign-assets/try-runtime',88 'pallet-ethereum/try-runtime',89 'pallet-evm/try-runtime',90 'pallet-evm-coder-substrate/try-runtime',91 'pallet-evm-contract-helpers/try-runtime',92 'pallet-evm-transaction-payment/try-runtime',93 'pallet-data-management/try-runtime',94 'pallet-maintenance/try-runtime',95 'fp-self-contained/try-runtime',96]97std = [98 'codec/std',99 'cumulus-pallet-aura-ext/std',100 'cumulus-pallet-parachain-system/std',101 'cumulus-pallet-xcm/std',102 'cumulus-pallet-xcmp-queue/std',103 'cumulus-primitives-core/std',104 'cumulus-primitives-utility/std',105 'frame-try-runtime/std',106 'frame-executive/std',107 'frame-support/std',108 'frame-system/std',109 'frame-system-rpc-runtime-api/std',110 'pallet-aura/std',111 'pallet-balances/std',112 113 114 115 116 "pallet-authorship/std",117 'pallet-collator-selection/std',118 "pallet-session/std",119 "pallet-identity/std",120 'pallet-randomness-collective-flip/std',121 'pallet-sudo/std',122 'pallet-timestamp/std',123 'pallet-transaction-payment/std',124 'pallet-transaction-payment-rpc-runtime-api/std',125 'pallet-treasury/std',126 'pallet-evm/std',127 'pallet-data-management/std',128 'pallet-evm-contract-helpers/std',129 'pallet-evm-transaction-payment/std',130 'pallet-evm-coder-substrate/std',131 'pallet-ethereum/std',132 'pallet-base-fee/std',133 'fp-rpc/std',134 'up-rpc/std',135 'up-pov-estimate-rpc/std',136 'app-promotion-rpc/std',137 'fp-evm-mapping/std',138 'fp-self-contained/std',139 'parachain-info/std',140 'serde',141 'pallet-inflation/std',142 'pallet-configuration/std',143 'pallet-app-promotion/std',144 'pallet-common/std',145 'pallet-structure/std',146 'pallet-fungible/std',147 'pallet-refungible/std',148 'pallet-nonfungible/std',149 'pallet-proxy-rmrk-core/std',150 'pallet-proxy-rmrk-equip/std',151 'pallet-unique/std',152 'pallet-charge-transaction/std',153 'up-data-structs/std',154 'sp-api/std',155 'sp-block-builder/std',156 "sp-consensus-aura/std",157 'sp-core/std',158 'sp-inherents/std',159 'sp-io/std',160 'sp-offchain/std',161 'sp-runtime/std',162 'sp-session/std',163 'sp-std/std',164 'sp-transaction-pool/std',165 'sp-version/std',166 'xcm/std',167 'xcm-builder/std',168 'xcm-executor/std',169 'up-common/std',170 'rmrk-rpc/std',171 'evm-coder/std',172 'up-sponsorship/std',173174 "orml-vesting/std",175 "orml-tokens/std",176 "orml-xtokens/std",177 "orml-traits/std",178 "pallet-foreign-assets/std",179 "pallet-maintenance/std",180]181limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']182unique-runtime = ['foreign-assets']183pov-estimate = []184stubgen = ["evm-coder/stubgen"]185186refungible = []187scheduler = []188rmrk = []189foreign-assets = []190collator-selection = []191192193194195[dependencies.codec]196default-features = false197features = ['derive']198package = 'parity-scale-codec'199version = '3.1.2'200201[dependencies.frame-benchmarking]202default-features = false203git = "https://github.com/paritytech/substrate"204optional = true205branch = "polkadot-v0.9.36"206207[dependencies.frame-try-runtime]208default-features = false209git = "https://github.com/paritytech/substrate"210optional = true211branch = "polkadot-v0.9.36"212213[dependencies.frame-executive]214default-features = false215git = "https://github.com/paritytech/substrate"216branch = "polkadot-v0.9.36"217218[dependencies.frame-support]219default-features = false220git = "https://github.com/paritytech/substrate"221branch = "polkadot-v0.9.36"222223[dependencies.frame-system]224default-features = false225git = "https://github.com/paritytech/substrate"226branch = "polkadot-v0.9.36"227228[dependencies.frame-system-benchmarking]229default-features = false230git = "https://github.com/paritytech/substrate"231optional = true232branch = "polkadot-v0.9.36"233234[dependencies.frame-system-rpc-runtime-api]235default-features = false236git = "https://github.com/paritytech/substrate"237branch = "polkadot-v0.9.36"238239[dependencies.hex-literal]240optional = true241version = '0.3.3'242243[dependencies.serde]244default-features = false245features = ['derive']246optional = true247version = '1.0.130'248249[dependencies.pallet-aura]250default-features = false251git = "https://github.com/paritytech/substrate"252branch = "polkadot-v0.9.36"253254[dependencies.pallet-authorship]255default-features = false256git = 'https://github.com/paritytech/substrate'257branch = 'polkadot-v0.9.36'258259[dependencies.pallet-session]260default-features = false261git = 'https://github.com/paritytech/substrate'262branch = 'polkadot-v0.9.36'263264[dependencies.pallet-balances]265default-features = false266git = "https://github.com/paritytech/substrate"267branch = "polkadot-v0.9.36"268269270271272273274275276277278279280281282283284285286287288[dependencies.pallet-randomness-collective-flip]289default-features = false290git = "https://github.com/paritytech/substrate"291branch = "polkadot-v0.9.36"292293[dependencies.pallet-sudo]294default-features = false295git = "https://github.com/paritytech/substrate"296branch = "polkadot-v0.9.36"297298[dependencies.pallet-timestamp]299default-features = false300git = "https://github.com/paritytech/substrate"301branch = "polkadot-v0.9.36"302303[dependencies.pallet-transaction-payment]304default-features = false305git = "https://github.com/paritytech/substrate"306branch = "polkadot-v0.9.36"307308[dependencies.pallet-transaction-payment-rpc-runtime-api]309default-features = false310git = "https://github.com/paritytech/substrate"311branch = "polkadot-v0.9.36"312313[dependencies.pallet-treasury]314default-features = false315git = "https://github.com/paritytech/substrate"316branch = "polkadot-v0.9.36"317318[dependencies.sp-arithmetic]319default-features = false320git = "https://github.com/paritytech/substrate"321branch = "polkadot-v0.9.36"322323[dependencies.sp-api]324default-features = false325git = "https://github.com/paritytech/substrate"326branch = "polkadot-v0.9.36"327328[dependencies.sp-block-builder]329default-features = false330git = "https://github.com/paritytech/substrate"331branch = "polkadot-v0.9.36"332333[dependencies.sp-core]334default-features = false335git = "https://github.com/paritytech/substrate"336branch = "polkadot-v0.9.36"337338[dependencies.sp-consensus-aura]339default-features = false340git = "https://github.com/paritytech/substrate"341branch = "polkadot-v0.9.36"342343[dependencies.sp-inherents]344default-features = false345git = "https://github.com/paritytech/substrate"346branch = "polkadot-v0.9.36"347348[dependencies.sp-io]349default-features = false350git = "https://github.com/paritytech/substrate"351branch = "polkadot-v0.9.36"352353[dependencies.sp-offchain]354default-features = false355git = "https://github.com/paritytech/substrate"356branch = "polkadot-v0.9.36"357358[dependencies.sp-runtime]359default-features = false360git = "https://github.com/paritytech/substrate"361branch = "polkadot-v0.9.36"362363[dependencies.sp-session]364default-features = false365git = "https://github.com/paritytech/substrate"366branch = "polkadot-v0.9.36"367368[dependencies.sp-std]369default-features = false370git = "https://github.com/paritytech/substrate"371branch = "polkadot-v0.9.36"372373[dependencies.sp-transaction-pool]374default-features = false375git = "https://github.com/paritytech/substrate"376branch = "polkadot-v0.9.36"377378[dependencies.sp-version]379default-features = false380git = "https://github.com/paritytech/substrate"381branch = "polkadot-v0.9.36"382383[dependencies.smallvec]384version = '1.6.1'385386387388389[dependencies.parachain-info]390default-features = false391git = "https://github.com/paritytech/cumulus"392branch = "polkadot-v0.9.36"393394[dependencies.cumulus-pallet-aura-ext]395git = "https://github.com/paritytech/cumulus"396branch = "polkadot-v0.9.36"397default-features = false398399[dependencies.cumulus-pallet-parachain-system]400git = "https://github.com/paritytech/cumulus"401branch = "polkadot-v0.9.36"402default-features = false403404[dependencies.cumulus-primitives-core]405git = "https://github.com/paritytech/cumulus"406branch = "polkadot-v0.9.36"407default-features = false408409[dependencies.cumulus-pallet-xcm]410git = "https://github.com/paritytech/cumulus"411branch = "polkadot-v0.9.36"412default-features = false413414[dependencies.cumulus-pallet-dmp-queue]415git = "https://github.com/paritytech/cumulus"416branch = "polkadot-v0.9.36"417default-features = false418419[dependencies.cumulus-pallet-xcmp-queue]420git = "https://github.com/paritytech/cumulus"421branch = "polkadot-v0.9.36"422default-features = false423424[dependencies.cumulus-primitives-utility]425git = "https://github.com/paritytech/cumulus"426branch = "polkadot-v0.9.36"427default-features = false428429[dependencies.cumulus-primitives-timestamp]430git = "https://github.com/paritytech/cumulus"431branch = "polkadot-v0.9.36"432default-features = false433434435436437[dependencies.polkadot-parachain]438git = "https://github.com/paritytech/polkadot"439branch = "release-v0.9.36"440default-features = false441442[dependencies.xcm]443git = "https://github.com/paritytech/polkadot"444branch = "release-v0.9.36"445default-features = false446447[dependencies.xcm-builder]448git = "https://github.com/paritytech/polkadot"449branch = "release-v0.9.36"450default-features = false451452[dependencies.xcm-executor]453git = "https://github.com/paritytech/polkadot"454branch = "release-v0.9.36"455default-features = false456457[dependencies.pallet-xcm]458git = "https://github.com/paritytech/polkadot"459branch = "release-v0.9.36"460default-features = false461462463464465[dependencies]466orml-vesting.workspace = true467orml-xtokens.workspace = true468orml-tokens.workspace = true469orml-traits.workspace = true470471log = { version = "0.4.16", default-features = false }472up-common = { path = "../../primitives/common", default-features = false }473scale-info = { version = "2.0.1", default-features = false, features = [474 "derive",475] }476derivative = "2.2.0"477pallet-unique = { path = '../../pallets/unique', default-features = false }478up-rpc = { path = "../../primitives/rpc", default-features = false }479up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }480app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }481rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }482pallet-inflation = { path = '../../pallets/inflation', default-features = false }483pallet-app-promotion = { path = '../../pallets/app-promotion', default-features = false }484up-data-structs = { path = '../../primitives/data-structs', default-features = false }485pallet-collator-selection = { default-features = false, path = "../../pallets/collator-selection" }486pallet-identity = { default-features = false, path = "../../pallets/identity" }487pallet-configuration = { default-features = false, path = "../../pallets/configuration" }488pallet-common = { default-features = false, path = "../../pallets/common" }489pallet-structure = { default-features = false, path = "../../pallets/structure" }490pallet-fungible = { default-features = false, path = "../../pallets/fungible" }491pallet-refungible = { default-features = false, path = "../../pallets/refungible" }492pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }493pallet-proxy-rmrk-core = { default-features = false, path = "../../pallets/proxy-rmrk-core", package = "pallet-rmrk-core" }494pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }495496pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }497pallet-data-management = { path = '../../pallets/data-management', 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.36" }502pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }503pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }504fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }505fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }506fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }507fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }508pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }509evm-coder = { default-features = false, path = '../../crates/evm-coder' }510up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.36' }511pallet-foreign-assets = { default-features = false, path = "../../pallets/foreign-assets" }512pallet-maintenance = { default-features = false, path = "../../pallets/maintenance" }513precompile-utils-macro = { path = "../common/ethereum/precompiles/utils/macro" }514num_enum = { version = "0.5.3", default-features = false }515516517518519impl-trait-for-tuples = "0.2.2"520521522523524[dev-dependencies.logtest]525version = "2.0.0"526527528529530[build-dependencies.substrate-wasm-builder]531git = "https://github.com/paritytech/substrate"532branch = "polkadot-v0.9.36"