-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade polkadot version & ipci runtime reborn * Bump version * Enabled evercity pallets, added alpha runtime assets list * Added ipci chain spec * Raw IPCI spec
- Loading branch information
Showing
44 changed files
with
5,235 additions
and
2,664 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ members = [ | |
"runtime/local", | ||
"runtime/alpha", | ||
"runtime/main", | ||
"runtime/ipci", | ||
] | ||
|
||
exclude = [ | ||
|
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 = "robonomics-node" | ||
version = "2.1.0" | ||
version = "2.2.0" | ||
authors = ["Airalab <[email protected]>"] | ||
description = "Robonomics node implementation in Rust & Substrate." | ||
edition = "2021" | ||
|
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 = "robonomics-rpc" | ||
version = "2.1.0" | ||
version = "2.2.0" | ||
authors = ["Airalab <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -12,21 +12,21 @@ targets = ["x86_64-unknown-linux-gnu"] | |
|
||
[dependencies] | ||
codec = { package = "parity-scale-codec", version = "3.0" } | ||
jsonrpsee = { version = "0.13.0", features = ["server"] } | ||
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" } | ||
jsonrpsee = { version = "0.14.0", features = ["server"] } | ||
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" } | ||
local-runtime = { path = "../../../runtime/local" } | ||
robonomics-primitives = { path = "../../../primitives" } | ||
robonomics-protocol = { path = "../../../protocol" } | ||
#robonomics-protocol = { path = "../../../protocol" } |
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
Oops, something went wrong.