--- a/Cargo.lock +++ b/Cargo.lock @@ -8508,7 +8508,10 @@ "frame-try-runtime", "hex-literal", "log", + "orml-tokens", + "orml-traits", "orml-vesting", + "orml-xtokens", "pallet-aura", "pallet-balances", "pallet-base-fee", @@ -8520,6 +8523,7 @@ "pallet-evm-contract-helpers", "pallet-evm-migration", "pallet-evm-transaction-payment", + "pallet-foreing-assets", "pallet-fungible", "pallet-inflation", "pallet-nonfungible", @@ -12497,7 +12501,10 @@ "frame-try-runtime", "hex-literal", "log", + "orml-tokens", + "orml-traits", "orml-vesting", + "orml-xtokens", "pallet-aura", "pallet-balances", "pallet-base-fee", @@ -12509,6 +12516,7 @@ "pallet-evm-contract-helpers", "pallet-evm-migration", "pallet-evm-transaction-payment", + "pallet-foreing-assets", "pallet-fungible", "pallet-inflation", "pallet-nonfungible", --- a/runtime/unique/Cargo.toml +++ b/runtime/unique/Cargo.toml @@ -116,8 +116,15 @@ 'xcm-builder/std', 'xcm-executor/std', 'up-common/std', + 'rmrk-rpc/std', + 'evm-coder/std', + 'up-sponsorship/std', "orml-vesting/std", + "orml-tokens/std", + "orml-xtokens/std", + "orml-traits/std", + "pallet-foreing-assets/std" ] limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing'] unique-runtime = [] @@ -125,6 +132,7 @@ refungible = [] scheduler = [] rmrk = [] +foreign-assets = [] ################################################################################ # Substrate Dependencies @@ -397,6 +405,23 @@ version = "0.4.1-dev" default-features = false +[dependencies.orml-xtokens] +git = "https://github.com/open-web3-stack/open-runtime-module-library" +branch = "polkadot-v0.9.27" +version = "0.4.1-dev" +default-features = false + +[dependencies.orml-tokens] +git = "https://github.com/open-web3-stack/open-runtime-module-library" +branch = "polkadot-v0.9.27" +version = "0.4.1-dev" +default-features = false + +[dependencies.orml-traits] +git = "https://github.com/open-web3-stack/open-runtime-module-library" +branch = "polkadot-v0.9.27" +version = "0.4.1-dev" +default-features = false ################################################################################ # local dependencies @@ -435,6 +460,7 @@ fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" } evm-coder = { default-features = false, path = '../../crates/evm-coder' } up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'polkadot-v0.9.27' } +pallet-foreing-assets = { default-features = false, path = "../../pallets/foreing-assets" } ################################################################################ # Build Dependencies