difftreelog
Version cleanup
in: master
5 files changed
.gitignorediffbeforeafterboth--- a/.gitignore
+++ b/.gitignore
@@ -10,4 +10,6 @@
einstein_key_file
*store_key*.json
-/.idea/
\ No newline at end of file
+/.idea/
+
+tests/.vscode
\ No newline at end of file
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3456,7 +3456,7 @@
[[package]]
name = "nft-runtime"
-version = "3.0.0"
+version = "2.1.0"
dependencies = [
"frame-benchmarking",
"frame-executive",
@@ -3785,7 +3785,7 @@
[[package]]
name = "pallet-nft"
-version = "3.0.0"
+version = "2.1.0"
dependencies = [
"frame-benchmarking",
"frame-support",
node/Cargo.tomldiffbeforeafterboth--- a/node/Cargo.toml
+++ b/node/Cargo.toml
@@ -12,9 +12,9 @@
description = 'Substrate node nft'
edition = '2018'
homepage = 'https://usetech.com/blockchain'
-license = 'Unlicense'
+license = 'All Rights Reserved'
name = 'nft'
-repository = 'https://github.com/substrate-developer-hub/nft/'
+repository = 'https://github.com/usetech-llc/nft_private/'
version = '3.0.0'
[package.metadata.docs.rs]
@@ -29,7 +29,7 @@
jsonrpc-core = '15.0.0'
# Substrate dependencies
-nft-runtime = { path = '../runtime', version = '3.0.0' }
+nft-runtime = { path = '../runtime', version = '2.1.0' }
frame-benchmarking = {version = '2.0.1', git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique'}
frame-benchmarking-cli = {version = '2.0.1', git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique'}
pallet-transaction-payment-rpc = {version = '2.0.1', git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique'}
pallets/nft/Cargo.tomldiffbeforeafterboth1[package]2authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']3description = 'FRAME pallet nft'4edition = '2018'5homepage = 'https://substrate.io'6license = 'Unlicense'7name = 'pallet-nft'8repository = 'https://github.com/substrate-developer-hub/nft/'9version = '3.0.0'1011[package.metadata.docs.rs]12targets = ['x86_64-unknown-linux-gnu']1314# alias "parity-scale-code" to "codec"15[dependencies.codec]16default-features = false17features = ['derive']18package = 'parity-scale-codec'19version = '1.3.6'2021[dependencies.frame-support]22default-features = false23git = 'https://github.com/usetech-llc/substrate.git'24branch = 'unique'25version = '2.0.1'2627[dependencies.frame-system]28default-features = false29git = 'https://github.com/usetech-llc/substrate.git'30branch = 'unique'31version = '2.0.1'3233[dev-dependencies.sp-core]34default-features = false35git = 'https://github.com/usetech-llc/substrate.git'36branch = 'unique'37version = '2.0.1'3839[dev-dependencies.sp-io]40default-features = false41git = 'https://github.com/usetech-llc/substrate.git'42branch = 'unique'43version = '2.0.1'4445[dependencies.sp-runtime]46default-features = false47git = 'https://github.com/usetech-llc/substrate.git'48branch = 'unique'49version = '2.0.1'50 51[dependencies]52# third-party dependencies53serde = { version = "1.0.102", features = ["derive"] }54log = "0.4.8"5556[dependencies.sp-std]57default-features = false58git = 'https://github.com/usetech-llc/substrate.git'59branch = 'unique'60version = '2.0.1'6162[dependencies.transaction-payment]63default-features = false64git = 'https://github.com/usetech-llc/substrate.git'65package = 'pallet-transaction-payment'66branch = 'unique'67version = '2.0.1'6869[dependencies.frame-benchmarking]70version = "2.0.1"71default-features = false72git = 'https://github.com/usetech-llc/substrate.git'73branch = 'unique'74optional = true7576[dependencies.pallet-contracts]77default-features = false78git = 'https://github.com/usetech-llc/substrate.git'79package = 'pallet-contracts'80branch = 'unique'81version = '2.0.1'8283[dependencies.pallet-balances]84default-features = false85git = 'https://github.com/usetech-llc/substrate.git'86package = 'pallet-balances'87branch = 'unique'88version = '2.0.1'8990[dependencies.pallet-timestamp]91default-features = false92git = 'https://github.com/usetech-llc/substrate.git'93package = 'pallet-timestamp'94branch = 'unique'95version = '2.0.1'9697[dependencies.pallet-randomness-collective-flip]98default-features = false99git = 'https://github.com/usetech-llc/substrate.git'100package = 'pallet-randomness-collective-flip'101branch = 'unique'102version = '2.0.1'103104[features]105default = ['std']106std = [107 'codec/std',108 "serde/std",109 'frame-support/std',110 'frame-system/std',111 'pallet-balances/std',112 'pallet-timestamp/std',113 'pallet-randomness-collective-flip/std',114 'sp-std/std',115 'sp-runtime/std',116 'frame-benchmarking/std',117]118runtime-benchmarks = ["frame-benchmarking"]runtime/Cargo.tomldiffbeforeafterboth--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -1,11 +1,11 @@
[package]
-authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
+authors = ['UseTech Professional <https://usetech.com/blockchain>']
edition = '2018'
homepage = 'https://substrate.io'
-license = 'Unlicense'
+license = 'All Rights Reserved'
name = 'nft-runtime'
repository = 'https://github.com/usetech-llc/nft_parachain/'
-version = '3.0.0'
+version = '2.1.0'
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
@@ -25,7 +25,7 @@
serde = { features = ['derive'], optional = true, version = '1.0.101' }
# local dependencies
-pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }
+pallet-nft = { path = '../pallets/nft', default-features = false, version = '2.1.0' }
# Substrate dependencies
frame-benchmarking = { default-features = false, optional = true, version = '2.0.1' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique' }