Skip to content

Commit

Permalink
spec_version: 54
Browse files Browse the repository at this point in the history
  • Loading branch information
tuminfei committed Jul 25, 2022
1 parent 145ee5e commit 186b904
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 44 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ log = { version = "0.4.11" }

# uniarts
uniarts-service = { path = "../service", default-features = false }
uniarts-primitives = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" }
uniarts-primitives = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" }

# substratem
sp-core = { version = "3.0.0", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions bin/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jsonrpc-pubsub = "15.0.0"
futures = "0.3.4"

# uniarts
uniarts-primitives = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" }
uniarts-primitives = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" }

# rpc
substrate-frame-rpc-system = { version = "3.0.0" }
pallet-transaction-payment-rpc = { version = "3.0.0" }

pallet-staking-rpc = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" }
pallet-staking-rpc = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" }
pallet-contracts-rpc = { version = "3.0.0" }

# substrate client
Expand Down
4 changes: 2 additions & 2 deletions bin/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features =
pangu-runtime = { path = "../../runtime/pangu" }
fuxi-runtime = { path = "../../runtime/fuxi" }
uniarts-rpc = { path = "../rpc" }
uniarts-primitives = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" }
uniarts-primitives = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" }

# substrate client
sc-cli = { version = "0.9.0", features = ["wasmtime"] }
Expand Down Expand Up @@ -58,7 +58,7 @@ frame-benchmarking-cli = { version = "3.0.0" }
substrate-frame-rpc-system = { version = "3.0.0" }
substrate-prometheus-endpoint = { version = "0.9.0" }
pallet-transaction-payment-rpc = { version = "3.0.0" }
pallet-staking-rpc = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" }
pallet-staking-rpc = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" }
pallet-contracts-rpc = { version = "3.0.0" }
pallet-contracts = { version = "3.0.0" }

Expand Down
2 changes: 1 addition & 1 deletion primitives/chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features =
sp-core = { version = "3.0.0", default-features = false }
sp-runtime = { version = "3.0.0", default-features = false }
sp-std = { version = "3.0.0", default-features = false }
uniarts-primitives = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
uniarts-primitives = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }

pallet-evm = { version = "3.0.0-dev", default-features = false, path = "../../pallets/evm" }

Expand Down
24 changes: 12 additions & 12 deletions runtime/fuxi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,21 @@ orml-traits = { default-features = false, version = '0.4.0' }

# Used for RPCs
pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false }
pallet-staking-rpc-runtime-api = { version = "3.0.0", default-features = false, git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" }
pallet-staking-rpc-runtime-api = { version = "3.0.0", default-features = false, git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" }

# Uni-Arts configs
uniarts-common = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
pallet-names = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
pallet-nft-multi = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
pallet-nft-blindbox = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
pallet-rewards = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
pallet-staking = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
pallet-validator-set = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
pallet-bridge = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
pallet-assets = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
pallet-faucets = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
uniarts-common = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }
pallet-names = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }
pallet-nft-multi = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }
pallet-nft-blindbox = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }
pallet-rewards = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }
pallet-staking = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }
pallet-validator-set = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }
pallet-bridge = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }
pallet-assets = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }
pallet-faucets = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }
# pallet-lotteries = { path = "../../configs/lotteries", default-features = false }
uniarts-primitives = { package = "uniarts-primitives", git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
uniarts-primitives = { package = "uniarts-primitives", git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }

#EVM
pallet-ethereum = { version = "0.1.0", default-features = false, path = "../../pallets/ethereum" }
Expand Down
2 changes: 1 addition & 1 deletion runtime/fuxi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("uart"),
impl_name: create_runtime_str!("uart"),
authoring_version: 1,
spec_version: 53,
spec_version: 54,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down
1 change: 0 additions & 1 deletion runtime/fuxi/types.json
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@
"period": "BlockNumber",
"period_limit": "Balance",
"drip_limit": "Balance",

"next_period_at": "BlockNumber",
"dripped_in_current_period": "Balance"
},
Expand Down
18 changes: 9 additions & 9 deletions runtime/pangu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,18 @@ pallet-contracts-rpc-runtime-api = { version = "3.0.0", default-features = false

# Used for RPCs
pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false }
pallet-staking-rpc-runtime-api = { version = "3.0.0", default-features = false, git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" }
pallet-staking-rpc-runtime-api = { version = "3.0.0", default-features = false, git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" }

# Uni-Arts configs
uniarts-common = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7", default-features = false }
pallet-assets = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
pallet-names = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
pallet-nft = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
pallet-rewards = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
pallet-staking = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
pallet-validator-set = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
uniarts-common = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8", default-features = false }
pallet-assets = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }
pallet-names = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }
pallet-nft = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }
pallet-rewards = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }
pallet-staking = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }
pallet-validator-set = { git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }
# pallet-lotteries = { path = "../../configs/lotteries", default-features = false }
uniarts-primitives = { package = "uniarts-primitives", git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.7" , default-features = false }
uniarts-primitives = { package = "uniarts-primitives", git = "https://github.com/uni-arts-chain/uni-arts-common.git", tag = "v3.0.8" , default-features = false }

# Used for runtime benchmarking
frame-benchmarking = { version = "3.0.0", default-features = false, optional = true }
Expand Down

0 comments on commit 186b904

Please sign in to comment.