-
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.
* Bump to polkadot-0.9.24 * Rpc fix (#284) * ADD: extrinsic rpc * ADD: reqresp rpc * ADD: publish rpc Co-authored-by: Aleksandr Krupenkin <[email protected]> * Update Cargo.lock * Bump version * Fix XCM native currency on alpha runtime * Fix formatting Co-authored-by: Denis K <[email protected]>
- Loading branch information
1 parent
17b47a4
commit 0a4e5a6
Showing
35 changed files
with
2,229 additions
and
1,255 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "robonomics-node" | ||
version = "2.0.0" | ||
version = "2.1.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.0.0" | ||
version = "2.1.0" | ||
authors = ["Airalab <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -13,20 +13,20 @@ 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.23" } | ||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" } | ||
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" } | ||
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.