-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add staking precompiles & bump collator version * Weights adjustment for Shiden and Shibuya (#475) * Shiden: fix dapps staking block reward handle (#474) * Migrate Shibuya into Azores relay Co-authored-by: Dinonard <[email protected]>
- Loading branch information
Showing
11 changed files
with
215 additions
and
175 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "astar-collator" | ||
version = "2.5.2" | ||
version = "2.6.0" | ||
authors = ["Stake Technologies <[email protected]>"] | ||
description = "Astar collator implementation in Rust." | ||
build = "build.rs" | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "local-runtime" | ||
version = "2.5.2" | ||
version = "2.6.0" | ||
authors = ["Stake Technologies <[email protected]>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "shibuya-runtime" | ||
version = "2.5.2" | ||
version = "2.6.0" | ||
authors = ["Stake Technologies <[email protected]>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "shiden-runtime" | ||
version = "2.5.2" | ||
version = "2.6.0" | ||
authors = ["Stake Technologies <[email protected]>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
@@ -78,6 +78,7 @@ pallet-collective = { git = "https://github.com/paritytech/substrate", branch = | |
# Astar pallets | ||
pallet-block-reward = { path = "../../frame/block-reward", default-features = false } | ||
pallet-custom-signatures = { path = "../../frame/custom-signatures", default-features = false } | ||
pallet-precompile-staking = { path = "../../precompiles/staking", default-features = false } | ||
pallet-dapps-staking = { path = "../../frame/dapps-staking", default-features = false } | ||
|
||
[build-dependencies] | ||
|
@@ -116,6 +117,7 @@ std = [ | |
"pallet-evm-precompile-dispatch/std", | ||
"pallet-evm-precompile-modexp/std", | ||
"pallet-evm-precompile-sha3fips/std", | ||
"pallet-precompile-staking/std", | ||
"pallet-dapps-staking/std", | ||
"pallet-identity/std", | ||
"pallet-multisig/std", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters